-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.pbxproj
More file actions
3991 lines (3979 loc) · 296 KB
/
project.pbxproj
File metadata and controls
3991 lines (3979 loc) · 296 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 */
005165D209E1E3B5FFD3963A1E9F6AEA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C3CCD724C37A1E39D6F49EB5E4345068 /* Foundation.framework */; };
008B78F447262FEB47EED642A045B452 /* Promise+Timeout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9056243E13EA3665B2CBA00361321384 /* Promise+Timeout.swift */; };
01156019399DC860E207AA0951C46F5A /* Scan.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4370C6CA9928211A6FF4DA09FF29D0B /* Scan.swift */; };
034550CD28419C05466DE62F0B774864 /* NSNotificationCenter+AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DA6243EA6C6D47A152E28036D5D77E4 /* NSNotificationCenter+AnyPromise.m */; };
039270F332C87F3EF515FAD37AE6AB56 /* RefCountDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9893BEC94F17BBECA5A9EE4B18499940 /* RefCountDisposable.swift */; };
03AD1C12981EC4ECB4001FE0A1970224 /* PMKQuartzCore.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AC6AE3E827812DCFDD25B3BA4777A97 /* PMKQuartzCore.h */; settings = {ATTRIBUTES = (Public, ); }; };
05BC7F85F9D863AD38BF8B4070628CD3 /* XCTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAC204BF4938A603EF0A233E99495609 /* XCTest.swift */; };
06DBF3FE4129D37EEDFF864A9F4932DD /* SwiftSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBB1FE7593E266E6A688B51CE68E7446 /* SwiftSupport.swift */; };
076B01FBB90E7C4DFEA7E54F9D9F149C /* WithLatestFrom.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E182F139D935EE241B1C73396BBA682 /* WithLatestFrom.swift */; };
082286058DD5BF87BD96EA8075D14272 /* Promise+Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D8B73D890E12029727BEF5132412FAD /* Promise+Async.swift */; };
09011E6B3082DEA68DAAA4480B678E0F /* Process+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B412F4E0A339D518A521C210142BE85 /* Process+Promise.swift */; };
0985EA7AF7C9B60243AF2D25AB443A81 /* BehaviorSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89F274E9127CB55A58414383D85DA028 /* BehaviorSubject.swift */; };
09CF02A0573669F3D5E225935464F827 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = B40F2D6900B537B200303A96F38D6998 /* Filter.swift */; };
0C877CCD4E68F68523017117C15B98E8 /* ScheduledItemType.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD653CBB1931EA0D1D01510DBE9B0F5B /* ScheduledItemType.swift */; };
0E7CC21BDD750D2D651F1E59429BFB8B /* PromiseKit.h in Headers */ = {isa = PBXBuildFile; fileRef = CA179A909B1BB02E98E69537349D45E4 /* PromiseKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
0EB89BB35D8F29091BC8E6BBACFE9F5C /* NSObject+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE7D32BFEDDEA6BC9A0CCA9231E7F25D /* NSObject+Promise.swift */; };
0EC144C5B177A6EC77BC0E480A7687FD /* PromiseKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 77946A5D4B95FDC64B865B39098E621F /* PromiseKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
0FAD7836C0E956D3EEF4CA65EE320322 /* SubscriptionDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF181DC6A1CF683BC36551FD0992C89F /* SubscriptionDisposable.swift */; };
109B9181687238E3413061EA1A13C04D /* Cancelable.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9FFDEDBA2A2B7ED3D7AB42B3789F4D1 /* Cancelable.swift */; };
10A1CF117FF1F6A12D3222D060368937 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 108BB4A6B9D5FEC117D67E31D2E469E5 /* DispatchQueue+Extensions.swift */; };
10EB23E9ECC4B33E16933BB1EA560B6A /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 283E65EE91CA17ABB92A250AF88E123F /* Timeline.swift */; };
10F295EA7620D49C6EE636A5EB409AE3 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D12809024A5F3E964ACB81DD960EEAAC /* UIKit.framework */; };
1187F75AB2816C69E83CF4ED47090577 /* DispatchQueue+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3B35D20636620D1DF81C04D87704C5B /* DispatchQueue+Promise.swift */; };
1450679B1F4F0FD9E8CBD9BE8DC1FFBC /* NSURLSession+AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = AA7A995D1534F23167375A8FDFD77FB5 /* NSURLSession+AnyPromise.m */; };
14967A8545B627E201CFB8AD5ABCA066 /* Async+Promises.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEB81CFFC3C11572AE13F0554853B51B /* Async+Promises.swift */; };
15168D3E5BC35EF6989591B6D07340F4 /* afterlife.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAD93D735503C55F8E1AC292E4F09B11 /* afterlife.swift */; };
155311C31C434B1216161828AE93E964 /* Promise+Always.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E9D1769223EE42CA7B9A13EC4DD6CB9 /* Promise+Always.swift */; };
170AC374B656ED03AD5CDB0DEDA51680 /* Disposables.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB56A198E35FED1C39E48795D80B7018 /* Disposables.swift */; };
186529FD2E3A9F452589888D6DA5B752 /* DispatchTimerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CB7F8CB4F8A5AD9A749E6C8D5873137 /* DispatchTimerWrapper.swift */; };
191B9980C1DB86A56ECF102774529D0D /* Promise+Cancel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 451719BA0ACDF3DB6F2E06E74FCE577F /* Promise+Cancel.swift */; };
1946EF19B653154F5B61E3F199E27270 /* ObservableType+PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B76D9C8AABA4F2F6D51927DD63E27A0 /* ObservableType+PrimitiveSequence.swift */; };
1A9735F726812F27FFE0D7A9FCA604D0 /* NSTask+AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 26B136984452D6B46E211B485D39004B /* NSTask+AnyPromise.m */; };
1AD15BAB442C3CD65519114661E0FBFE /* Await.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC6DA3C301AF029D75BDD3DDC2583855 /* Await.swift */; };
1B9EDEDC964E6B08F78920B4F4B9DB84 /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BDAA46B8C092AF5548BEF801206FC79E /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
1BA25F35EE718E039CFC3B6E43269257 /* Promise+Aliases.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA777C30577808C4DA12CD690EF97C9 /* Promise+Aliases.swift */; };
200C7AD6AE8BE7A7DA2D2D25E8A02DE3 /* DelaySubscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 254AED9FDCBCFCDD4D2F16B4553E8123 /* DelaySubscription.swift */; };
20430599DB81D51BD178BA3D40EA3BB8 /* dispatch_promise.m in Sources */ = {isa = PBXBuildFile; fileRef = 389B934AE093D963A4DCD2656EF73449 /* dispatch_promise.m */; };
21340F69B4445985955FC234BF7018AD /* when.m in Sources */ = {isa = PBXBuildFile; fileRef = CA89E06759059227EF0038241E8A8E5D /* when.m */; };
21E0E1B39E23E1148F66C678F872AD78 /* Mockingjay.h in Headers */ = {isa = PBXBuildFile; fileRef = B8EA4880812D7DB0DD4A04B0A9DD1EC5 /* Mockingjay.h */; settings = {ATTRIBUTES = (Public, ); }; };
2217B06AA199B70ADF463D6164EA2E81 /* ObserveOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF9724EE1631DDE6DBEB98DEAC6B5555 /* ObserveOn.swift */; };
22ECAE9E14F1B771148042E5B7B40EB6 /* CALayer+AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 551EA00B40F43D867237D8289CAC51F1 /* CALayer+AnyPromise.m */; };
239D6CB3C6722B623EFC3EF44440DFE2 /* Completable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 375A02C27ADA9AEA92C722DD2E00B129 /* Completable.swift */; };
23B62031480A39CD239F235C65F3F34D /* ToArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7012AC2F2FBB984F3C49832CDF1E411F /* ToArray.swift */; };
24CD3605DC39C0295285C9CCC225D7A5 /* PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3368E343FF599ECD1020391FDE45BD80 /* PrimitiveSequence.swift */; };
257C4267FC6B957253CFD0BC28AF3EF2 /* SwitchIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD20DC32768C0D7F5AADE9948F9F1FED /* SwitchIfEmpty.swift */; };
26364C95D71ACAB1C5BED43BE5014463 /* DeprecationWarner.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DEF80C2F16287A7EBF1221E603477E9 /* DeprecationWarner.swift */; };
275312FF111122F2A9E4590D3EB997C7 /* Take.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1910BBEA969054FFBC548B95BDF505E /* Take.swift */; };
28C0B0A6A5D4C532841F2A232C33CACF /* PMKAlertController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EDE473670D05A70A7F321F84FEC9D75 /* PMKAlertController.swift */; };
29B3B39A4302EBB60E4B36E6E5FD5914 /* Empty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 852FDFB7E1EABBB72204EC90462C03D6 /* Empty.swift */; };
2A7DC92EBA6ABB746C555F950F64AFB6 /* Dematerialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E6AF1DDCCCAAEA540C3A0157EA31719 /* Dematerialize.swift */; };
2BB2DE29118996FB051149DFEABC6C37 /* hang.m in Sources */ = {isa = PBXBuildFile; fileRef = 4085711B247DBD19F6A724643610C26F /* hang.m */; };
2BB3A5CC73C45292E8074542F633EF0D /* Async+PromiseKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9C68614E442CD27FE39A4A2D7F00452 /* Async+PromiseKit.swift */; };
2BE1978562C20DCAFE4A7599A0864832 /* Promise+Pass.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EC8B0C786D8BBAC6D55E4E619BDADDD /* Promise+Pass.swift */; };
2CDD6C0511DA758D0CBEAD2BAE54AA28 /* Zalgo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A3798188F5C288425C10008E804C998 /* Zalgo.swift */; };
2D53E830E3D2BAB979064351338C8D9B /* SkipWhile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C5082C2E2A364FBD167F75446F1771B /* SkipWhile.swift */; };
2D733306DD4C7D7D7EA8AB73CC8E93F9 /* Promise.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9C4C18CC38B3F0B70F1346DD76A60FF0 /* Promise.framework */; };
2EC119F834EA09480B9862E69F3F7046 /* UIView+AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A52819AEFC02C2E23FEDE634C0D18D1 /* UIView+AnyPromise.m */; };
3013CE5DBE9C47A4A816E692CB26CC94 /* SequenceType+BrightFutures.swift in Sources */ = {isa = PBXBuildFile; fileRef = D65137C0A47B2DBC5C30EAE332750E09 /* SequenceType+BrightFutures.swift */; };
3059E5E4C9FE5CE524D92DF11173CA02 /* Completable+AndThen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60DCFC35B3E918EDBF7C25D341F9AA88 /* Completable+AndThen.swift */; };
3228E06838008E143830A1D6F601CF92 /* PMKUIKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C8E8935F40AF1DF9BA1C6A8B6A463ED /* PMKUIKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
329999C08CCE523FF3834E166CBB35F9 /* Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0744FD23E1B91C08B7083D1F5C2DF55D /* Promise.swift */; };
330C618966ED2891A0BB06A3C81237C0 /* Catch.swift in Sources */ = {isa = PBXBuildFile; fileRef = A29A926B43942065924E30E451981852 /* Catch.swift */; };
332272CE070B6635F0730F6E66288CE1 /* MutableAsyncType+ResultType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92524FBA1F4C22D7859AD3A98D57E4B0 /* MutableAsyncType+ResultType.swift */; };
338E3232EE5AA52E5DED9705C1D30A83 /* Debounce.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA72AF8AA8FA9295EABCC103EC90B29A /* Debounce.swift */; };
33EB988627257039F48ECD561CA67C5C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C3CCD724C37A1E39D6F49EB5E4345068 /* Foundation.framework */; };
34A5F6F24ABF7B2824492D30437A7D6F /* Async+Then.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE46AD9143DD3D67E91F379921573495 /* Async+Then.swift */; };
3626B94094672CB1C9DEA32B9F9502E1 /* TaskDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = CBA7B09DBDF360D0D1F2342639BCD992 /* TaskDelegate.swift */; };
365D4606B88DF9D9A1BA5E66DD6C6560 /* Promise+Catch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09D7336F52231A076324FBB14E6805FB /* Promise+Catch.swift */; };
385901366E7F21F900996E1641C0879E /* join.swift in Sources */ = {isa = PBXBuildFile; fileRef = 378588AE87D658374CD1C4A601370765 /* join.swift */; };
387BAE953A179C2D20C4CEDB5D04E4A4 /* BrightFutures-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A569559E74C4C52CF85F9689610CC753 /* BrightFutures-dummy.m */; };
38D982C74F7752272E0DD11468E1567D /* HydraAsync-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7682655B2E293981985CA683F98DCA51 /* HydraAsync-dummy.m */; };
39016D89184423C79DCDD2BEB3EBF811 /* Skip.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDE2A7DAD3AAAB6EA7D1368CED90665A /* Skip.swift */; };
3906FE43348805D259113E0A068B7C56 /* Pods-Asynchronous_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E384E258B2433977145030F9F7C78212 /* Pods-Asynchronous_Tests-dummy.m */; };
3A362EE75153669B6D803E35F5D64436 /* AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = A14DEAFF963E6C29A7E99FBBB4B74531 /* AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
3A699792BFB61E8741ED4C4A13664BCC /* VoidPromise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EA0BFBCD62AE9325FD40730A7D62140 /* VoidPromise.swift */; };
3B06281F3B20BA8753F2FB704489034C /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = E57143EC8D89098E9D336B70C93492AC /* Platform.Darwin.swift */; };
3B1BD196A227DE08565FCF2D5B382D25 /* PromiseKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FF84D7859DC80F39B33360320ED2036D /* PromiseKit.framework */; };
3B53CB9968E7CA6FD247CFAEBABCC24F /* Promise+First.swift in Sources */ = {isa = PBXBuildFile; fileRef = 603DDC13078B39D5192212567D226C26 /* Promise+First.swift */; };
3CE4D04CCC51B36304F0BD5ED9BAE4DE /* TakeLast.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2CF0FD8D33D62D8B2946F6D2B7AEEB6 /* TakeLast.swift */; };
3CE8D839EB437072E36B12C97A6E99A8 /* PMKFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = 31B6D54CBB97BEDC1F7CB2FE2737B2C7 /* PMKFoundation.h */; settings = {ATTRIBUTES = (Public, ); }; };
3D466A169340150ADBDDE42129C2FE95 /* ElementAt.swift in Sources */ = {isa = PBXBuildFile; fileRef = A52C787F6A3D7FC67D622788EC6021F1 /* ElementAt.swift */; };
3D4ADC98914B3DD7259AB109EA29FADA /* Delay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A5708A84B5F34A6414629FE291F8E8C /* Delay.swift */; };
416E25CEA80271AE78049E9DD9261E23 /* Bag+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6AC51EE811ED6FE8F3C3A42ACBBC753E /* Bag+Rx.swift */; };
41842D361376B812CF8E3EAB803B41CC /* WhenAll.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98F8121B3456A8F91E56D0B9CA9315C5 /* WhenAll.swift */; };
4244B054AD667155948DF08D2124D940 /* Maybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = E95C10933F9A5A05EC24FD6729891E23 /* Maybe.swift */; };
435837B72A0BAF9A31080FE8687BB6E7 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C3CCD724C37A1E39D6F49EB5E4345068 /* Foundation.framework */; };
449BA22236ECF77C8D4C32789B6FAADC /* race.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A96F96761B1CD50D0A68C3FE48DFA56 /* race.swift */; };
44B67A32F4232F04D12FFF78EC9703C6 /* CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC7495B32A4CDB4720BFBDFCFE7C7664 /* CombineLatest+arity.swift */; };
4650DC61F70093A10BCE5249FE883D63 /* SchedulerServices+Emulation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17758DD69298D61F8365EFF1473EA613 /* SchedulerServices+Emulation.swift */; };
4767C0CE30C6768FF13276539835DD33 /* Asynchronous.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0671C544CA1825CAE0904B5404E20FB0 /* Asynchronous.swift */; };
47AD604B2239A49B0152496C5778F368 /* Async+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = A82B95F519CBB4CC32D2A4C35BF575BD /* Async+Rx.swift */; };
47B9CBE3D03973CB9AC8DDC447E14EE6 /* UIViewController+AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = C3FC3D79366C0CAA4B950FB366609AAA /* UIViewController+AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
47FEF7FFC751A357ACBAF9B4CBC9318A /* Promise+State.swift in Sources */ = {isa = PBXBuildFile; fileRef = 687582730503176884F84D609742F7A8 /* Promise+State.swift */; };
4890A732CBCF7342D3ACEE4C60D64109 /* NSURLSessionConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = C65A26720E0052E4D389997181F8701B /* NSURLSessionConfiguration.swift */; };
4B3D42B27E233DEBE2F48083E32A5FAC /* Do.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCD227BA2493DBCBC6D48528EFEBB5CA /* Do.swift */; };
4CB2BB87629DF9101D466EFCE0B9DF40 /* NSOperationQueue+BrightFutures.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03F9717EB2FB5710E06C0E3CA9FBDC9D /* NSOperationQueue+BrightFutures.swift */; };
4D8628BF865A02EDA8100C6270A7DFCB /* UIView+AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A2C1841E4F693811D423AD190B68C61 /* UIView+AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
4E1EA9D3FC28F42CD8A5D6DC2B660AB1 /* SchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83A7B690D69F5FA19D652016F5D0DF03 /* SchedulerType.swift */; };
4E3200870DE5607E178F61DE73047C1C /* AsSingle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83CC66DB94A26C6F651DBDFEFBE205BA /* AsSingle.swift */; };
4FFDBAB9D35889FF8F6EECE28CEC75F9 /* Promise+Observer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B90CC7B226A85E3D6D2644A9C4AD717 /* Promise+Observer.swift */; };
501E4B4854AEF37B482FCC477E91CC1C /* Observable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60C87CB657B96FB24AA96C71D4F0DE3D /* Observable.swift */; };
5178347DC1E5B2572BDA1D4D16C208C3 /* SynchronizedOnType.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE0393B812516AE2C9BB5E4B93F3D3D1 /* SynchronizedOnType.swift */; };
527ECBD41679C46F4985DC393D9A6EF7 /* TakeWhile.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9BBD46987404C03D0D484FF0C119741 /* TakeWhile.swift */; };
532A658E685DE819E827095524069074 /* Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6288F933ADC7A1BA626BFDACD945AFF7 /* Async.swift */; };
5343D5171C19AC65A9157C083FD2CAA5 /* Sequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEEDFFD4D4F649B6705B2DEEEC598FCE /* Sequence.swift */; };
536135D2FB3778ED907869B277E97E3F /* Window.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C20DE05CA7A31B5789E3F1C31951083 /* Window.swift */; };
5387216E723A3C68E851CA15573CDD71 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED117F681300095E227FF4844518BCBA /* Request.swift */; };
53EFA6C5215AE07E2FA763999ED3902B /* PromiseKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FC7D0896331DE044446D87873F0FD00F /* PromiseKit-dummy.m */; };
53F3FB0C11FFFC27A4870F6442787FA2 /* Promise+Finally.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2C0A731617DBBA2FBC9F5D6949354FB /* Promise+Finally.swift */; };
53F75D76624B48024E1399B128099F46 /* Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0BE8676620C737B483F9C0458DC8E21 /* Rx.swift */; };
54061CBE23A646B532039C8BCFD1437F /* BrightFutures.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FE63F1CE3BAA6A992B45C7CB24351D0 /* BrightFutures.framework */; };
54BF84AF83AE6B0A9E1FAE4E552AA2AC /* AnonymousObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4377067FD7F1918E90927330CED9E55 /* AnonymousObserver.swift */; };
5521BDFA039480AF669CA5E3CD3FBB34 /* ExecutionContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = B63A88F37E6F92C84454ADCD97B18C45 /* ExecutionContext.swift */; };
562BA5BF51D84691C5EEF13022CC24B0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C3CCD724C37A1E39D6F49EB5E4345068 /* Foundation.framework */; };
56BCBD1B2F6197C49E9134CDC2B82683 /* LightweightFuture.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0E611DA791C81D8D98D0F1750D8B98B /* LightweightFuture.swift */; };
5755F10318F54AF0D11D926719CCBDDA /* Async+HydraAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0917FBC0418663DA590BBA7AEDE58795 /* Async+HydraAsync.swift */; };
57EF6A0077DFEF08DD77D0CBD71995D7 /* Event.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE796432049D7B8E77357B22DE2AE77F /* Event.swift */; };
5C7FFDD48272CD01A16845A1A137AD91 /* SerialDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98D726CFD4B4F8444192538CD21D5BDE /* SerialDispatchQueueScheduler.swift */; };
5D0CBDDBEF9192225EA8290462BA83B3 /* Promise+Validate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A58BABB1666510F7B5C5D78725C98EFC /* Promise+Validate.swift */; };
5DC775308F9CFA7373500839B4F870FA /* Mockingjay.swift in Sources */ = {isa = PBXBuildFile; fileRef = E39A61D4FD494378C2A65CC11E0A637E /* Mockingjay.swift */; };
5DDD153E3EF0714EB67AFACBC2CF2C04 /* NopDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB27971E140A346101950D503707E785 /* NopDisposable.swift */; };
5E38F2B3ABA8399D8F174689618763A0 /* GlobalState.m in Sources */ = {isa = PBXBuildFile; fileRef = 726FE0FAB7CB119623309203CB497146 /* GlobalState.m */; };
5EA015223728A32311FCA243ACF84CEA /* Repeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A2F831CF4310B70D8C85829C57ED095 /* Repeat.swift */; };
601A1913CCC3A3749C1720D416B4F90C /* PromiseError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FDCB3583CBFE5467454ADC23B1AA78A /* PromiseError.swift */; };
6075959FFBD5E45B9FB9E3409F90E055 /* Buffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = B12E399B977FB477DA132F1988FE6C04 /* Buffer.swift */; };
61200D01A1855D7920CEF835C8BE00B0 /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFDC7E2F8F54257696C94119E7C033C2 /* DispatchQueue+Alamofire.swift */; };
61AB857677C35E0D928ACDCEA99E44A9 /* AsyncSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 005719EECB24D986C586ABCAC8BACF4B /* AsyncSubject.swift */; };
6294B587E3B4DFEA3A38CF9F4F23A27E /* FailableAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 071236A7D902D78A4505E961C4EF6DD0 /* FailableAsync.swift */; };
62F65AD8DC4F0F9610F4B8B4738EC094 /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 709C5136D6976466BFCA2BB0D938F273 /* ServerTrustPolicy.swift */; };
649E26513150CDE7E20D05621556CBBD /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4BDA249A34B08825519710F18BBBC30 /* PriorityQueue.swift */; };
64A9EC44E224237FF40F2A46B47C38E3 /* AsyncType+ResultType.swift in Sources */ = {isa = PBXBuildFile; fileRef = E159995D1B69BE09A552EAA396B8F647 /* AsyncType+ResultType.swift */; };
6610F4AE43DADF71F0C733382F6E2635 /* Lock.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4E602F6B3ACC6E791F9CC71741DDD2B /* Lock.swift */; };
670AD68ACD6198E1DFEDC318259B8A6A /* NSURLSession+AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = B7C0688D5122376B9B3B97F1404E5C83 /* NSURLSession+AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
68AE5E0907A11F9D23B55A73A7A41D35 /* Deferred.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5229C944FBACA453E7B25165EE5FDD63 /* Deferred.swift */; };
69627B1284EB3494300C000F0C03823E /* URITemplate-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DDC10A5BB8B31129860BA6CCED54A53 /* URITemplate-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
6A33D887B375EA452EE1DDB34719B285 /* Commons.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE49C6D1A9E94A73BBC4795A6C7C71FA /* Commons.swift */; };
6B31A5EBE79CF852ED893FBEE08F9EFB /* TailRecursiveSink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41AF58DB02DA96C8E0FCCACDC8AAC854 /* TailRecursiveSink.swift */; };
6B8A3B74E26183C35E8469BF54E4312D /* AnonymousDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E251911D9E79EF6D8F9521A528F0DDC0 /* AnonymousDisposable.swift */; };
6B901A4988AF42859A628FD200B917A2 /* AnyObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = B82ED3FD5DD2AE76E9F90AAAFA3FAB07 /* AnyObserver.swift */; };
6BE307DD3FF3B54B2CD1CA032A90A796 /* DisposeBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17FA23EE8E821276279DE5162D379CB7 /* DisposeBase.swift */; };
6D1B938243AFFD8B5F035890621F61FD /* LockOwnerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64807BCFB1A0EA3EFD254F58F4EBF8DC /* LockOwnerType.swift */; };
6E3D75AD38030869C613C5881BBE59C2 /* SubscribeOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A6E63A003A11C67E493D3E503D7E6C1 /* SubscribeOn.swift */; };
6EB472531392C0E6F5CE7E5D56C76AED /* ConcurrentMainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 222EE7BB1BA82D7C645E1E2776EB5676 /* ConcurrentMainScheduler.swift */; };
6FE6028C0F9ED1C89923EB3852EF13AB /* Pods-Asynchronous_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DC7F5028F2E43D3A3D393C074C48DCF /* Pods-Asynchronous_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
73620B895EF1D96BFD973DE8F1FE67BA /* Concat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CD2F2168E94127527EE142439037B66 /* Concat.swift */; };
73B9C996AED49ED7CF8EC2A6F1738059 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C3CCD724C37A1E39D6F49EB5E4345068 /* Foundation.framework */; };
74026816B659111697F69522F4968B36 /* InvalidationToken.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96CEB8E43BB4AE39E0C35619C3F0292D /* InvalidationToken.swift */; };
7428CB42EAA99FBA1F3E4E1F13A8B145 /* Reduce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CEA34D270BF2D1511B4D0DDEF4481BA /* Reduce.swift */; };
74EA606CD38339FF0B936B4065D2AF51 /* StartWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = A56B6A19C4E25BB21332C7DABF45C76B /* StartWith.swift */; };
7694087594D6E3047936AFA4F233F142 /* Result.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BDC2D67F61EDFC9B43979318161FF733 /* Result.framework */; };
77076A719FFFF1C3EBF3535DDE372F2B /* RetryWhen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C48F7B4B09BC987719F4D6E03914B38 /* RetryWhen.swift */; };
774B5BEC96EE5CDAAD3879139EB71297 /* MainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB5404E52023F8DEAAB6D482FF00857D /* MainScheduler.swift */; };
795B2D7819FF41B85D57FA3710B1FA14 /* ScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5EACCC2667155FD87158E9CAECA45473 /* ScheduledItem.swift */; };
799031DDA75DCAEF9E9990ABC5531906 /* ConcurrentDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49F6BA1305CDF6EA39B7F6267C6106D9 /* ConcurrentDispatchQueueScheduler.swift */; };
7A10A1F0E03299C5680A3D5CB15235B3 /* Promise+Properties.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC8E311B36907231BDE7526ED53B3449 /* Promise+Properties.swift */; };
7A44B5AD4C3E545EA383AE3DB04C7A2B /* Promise+Race.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65143693308B2C00569518ABF0808722 /* Promise+Race.swift */; };
7AF53F5BE59212CE00175CD4FA702EB4 /* Zip.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD4ACA727DDF81D8173578122E48046F /* Zip.swift */; };
7B5FE28C7EA4122B0598738E54DBEBD8 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5859D03A6C27F1055AF932174C4AA054 /* SessionDelegate.swift */; };
7BC2F6C9317F8009AD59DA4C221C7268 /* Promise+Retry.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8A0F64740DBBFDC79601B7D2A634745 /* Promise+Retry.swift */; };
7BE0550828D513E02C01F3EB2AD460DE /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = 548FEA58F23AA7EFE299E41727FC2C8F /* Map.swift */; };
7D8CC01E8C9EFFF9F4D65406CDE0AB66 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D6719C7DEB622FE092E10CBEDB644FD /* Result.swift */; };
7EA095CDBE47D0A13BB22487D47C0D97 /* RxSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5B81D5614103C4AABD020D94FE548222 /* RxSwift.framework */; };
7EAACF53D5F7A70323287BCE820AA696 /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 851675E7100335271D143C201DE50300 /* InfiniteSequence.swift */; };
7EE7AA93F7502632922AAC484D1A3B14 /* Builders.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4247BC0CBC0FD3B3026F2E55813BB804 /* Builders.swift */; };
7F01DB5C6A03E99F73AD9ABAD286416A /* Asynchronous-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B708D93A27A2D524EA789CB45AC8FAC2 /* Asynchronous-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
7F02292DA0771738D06FBD346F99B9F0 /* Promise+Recover.swift in Sources */ = {isa = PBXBuildFile; fileRef = 405C7E16BD3661389E459BF735449EDA /* Promise+Recover.swift */; };
7F7458C8ECE2AB16519A2CD305993745 /* MutableAsyncType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 184BF921965847D7A70490CBCC6D4FED /* MutableAsyncType.swift */; };
818E7F0BA915F260EEA25A1069B06209 /* NSTask+AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = D1BFEB3F4A372AFA7EB2F819AD848E5B /* NSTask+AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
82C0439382CF9FDCA769A1E2C8801890 /* Context.swift in Sources */ = {isa = PBXBuildFile; fileRef = 273E969C5CCF927B609E0E8FC8C638CC /* Context.swift */; };
834B833596873EE4F47624B000C5896A /* Promise+NoMatterWhat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D30CA5F9F8FDF5B0E87A021B6884721 /* Promise+NoMatterWhat.swift */; };
8408F6CC658DFBD090CCE58209269A82 /* Promise+Defer.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4979DFFEAD0FA95B9EE4BF7E1C94BD1 /* Promise+Defer.swift */; };
84BCEDA9326C0AF97E65C141BCBD75ED /* Matchers.swift in Sources */ = {isa = PBXBuildFile; fileRef = A82E69963733527B40E6B31223933240 /* Matchers.swift */; };
84EFA36484618875326D6789F0DCBB21 /* when.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD4C2B57D03FB22B0A7DF9BB4DF0F35C /* when.swift */; };
85EE9F975748C5458EB3995428D511D3 /* UIViewController+AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 313B1E6A64D3D4E6931455E1A31EA3FE /* UIViewController+AnyPromise.m */; };
8612BA2F350718076533B89A7721C414 /* Promise+Validate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C71F7C750F90C846E2DE3EBA034F7D1F /* Promise+Validate.swift */; };
8692FD3E06E04820DDF3D597EC9A84FA /* SkipUntil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B05204170AA011F3FE975F97C9BF0DE /* SkipUntil.swift */; };
869ADEB6DC44B522E761885437C6A234 /* Asynchronous-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9095B1375CB1A13B317A19D4AA5BB4DB /* Asynchronous-dummy.m */; };
86A5023DCD962E0E8665A35717C8860E /* Amb.swift in Sources */ = {isa = PBXBuildFile; fileRef = 619BA80D47D6439C5CECCECCF5B235B1 /* Amb.swift */; };
87365D2C89278A5F5E0B1B36FE64CCE9 /* Async+BrightFutures.swift in Sources */ = {isa = PBXBuildFile; fileRef = 048F9F6025C62366EBDEAF824FE5D66C /* Async+BrightFutures.swift */; };
875F6009CDA73A6039281C5A4A4596F5 /* Pods-Asynchronous_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 642DCFD79334B83816BD8E2555F85BEF /* Pods-Asynchronous_Example-dummy.m */; };
87E18D7C1AD2965C2DEE5C9BD35E66D2 /* DisposeBag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4294E67690670D66AEF22C8364DB25F1 /* DisposeBag.swift */; };
87F446F2AB4D6AE3AD2A0FD323F2E1E4 /* join.m in Sources */ = {isa = PBXBuildFile; fileRef = F14FD56624DF2C0CA687415ECB24D644 /* join.m */; };
8845E0118507DE6BBDD6058AD204D68C /* String+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A47B7017D452512129ABFD9101248AE /* String+Rx.swift */; };
89F91A03B0CE407949DD673B20A0A956 /* Zip+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = F194BDF08B6FF4FC8AD56B9090D7A925 /* Zip+Collection.swift */; };
8BBA4A8D004E3CE951556EAA394412F8 /* Number+BrightFutures.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98070D7583FC30351CEA56178734673A /* Number+BrightFutures.swift */; };
8C863F805422A836C0415970D848B511 /* MockingjayProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF940E1543F5EAD30E53B51DCBE288AC /* MockingjayProtocol.swift */; };
8EA31182DCBC6EE14251EB24A629571B /* Promise+Await.swift in Sources */ = {isa = PBXBuildFile; fileRef = C65C4B336790F2E0E3DDB989122CEBD6 /* Promise+Await.swift */; };
9026AFD6113E432C5080DE9DCDDACC24 /* Promise+Chain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FC0D0A34E653D65F3D077F4160EC3F1 /* Promise+Chain.swift */; };
90C5FCEE5A511BD981047D3F5E34A487 /* SerialDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA0CD2E3BAB228870F9A83DBF03EFD6E /* SerialDisposable.swift */; };
90E6DE73266F2E03AD6824DF42F0EB85 /* after.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14FBC4D34AFAA36EA708113A3934512A /* after.swift */; };
9145E01E811929D2FDAE34541747D26D /* UIView+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E5514FFC262B98A7D0B488ECD9F29F6 /* UIView+Promise.swift */; };
91C59F43C89CCD094E935F3EEEE70778 /* Generate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 893B936E5EFAE0B5C64C7DC85E7FFB72 /* Generate.swift */; };
921FEE24C7B1F8258368286C0CFC41A5 /* URLDataPromise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7ABFC1178A03BB6FE639A7BB4E932C26 /* URLDataPromise.swift */; };
93E4380E8BCE4FFF33BA833D55E71E0D /* Enumerated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 368160C0AA6067FDB7A75C9A92B0EB9D /* Enumerated.swift */; };
977EB9E35C8F9EA1CE0144F7E7EF895F /* TakeUntil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94D9713D2C5CA6B8B1DFE2ECAFF6BF21 /* TakeUntil.swift */; };
97F82F8F3139F58A27A30DA87C529E3E /* RecursiveScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 707B5918127F6D4662D7B139A876B153 /* RecursiveScheduler.swift */; };
9874EC300E159E48611AC12D39580F60 /* Single.swift in Sources */ = {isa = PBXBuildFile; fileRef = 242C2A79F22B6DC276EF0F6FAF71DC02 /* Single.swift */; };
98766CE1B6905C98BDA2EC610965C0C8 /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 081F9B86418086CFB04D854CE3F68FBB /* Alamofire.framework */; };
9878614C4BEF5C25904ED3682E8A1C3A /* Promise+nil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53986AF8B6CBF88F1412F2DBA7A566DD /* Promise+nil.swift */; };
9912D06B6F1F8B557116F66FD41DEC23 /* Producer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10973863EB924C6C51AAD354C51BFDE3 /* Producer.swift */; };
99AFD60611CC817E696432CF256DC6C6 /* BooleanDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32F3DF3C5C6782886D335C343412ED7D /* BooleanDisposable.swift */; };
9AAB731C4FC836C2446D24ED3BE4825E /* Future.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EC43B05D23DA731BFC367E8865C4ACC /* Future.swift */; };
9B569C02304139098834D56F39F7FACA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C3CCD724C37A1E39D6F49EB5E4345068 /* Foundation.framework */; };
9D33DDEECB8B012CEC853D72A8FAE1F9 /* wrap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03BA8983D5475A069E91BD806C692947 /* wrap.swift */; };
9E51ADCC43BB11693F4D4105F077F2C4 /* AsMaybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF41C94D0B6749FF49357FECF735F0F2 /* AsMaybe.swift */; };
9E5DCFE4D1E21E41C8B52FD535C30A96 /* DispatchQueueConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CDBE4AC181A0FD3964AD0A53B650F68 /* DispatchQueueConfiguration.swift */; };
9ED2BB2981896E0A39EFA365503F58CE /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F81E9D8C2D0BCAB51D2C8656BD2EDD0 /* AFError.swift */; };
9EDF9A2A1A47D4A40F3A0923FA6A6DB4 /* Promise+Then.swift in Sources */ = {isa = PBXBuildFile; fileRef = 746B9C56761117BDA4555833DC89CD6E /* Promise+Then.swift */; };
9F372BFB72E011BD3F80FAEE4AAA8B11 /* Result+BrightFutures.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1B2192BE390B99DE9067D2A4BC3EDFD /* Result+BrightFutures.swift */; };
A0EA71846C82AF2D9AC0D35B2BE20F1E /* thenPromise-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F674B9EB765CF96C58DCA6C324D7516 /* thenPromise-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A1136007D0AE6FA6A4880E97642D1E49 /* URITemplate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1BB5C5423F809EB0921558F63AEF52EE /* URITemplate.framework */; };
A1DB5C12DED579FB5EB037902EC13A3F /* Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = 861A71007BE6C275A9143A42DA034468 /* Async.swift */; };
A1F2E811DD3ED26D51E6682D090F866F /* Throttle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 735D6BEBB4EC9B3C38A00B14027DA048 /* Throttle.swift */; };
A2A6F71B727312BD45CC7A4AAD7B0AB7 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF0F250F568F0D1AFC6BC4301D137D15 /* NetworkReachabilityManager.swift */; };
A39E4BD1BE08A3A366079528FF0394E9 /* RxMutableBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = A58F73DDAEA0514C8709C65D1D75036C /* RxMutableBox.swift */; };
A3DB5F94BFC6A6BE11B17C76BD0E4040 /* AsyncLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2C3833291C7F4CFD066F562B8F4C87D /* AsyncLock.swift */; };
A3ED93110F7B2FD365F121E6F8D534BE /* ImmediateSchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 251211A5A73F4E15E172FD1AC7B038C7 /* ImmediateSchedulerType.swift */; };
A4003E726D018E1ADAD96E45658F8478 /* Promise+Retry.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B5C18516B974139D288C182950CB3F6 /* Promise+Retry.swift */; };
A4627EB1CF88DEEB8DD26A249A935C86 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 08052C6504C482F0DC0312B610CAF0F3 /* QuartzCore.framework */; };
A5F120DE1BA58B10BF8F2F9DD9E33165 /* Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3054692037B2839D3CCA87307B63CF2D /* Promise.swift */; };
A6C996C7C52A09B9EA4C8745CC1840FE /* Promise+Timeout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04DFA73591E5CA629960E368224CF0D0 /* Promise+Timeout.swift */; };
A6D0E6ABD5D483396BE9C8C25E03FF5D /* SynchronizedUnsubscribeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = A02CE118FDD7798E1D8A369D9525E13C /* SynchronizedUnsubscribeType.swift */; };
A7598E8498B28EDB7269EBCFECCA516C /* ObserverBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CE01AC1DCEDECAA24566856DFD77F7C /* ObserverBase.swift */; };
A772772A87F6C0A6F0784A6288A80339 /* Mockingjay-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BF8C53E635310A6F83D96409F5BA1BC /* Mockingjay-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
A79BA21FC34063F1151501500CABAE67 /* Alamofire+Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64A1DF99205ECF3839900D050AF1415F /* Alamofire+Async.swift */; };
A7E16FCE0F3E513915E4F23CB40E81C8 /* Switch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51A097421834DEB6994A17D582ED6C80 /* Switch.swift */; };
A89ADA66E717F3B85E821239AD1D017D /* ScheduledDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = D659E930685472E850D1EBF6DEAC6975 /* ScheduledDisposable.swift */; };
A8A467D886530CE264B2CFAD96C1C0A9 /* CurrentThreadScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DBC9A277ED09F2ACAD42B5065B8906F /* CurrentThreadScheduler.swift */; };
A9EEEA7477981DEEBC72432DE9990A4B /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 628CEDD2411A866F4810A418EE388DA4 /* Alamofire-dummy.m */; };
AC6EF64DAF9404D3AA8FB3510EB6F509 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5C258144D7FAAF98EEA7F22AEF1CA0E /* Error.swift */; };
AE1EF48399533730D0066E04B22CA2D6 /* SessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E858362099AAFEB55C4175E5A0B5753 /* SessionManager.swift */; };
AE8B23A8D841D00FEC62313A83996C23 /* GroupBy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F216F91400C169E5B9504F151FCF5D1 /* GroupBy.swift */; };
AED722670FBAA855DC18CB42DEC0FC1D /* Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 547859C925D4B5E5D7725CF51912E56B /* Promise.swift */; };
AFEB228EE8773B9A92A5837E0EEDD85F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C3CCD724C37A1E39D6F49EB5E4345068 /* Foundation.framework */; };
B0FE02F0957757899DF7F7BA81928F7F /* HydraAsync-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 513EDC42059C966ADB46A0B2FEFF8063 /* HydraAsync-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
B3EF840616BDAE1C0EAF556612754788 /* Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01E7490C5D49F35FF3C9FE9ECBE7075B /* Zip+arity.swift */; };
B485E7C3C2117D323DF36E04D704AF58 /* Promise+Unwrap.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEED69751FDDDC1AEDBC628F76AEEB55 /* Promise+Unwrap.swift */; };
B4D5855B9B0B34D13853988EA8D7CF17 /* Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B84DFCE8661123B25509DBE8B3D0282 /* Promise.swift */; };
B54BF458DA4DF7B2176F82B292722906 /* NSNotificationCenter+AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 840790CC2CE8F76BBA0A57A458864061 /* NSNotificationCenter+AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
B5B469DBECC154115DCDCED18E8A8192 /* Promise+Progress.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA2616B2A0BBCC683033111D72199EE0 /* Promise+Progress.swift */; };
B65FCF589DA398C3EFE0128064E510EC /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DE588E00E682F6E2590C9563AAF94E4 /* MultipartFormData.swift */; };
B6A104A65AABFCE20E976D55404EA377 /* ObserverType.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3E69B5DD1EA4262B26761E35C1C3228 /* ObserverType.swift */; };
B708D2FA727FBEA47B4279797CC3EE50 /* VirtualTimeScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09DFA927BF7E5C9ECADEA44CB6877B47 /* VirtualTimeScheduler.swift */; };
B7090F3C92DD20749F141DFAAFF2A024 /* VirtualTimeConverterType.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC03C3B9BE5010FBB60C325B46AB4A37 /* VirtualTimeConverterType.swift */; };
B77451F03536A256D87175B61651DD4B /* PrimitiveSequence+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71792C0352B4EF5953EDD435798EF98F /* PrimitiveSequence+Zip+arity.swift */; };
BBEFE2F9CEB73DC7BD97FFA66A0D9D4F /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54602C1D4B58AB647CB10108B6FAD868 /* Validation.swift */; };
BBF23546B584646781361346FA4E29E0 /* AsyncError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62B327215CE8C8C1ED41442FD4AD1E8E /* AsyncError.swift */; };
BC6392440AA27FFF7D36801C54ED29CE /* Deprecated.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF698A179AC7F614954538C607C0E066 /* Deprecated.swift */; };
BE5C67A07E289FE1F9BE27335B159997 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE8E52728F50351437E263D24A84291A /* ParameterEncoding.swift */; };
BEAF3780F6EC28A2E11DF69040F1D560 /* ObservableConvertibleType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 952B08ED915AA400E2D6C79D159FD7BB /* ObservableConvertibleType.swift */; };
BEE472450BBA5F211D414B1786472BA3 /* Promise+Reduce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A11F4F47B4DB3858A2A44A97F4624F0 /* Promise+Reduce.swift */; };
BF240C38BB1D6842B6510DF25DC4E5A3 /* UIViewController+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60BF66C847364D5384455E4D3FE8D983 /* UIViewController+Promise.swift */; };
BF8471B70EF085C4A297049A0282DE0C /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6EBFE2272F1C1352527718B20C436CC /* Error.swift */; };
C000F7EF7A84BB6642E9FBC34C4E9CC9 /* Promise+Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = C395BDC0A855FB7BAEE045F458CB3FEA /* Promise+Map.swift */; };
C0F5793509377BA1E0946CBD2080CF6D /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BFB5C2784178DDDFDB468AC505F1FAA /* RecursiveLock.swift */; };
C106F8061EDF474D89ADE996A16D831D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C3CCD724C37A1E39D6F49EB5E4345068 /* Foundation.framework */; };
C10C92E6BAD8E5786FAD961519E81EC3 /* BrightFutures-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 943B50D4EED62B6BD7AF489B71720176 /* BrightFutures-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
C1ADF138613ED4073861920B51528D54 /* Result-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1100C5F91E13955373F8C922A5158DE5 /* Result-dummy.m */; };
C23D8E76068B198815318F65999F0FBC /* SynchronizedDisposeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A5340658EDB298A8B764312C53F546C /* SynchronizedDisposeType.swift */; };
C3A7C585510FED7747B487D7560BF0AF /* Result.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BDC2D67F61EDFC9B43979318161FF733 /* Result.framework */; };
C3B33BCB648B859EB6BA0F36321BC8EB /* Promise+Zip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 512954B19A43C0000C4AD03C2F561F64 /* Promise+Zip.swift */; };
C3D101026FFB476AE312405A5B078A7F /* Reactive.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2CE2B9B3F8FC104C3DAED716E9F5D47 /* Reactive.swift */; };
C423ABC3419BB2A4D8D5882E52D19D41 /* Pods-Asynchronous_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B4E8FF4723366FD31AEA97A5B6617C71 /* Pods-Asynchronous_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
C477C673CFDC87B397068368D8336A00 /* CALayer+AnyPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 6799B63AF7B5C572D95306D9C9F21901 /* CALayer+AnyPromise.h */; settings = {ATTRIBUTES = (Public, ); }; };
C4A8E300B61987A057022D3A2EF4E7DE /* Never.swift in Sources */ = {isa = PBXBuildFile; fileRef = 732741C88716057AED4EADEFB028A940 /* Never.swift */; };
C4B39E20AFB81BBF69C319E4E93F9EB2 /* Promises-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 379453C4ED14066D0554C86BE6060183 /* Promises-dummy.m */; };
C4DB39CE18D348F4C4EF37A2929E2B8A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C3CCD724C37A1E39D6F49EB5E4345068 /* Foundation.framework */; };
C5105579292164743B6322343B0DCD0A /* Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DBFD9EBF90B2B8A4B2993E28EDF345A /* Create.swift */; };
C63583223F765F60195DD378E2A025C1 /* ResultProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 296D81408C8523F931702F41076CA9B0 /* ResultProtocol.swift */; };
C6DC5F4E9DE8018DB4AE41DDECB3F205 /* URITemplate-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D0181EA9279E00DCD096B8F4151335E /* URITemplate-dummy.m */; };
C749747A4EE4FE2E117C4E58B7F0AC3B /* RxSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 37DE080FFCB59ABC83BF022EEBD74B88 /* RxSwift-dummy.m */; };
C7552A16A36E7013A1DA1ECF12886048 /* PromiseState.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C70E9E3395602E15E7C6AEE19DBD345 /* PromiseState.swift */; };
C7A5358C6A3A3DB45B85204064125D6E /* Promise+All.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCC692887AB90A5BD2E9B89567CA0C5F /* Promise+All.swift */; };
C8E3D9E8A927C302570CFCFC3BCCA460 /* Promise+Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = D197C45C99F6D9528A98F74A8D9907DF /* Promise+Error.swift */; };
C9E2BE02B35A74E9A553E87A47FC6E79 /* HistoricalScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13093765277C7F06721610B8A04CFE50 /* HistoricalScheduler.swift */; };
CA0331C23F0B1E7E920609C5031E0CBA /* CombineLatest+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11F59B41F0C3C82C4A247A4A82922978 /* CombineLatest+Collection.swift */; };
CB6D60925223897FFA2662667DF83E8A /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C33EC8F32E7DEB8E493C74C76F9B475 /* Response.swift */; };
CBD95DE2475DD3C44711E77F0BC7B08A /* URITemplate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D485798220713963E55A645AD6976A0 /* URITemplate.swift */; };
CCA59D29B5D5D4BF18ABA87CDA31406D /* PromiseBlocks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BECB581C8AFD704F8002256390BED47 /* PromiseBlocks.swift */; };
CD4E9A31AC6DE93D4CEF985E75BDA3C0 /* thenPromise-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FD17B01FB3E8419613039DBC8127D294 /* thenPromise-dummy.m */; };
CDCB208748FED8ED0ADE7E1DC1B7949D /* OperationQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81F5050D6BA5B0A8EB5C452F03588145 /* OperationQueueScheduler.swift */; };
CDDCDE954BD3AF8B4EE76259C36BFFDB /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9B4334B7AD34676E261C9AD6E980936 /* Errors.swift */; };
CE539F6E816D66888DD29E70758511CB /* Result-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B6ED121F9C881FE034EDDE6D51282B6 /* Result-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
CE885640FA9AD4F722232E9E78995A9D /* then.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 437FB61F5536D5967D9238751DC6DC36 /* then.framework */; };
CE9CE7814F53B75ABD81D7320D6A638E /* MockingjayURLSessionConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FBDF44B4593B5288B124DD67CE7526B /* MockingjayURLSessionConfiguration.m */; };
CFDB23D39CE7CAFC9DD5FFA593E6DFBC /* SingleAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80A185BF0039C8099A8426BCB99A96DC /* SingleAsync.swift */; };
D0154B0C619D3C9BB1DB68D8367E4271 /* Using.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4EBC82A2A0065CB5C9DD9E2B1D03061F /* Using.swift */; };
D0ADE54A852074EE699DED438AB22AE2 /* AddRef.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27FE4D67A6E04DE7D590C68B883B8123 /* AddRef.swift */; };
D10740F304B0F0B839CF9096185A061A /* NSNotificationCenter+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = D761AE602561145DE10C30EED3A6B9E7 /* NSNotificationCenter+Promise.swift */; };
D10B7959B50A75343441AA1186580711 /* GroupedObservable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F6CB821E02D4A9FB455B5B861931ACB /* GroupedObservable.swift */; };
D1A357960E49C1C1DC0C0CFECA879DB1 /* InvocableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53A5658C7672A5DEA3C372F0C8D8A7F5 /* InvocableType.swift */; };
D26EED0A7628F79F8D6A093E5BC63E47 /* Promise+Recover.swift in Sources */ = {isa = PBXBuildFile; fileRef = E205149530CDEC7066A84FC6FEA81F92 /* Promise+Recover.swift */; };
D305BD135F1E96EC95194A75ADE1B93A /* Promise+Delay.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8F56BFA6363EBDE91B426D29321D243 /* Promise+Delay.swift */; };
D3AE11FFCDB5B797982FF6EBF1246167 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07641DCA0E6BAAC69279F75BE461C145 /* Result.swift */; };
D4956F16FC0701819B87E79C98297D5F /* NSURLSession+Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF6D3C55E13DDE224AFD414D049B80BD /* NSURLSession+Promise.swift */; };
D4F0662B559315BA837126448B0ECC0B /* Timeout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 107C6F7AA18FA507EC33AD4A368E5BC8 /* Timeout.swift */; };
D516172EFE3AEC7A417723CFD00EF218 /* AsyncType+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1266DAC25F9CBA3B7C5910E68822D925 /* AsyncType+Debug.swift */; };
D52965CCD0A08C628669A2650F94E729 /* Promise+BridgeError.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4971C357A7593FAF2EF584A980080EF /* Promise+BridgeError.swift */; };
D5542F9674E63C82920F99B4A25CB3EB /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C95984CB54719CF7F724A85C15AE008 /* XCTest.framework */; };
D56BEA26096DED077EBF906CDE74C4FF /* State.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FA199634E2E4A0E6936D3F973BC925F /* State.swift */; };
D6E56DEF7E57221952F79ED4997C61A9 /* Disposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 755B2CF948EA2BFAA930D78963C6CDC3 /* Disposable.swift */; };
D7940FEDE95EBE3CA41FCBD06EE34217 /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = D300D65A908A60A3C4BE27E6545E5EF4 /* Bag.swift */; };
D89B953C6CD244CC0CB1231C106EE278 /* Promise+AnyPromise.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2786874B0DA8E50BA66B982A9D0EE158 /* Promise+AnyPromise.swift */; };
D984660497A2AAFB56E9AABDD852E778 /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC06D307DA751D71ECE04C9C10E33096 /* Platform.Linux.swift */; };
DAE761E890ED9566B4DF023747EE5199 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C3CCD724C37A1E39D6F49EB5E4345068 /* Foundation.framework */; };
DDF5ADCE281E192184D598A6472922DB /* Mockingjay-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EE210FE38D56457BDD223065FE610BC8 /* Mockingjay-dummy.m */; };
DE1790D0B2B7100F16BBEA1AD3081617 /* SingleAssignmentDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06BF4FEE15CC5C33E972401BF74BA408 /* SingleAssignmentDisposable.swift */; };
DFD80187F4D550B7F9819D89D202C9BD /* RxSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A785A4F2AF33D8CFC3AAB88B27956416 /* RxSwift-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
E014A0BC97CCCBBE7CE2B984FD2EAE8F /* AnyPromise.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F6F7D8F4411D932D02B14E84A23D091 /* AnyPromise.m */; };
E03775B4E442712DCD717F03FF17138D /* Materialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 831A91AF81A261448F80083A4F5CB3ED /* Materialize.swift */; };
E09E6B48DDD754E4D476160ECE452256 /* Sample.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3975F82C3E3A33EC09AD878A83F5A1C2 /* Sample.swift */; };
E0B62E62F93BBB565EA67F2782844DC2 /* CompositeDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 485BEA647171BBA7A149CE8AC9145290 /* CompositeDisposable.swift */; };
E12654893B3961D806D284FDC1FFBD11 /* Dispatch+BrightFutures.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09A3815B733DEEBA88E2F5B7D8936D93 /* Dispatch+BrightFutures.swift */; };
E1F498743CD0DDF29C35A320083E79ED /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 629780C6B6EE2FEDCE105FE0879C2069 /* Queue.swift */; };
E26073307735DC9FD2F69216CB24639F /* Promises-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B724845261AB46097DC00031DF889F80 /* Promises-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
E39C07177C4FC1925A69F837400345B3 /* Promise.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0629D58009260C2E36B1DBE88E1C97A /* Promise.swift */; };
E408E3EE644EA3C6125FEA52ECA59414 /* ShareReplayScope.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A0D5A5ADD2501C1EC5EA92878513125 /* ShareReplayScope.swift */; };
E6E52F87AFE1555B571FD7B12399C4F1 /* Multicast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54A76B1D9FAD4D6E81605A41A37843A1 /* Multicast.swift */; };
E73E6DBA948EDAC4104ED0B6BFB1A1F8 /* Merge.swift in Sources */ = {isa = PBXBuildFile; fileRef = E58D07FC559E632C8AD97D3666DECC55 /* Merge.swift */; };
E75E529945A12B48F5FB996C51F46216 /* Promise+Extras.swift in Sources */ = {isa = PBXBuildFile; fileRef = 774313D3B7095F97FFB4FEEDD2347232 /* Promise+Extras.swift */; };
E7F4AA4D41C08F28E3A74986E174A3AE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C3CCD724C37A1E39D6F49EB5E4345068 /* Foundation.framework */; };
E98C8685F4A092F529CBF13B3C0CB617 /* Promise+Zip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61AF6F7C8CEC6C853EB1DCB9C42285F6 /* Promise+Zip.swift */; };
E9CC01391B7E4EC9C3C0314FBCF9460E /* Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFF8E594ABE54D8C476D22F8A4878300 /* Debug.swift */; };
EAFF6810F6BDAB6C92672FAB946133F1 /* ReplaySubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90F2969C2C7BB43583FBC69FCCAE48EB /* ReplaySubject.swift */; };
EC814B74D482AE609303FF1E7B04AF6C /* Promise+Then.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56E22A929DD3D2B6DF427000E45AC9E5 /* Promise+Then.swift */; };
EDAAA61BCF017317945726AC3DEDA5E8 /* HistoricalSchedulerTimeConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0457E809EF6931B694081F5CFF78BACD /* HistoricalSchedulerTimeConverter.swift */; };
EDBB84985E9455422D810AD937E27B5D /* Promise+Helpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = E51096F2D892D6C82C20D2764467939B /* Promise+Helpers.swift */; };
EE1E582EDE70D2C6A9CFEF074EFCB721 /* AnyPromise.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1E115E029E7594D9A7595F87B284710 /* AnyPromise.swift */; };
EE5228DB05100A1BEEE01FA78257A43E /* Timer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09EAB3DFA2B9E95B62FC874DCCE98A35 /* Timer.swift */; };
EE6F2C3E1104E50B708333236FB7F9C3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C3CCD724C37A1E39D6F49EB5E4345068 /* Foundation.framework */; };
EEC5E671F745255667EE442375388C4A /* ObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53613B853B245DAFD25B244C5B64BA68 /* ObservableType.swift */; };
EF2EAAA0DA18AFCC9F4D7006C3FA0412 /* DistinctUntilChanged.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CA2F641532561BAB8A6C052307F2436 /* DistinctUntilChanged.swift */; };
EFD264FC408EBF3BA2528E70B08DDD94 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4FBE1CBD180EF4EC128DC7B19B43D92 /* Notifications.swift */; };
F0A1C8A7EA1ADCB3658FB30A926CA5B9 /* PublishSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E8243F2799AD6112E5FB32C2C873C4F /* PublishSubject.swift */; };
F0E9E0437F6ACA31AB2B4E99975D73B7 /* ObservableType+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7E75010AAAAB6E60A9D5F41526C3A74 /* ObservableType+Extensions.swift */; };
F19D205359DEACE8311E55107EBA838A /* BinaryDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C818195227DE8ACDC2AC265AC8F6CA1 /* BinaryDisposable.swift */; };
F313DF1E43723E6AD64D9670BCFFCA99 /* Promise+Any.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C9B99C271AFC6FC89A553B17A5934B5 /* Promise+Any.swift */; };
F3175770A80D12BFD15B89F54FA80901 /* DefaultIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4118362F01BF68ECCBABDE34D89E3E5C /* DefaultIfEmpty.swift */; };
F37DDA4B6822CBFEB821F3760EB94F80 /* First.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39737392F75EB238406D81946B7DB767 /* First.swift */; };
F44093A9B72A4AD06E3B5885B7F013AD /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11EF0A36E101927B780D8A611B32708C /* Errors.swift */; };
F59ADE5A8B6D4C492654299FE2363115 /* AsyncType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DB16E78A4F39122306ECD2345966D4D /* AsyncType.swift */; };
F6B93360E2EAA7C65ED92C60DB299899 /* Just.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4EB29F016F73DFFDDC17B2E00248A70 /* Just.swift */; };
F6BECD98B97CBFEBE2C96F0E9E72A6C0 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F48F80417A5C0747EEA7E0D8CEC9496 /* ResponseSerialization.swift */; };
F6E880AE1C6CFE119ADFBEFB8F0602F6 /* fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = B39CD4DE45B04CC18ABB9216C0B0AB62 /* fwd.h */; settings = {ATTRIBUTES = (Public, ); }; };
F72DE8B051C925C7C5F06A3634787E24 /* ConnectableObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 571BC3D16CCD20AB662E1B8852EA7D01 /* ConnectableObservableType.swift */; };
F7F806D87D7866AAFD06FFBFDC4A2D6B /* SubjectType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 775E94E94E17A6A878F65D7D6539694A /* SubjectType.swift */; };
F855EE2213F254D2DC5DF709ACA81E6E /* Sink.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8C6D3CD08E0BD77EE4D9FA981B14099 /* Sink.swift */; };
F8672EA12367C104D4AA8021280449D1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C3CCD724C37A1E39D6F49EB5E4345068 /* Foundation.framework */; };
F8B3D3092ED0417E8CDF32033F6122F5 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FAE34DA40D4345F27A609455A623200 /* Alamofire.swift */; };
F92331E4AE1314E2F41905878A389BFB /* Range.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A342480A0D67EC00153EFB6EB30AC55 /* Range.swift */; };
FAAABEFEEFCF16B0B207C76619D8ED91 /* InvocableScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6DF88E3046779315AE7A041BC1674F2 /* InvocableScheduledItem.swift */; };
FC011579A94B3FCFCDFA1A3BA2DAA1CA /* after.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ADAB6E73CD935E479CCBCEE07259A1E /* after.m */; };
FCB0B9B0428B82B39B4F76FC1D770637 /* Async.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3ECA057E2AE76A38DE9C4B3D66CFA40 /* Async.swift */; };
FD56C3618A6BF143A21539109C3C57EA /* CombineLatest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B4651448DB79E2B471DD6D29924A8C1 /* CombineLatest.swift */; };
FE5320B5F800144DB68E1C1726761858 /* Hydra.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6EDB06F72E2CF95ED6DFA65BD0E86BB0 /* Hydra.framework */; };
FE5973074F59CFF3DD8602BAB58044AB /* Optional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EDA66F4497287794F5D41EA28886F47 /* Optional.swift */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
05D45EF775C79F15B5A39A566DE28B47 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 5BAEE407D509A3F67350A21DD9179E25;
remoteInfo = URITemplate;
};
13F6F1E074C8C1956158B5CA85856DAD /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = F2B0F2FBC9112984B92D47A9C6973A3B;
remoteInfo = HydraAsync;
};
14D7F616B39460D11F057949D4CBD683 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 11035B9CC0EBBFF171178A28FF197012;
remoteInfo = RxSwift;
};
1A94D4BBD986E8D7A1EF2D17B931EC0D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = AB07F504834E12BA5876067E20746FD4;
remoteInfo = Result;
};
1DA3F6F191E6790BD503C7D5B2C97844 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 11035B9CC0EBBFF171178A28FF197012;
remoteInfo = RxSwift;
};
24E2F3A228E21B167B66E75BDB564621 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = F19A3911A052462E55D78E5BC03B68B9;
remoteInfo = Asynchronous;
};
24F63139E60F766B7EBFDEF2B6F7E65C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = AB07F504834E12BA5876067E20746FD4;
remoteInfo = Result;
};
37BFFDAAA0C4330B0981D7AB5E102997 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 5BAEE407D509A3F67350A21DD9179E25;
remoteInfo = URITemplate;
};
3C478B07D23C198A9F86B66602763213 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 5BAACC736A5215103E10E2DC0A74FDCD;
remoteInfo = Mockingjay;
};
43B804EB2C9ED1C7942581ABF1AE5F72 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 28740044E921844BAFC4A7784A01E99B;
remoteInfo = BrightFutures;
};
50C7B06616A330BE01E98DA8E0D9E841 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B050DE7A5C938E1F9FAF3366E5F0284D;
remoteInfo = thenPromise;
};
536E2A39BD49C7ABE746FED838D662EE /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 88E9EC28B8B46C3631E6B242B50F4442;
remoteInfo = Alamofire;
};
59604E8A6BE8ACE7FBE03F7E711F3AA2 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = FB731E0D678052715E097EE1ACACFCCC;
remoteInfo = Promises;
};
6778339F01DBCDC75C01012CC43EE255 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 752B129501D78B9833180EE914AE88F5;
remoteInfo = PromiseKit;
};
7ED4534701DA6094CD10229767B10A21 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = F2B0F2FBC9112984B92D47A9C6973A3B;
remoteInfo = HydraAsync;
};
8916724497EE9D707B7C9250F5FF0F7D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = FB731E0D678052715E097EE1ACACFCCC;
remoteInfo = Promises;
};
8FE3D22339FEE51EFDAD0E873FA013C3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = AB07F504834E12BA5876067E20746FD4;
remoteInfo = Result;
};
95839BE769C9F7BFFD9AC073B442C476 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 28740044E921844BAFC4A7784A01E99B;
remoteInfo = BrightFutures;
};
979CCEB6921CC832D8BA26546304B339 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 752B129501D78B9833180EE914AE88F5;
remoteInfo = PromiseKit;
};
A6CD5E796912631AF3E95F6C9916220D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B050DE7A5C938E1F9FAF3366E5F0284D;
remoteInfo = thenPromise;
};
B4E03A639FCE90EF8CDF0499CA87671D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 88E9EC28B8B46C3631E6B242B50F4442;
remoteInfo = Alamofire;
};
B6529F084250D3E4C62D2C09FBC8ED1A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = FB731E0D678052715E097EE1ACACFCCC;
remoteInfo = Promises;
};
B814C84AD12860A5420926AF5155EFCF /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 11035B9CC0EBBFF171178A28FF197012;
remoteInfo = RxSwift;
};
CB4089625090CFCE2BB0B8A561340147 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = F2B0F2FBC9112984B92D47A9C6973A3B;
remoteInfo = HydraAsync;
};
CBD7D91EEF09EC26E1F4DC16C50C841D /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = B050DE7A5C938E1F9FAF3366E5F0284D;
remoteInfo = thenPromise;
};
D00C26B8ABC3B14B13F585559AC433B3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 88E9EC28B8B46C3631E6B242B50F4442;
remoteInfo = Alamofire;
};
D680FAF60FF761CB0C607B038AA8F1CD /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = F19A3911A052462E55D78E5BC03B68B9;
remoteInfo = Asynchronous;
};
E74A110A341CEDE46746BB59E5B91B5A /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = AB07F504834E12BA5876067E20746FD4;
remoteInfo = Result;
};
F2401556AEC36E44E15414530BC51D09 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 28740044E921844BAFC4A7784A01E99B;
remoteInfo = BrightFutures;
};
F6634C70E4A972CD6F77C0FD779AE736 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
proxyType = 1;
remoteGlobalIDString = 752B129501D78B9833180EE914AE88F5;
remoteInfo = PromiseKit;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
001550CFBD2BFBAA4267737BA67385C4 /* Pods-Asynchronous_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Asynchronous_Tests-resources.sh"; sourceTree = "<group>"; };
005719EECB24D986C586ABCAC8BACF4B /* AsyncSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncSubject.swift; path = RxSwift/Subjects/AsyncSubject.swift; sourceTree = "<group>"; };
01E7490C5D49F35FF3C9FE9ECBE7075B /* Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+arity.swift"; path = "RxSwift/Observables/Zip+arity.swift"; sourceTree = "<group>"; };
03AA2C9D2B9BF6247C192612BE71535E /* Promise.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Promise.framework; path = Promises.framework; sourceTree = BUILT_PRODUCTS_DIR; };
03BA8983D5475A069E91BD806C692947 /* wrap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = wrap.swift; path = Sources/wrap.swift; sourceTree = "<group>"; };
03F9717EB2FB5710E06C0E3CA9FBDC9D /* NSOperationQueue+BrightFutures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSOperationQueue+BrightFutures.swift"; path = "Sources/BrightFutures/NSOperationQueue+BrightFutures.swift"; sourceTree = "<group>"; };
0457E809EF6931B694081F5CFF78BACD /* HistoricalSchedulerTimeConverter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalSchedulerTimeConverter.swift; path = RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift; sourceTree = "<group>"; };
046D8003DD4FA7D330CACE58CD186A1B /* URITemplate.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = URITemplate.modulemap; sourceTree = "<group>"; };
048F9F6025C62366EBDEAF824FE5D66C /* Async+BrightFutures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Async+BrightFutures.swift"; path = "Asynchronous/Extensions/Async+BrightFutures.swift"; sourceTree = "<group>"; };
04DFA73591E5CA629960E368224CF0D0 /* Promise+Timeout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Timeout.swift"; path = "Sources/Hydra/Promise+Timeout.swift"; sourceTree = "<group>"; };
0667A61BA874AD9FE8A3DB0DBEA6FC70 /* thenPromise-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "thenPromise-prefix.pch"; sourceTree = "<group>"; };
0671C544CA1825CAE0904B5404E20FB0 /* Asynchronous.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Asynchronous.swift; path = Asynchronous/Core/Asynchronous.swift; sourceTree = "<group>"; };
06BF4FEE15CC5C33E972401BF74BA408 /* SingleAssignmentDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAssignmentDisposable.swift; path = RxSwift/Disposables/SingleAssignmentDisposable.swift; sourceTree = "<group>"; };
071236A7D902D78A4505E961C4EF6DD0 /* FailableAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FailableAsync.swift; path = Asynchronous/Core/FailableAsync.swift; sourceTree = "<group>"; };
0744FD23E1B91C08B7083D1F5C2DF55D /* Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Promise.swift; path = Sources/Hydra/Promise.swift; sourceTree = "<group>"; };
07641DCA0E6BAAC69279F75BE461C145 /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Result/Result.swift; sourceTree = "<group>"; };
08052C6504C482F0DC0312B610CAF0F3 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; };
081F9B86418086CFB04D854CE3F68FBB /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; };
08D2AB43E6C97D37EDB7530D0A106350 /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Alamofire.modulemap; sourceTree = "<group>"; };
0917FBC0418663DA590BBA7AEDE58795 /* Async+HydraAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Async+HydraAsync.swift"; path = "Asynchronous/Extensions/Async+HydraAsync.swift"; sourceTree = "<group>"; };
09A3815B733DEEBA88E2F5B7D8936D93 /* Dispatch+BrightFutures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Dispatch+BrightFutures.swift"; path = "Sources/BrightFutures/Dispatch+BrightFutures.swift"; sourceTree = "<group>"; };
09D7336F52231A076324FBB14E6805FB /* Promise+Catch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Catch.swift"; path = "Sources/Hydra/Promise+Catch.swift"; sourceTree = "<group>"; };
09DF8FAFCCD3687537C3134C75066862 /* Result.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Result.xcconfig; sourceTree = "<group>"; };
09DFA927BF7E5C9ECADEA44CB6877B47 /* VirtualTimeScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeScheduler.swift; path = RxSwift/Schedulers/VirtualTimeScheduler.swift; sourceTree = "<group>"; };
09EAB3DFA2B9E95B62FC874DCCE98A35 /* Timer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timer.swift; path = RxSwift/Observables/Timer.swift; sourceTree = "<group>"; };
0A2F831CF4310B70D8C85829C57ED095 /* Repeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Repeat.swift; path = RxSwift/Observables/Repeat.swift; sourceTree = "<group>"; };
0B246E0CC92F31920F72EB0F36135706 /* Asynchronous.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Asynchronous.modulemap; sourceTree = "<group>"; };
0B76D9C8AABA4F2F6D51927DD63E27A0 /* ObservableType+PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+PrimitiveSequence.swift"; path = "RxSwift/Traits/ObservableType+PrimitiveSequence.swift"; sourceTree = "<group>"; };
0CD2F2168E94127527EE142439037B66 /* Concat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concat.swift; path = RxSwift/Observables/Concat.swift; sourceTree = "<group>"; };
0EE129DA70CA1D602BE8FA4038A7AAE2 /* Promises-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Promises-prefix.pch"; sourceTree = "<group>"; };
107C6F7AA18FA507EC33AD4A368E5BC8 /* Timeout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeout.swift; path = RxSwift/Observables/Timeout.swift; sourceTree = "<group>"; };
108BB4A6B9D5FEC117D67E31D2E469E5 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = "<group>"; };
10973863EB924C6C51AAD354C51BFDE3 /* Producer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Producer.swift; path = RxSwift/Observables/Producer.swift; sourceTree = "<group>"; };
1100C5F91E13955373F8C922A5158DE5 /* Result-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Result-dummy.m"; sourceTree = "<group>"; };
11EF0A36E101927B780D8A611B32708C /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = RxSwift/Errors.swift; sourceTree = "<group>"; };
11F59B41F0C3C82C4A247A4A82922978 /* CombineLatest+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+Collection.swift"; path = "RxSwift/Observables/CombineLatest+Collection.swift"; sourceTree = "<group>"; };
1266DAC25F9CBA3B7C5910E68822D925 /* AsyncType+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AsyncType+Debug.swift"; path = "Sources/BrightFutures/AsyncType+Debug.swift"; sourceTree = "<group>"; };
13093765277C7F06721610B8A04CFE50 /* HistoricalScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalScheduler.swift; path = RxSwift/Schedulers/HistoricalScheduler.swift; sourceTree = "<group>"; };
14FBC4D34AFAA36EA708113A3934512A /* after.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = after.swift; path = Sources/after.swift; sourceTree = "<group>"; };
1572F5D5999D12463AAD7BBF13A95652 /* Pods-Asynchronous_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Asynchronous_Example-frameworks.sh"; sourceTree = "<group>"; };
17758DD69298D61F8365EFF1473EA613 /* SchedulerServices+Emulation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SchedulerServices+Emulation.swift"; path = "RxSwift/Schedulers/SchedulerServices+Emulation.swift"; sourceTree = "<group>"; };
17FA23EE8E821276279DE5162D379CB7 /* DisposeBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBase.swift; path = RxSwift/Disposables/DisposeBase.swift; sourceTree = "<group>"; };
184BF921965847D7A70490CBCC6D4FED /* MutableAsyncType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MutableAsyncType.swift; path = Sources/BrightFutures/MutableAsyncType.swift; sourceTree = "<group>"; };
1A34669CEF03DD4D4A76A064BC8A1F16 /* BrightFutures.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BrightFutures.xcconfig; sourceTree = "<group>"; };
1ABDEEB6A11E3146E026E91746453A8E /* RxSwift.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwift.xcconfig; sourceTree = "<group>"; };
1B458516A231D83CA70297CBC15266E4 /* HydraAsync.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = HydraAsync.xcconfig; sourceTree = "<group>"; };
1B5E4BC180D67AA78E47EA135550EE05 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
1BB5C5423F809EB0921558F63AEF52EE /* URITemplate.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = URITemplate.framework; sourceTree = BUILT_PRODUCTS_DIR; };
1C00CC911FF4064AA3014580C355AC67 /* Pods_Asynchronous_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_Asynchronous_Tests.framework; path = "Pods-Asynchronous_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
1C70E9E3395602E15E7C6AEE19DBD345 /* PromiseState.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PromiseState.swift; path = Source/PromiseState.swift; sourceTree = "<group>"; };
1C818195227DE8ACDC2AC265AC8F6CA1 /* BinaryDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BinaryDisposable.swift; path = RxSwift/Disposables/BinaryDisposable.swift; sourceTree = "<group>"; };
1C95984CB54719CF7F724A85C15AE008 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
1D485798220713963E55A645AD6976A0 /* URITemplate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URITemplate.swift; path = Sources/URITemplate.swift; sourceTree = "<group>"; };
1DA6243EA6C6D47A152E28036D5D77E4 /* NSNotificationCenter+AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSNotificationCenter+AnyPromise.m"; path = "Extensions/Foundation/Sources/NSNotificationCenter+AnyPromise.m"; sourceTree = "<group>"; };
1E8243F2799AD6112E5FB32C2C873C4F /* PublishSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublishSubject.swift; path = RxSwift/Subjects/PublishSubject.swift; sourceTree = "<group>"; };
1FC0D0A34E653D65F3D077F4160EC3F1 /* Promise+Chain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Chain.swift"; path = "Source/Promise+Chain.swift"; sourceTree = "<group>"; };
2187126568BE180FD9081816E6F5D45C /* then.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = then.framework; path = thenPromise.framework; sourceTree = BUILT_PRODUCTS_DIR; };
222EE7BB1BA82D7C645E1E2776EB5676 /* ConcurrentMainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentMainScheduler.swift; path = RxSwift/Schedulers/ConcurrentMainScheduler.swift; sourceTree = "<group>"; };
242C2A79F22B6DC276EF0F6FAF71DC02 /* Single.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Single.swift; path = RxSwift/Traits/Single.swift; sourceTree = "<group>"; };
24C681ECC8CA8292771694BE22F69D49 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
251211A5A73F4E15E172FD1AC7B038C7 /* ImmediateSchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImmediateSchedulerType.swift; path = RxSwift/ImmediateSchedulerType.swift; sourceTree = "<group>"; };
254AED9FDCBCFCDD4D2F16B4553E8123 /* DelaySubscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelaySubscription.swift; path = RxSwift/Observables/DelaySubscription.swift; sourceTree = "<group>"; };
25EB57A41BB850F98BFD497E522EB41D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
26B136984452D6B46E211B485D39004B /* NSTask+AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSTask+AnyPromise.m"; path = "Extensions/Foundation/Sources/NSTask+AnyPromise.m"; sourceTree = "<group>"; };
273E969C5CCF927B609E0E8FC8C638CC /* Context.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Context.swift; path = Sources/Hydra/Context.swift; sourceTree = "<group>"; };
277746472FEEB619CEA51BFB27EEEE45 /* Pods-Asynchronous_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-Asynchronous_Tests.modulemap"; sourceTree = "<group>"; };
2786874B0DA8E50BA66B982A9D0EE158 /* Promise+AnyPromise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+AnyPromise.swift"; path = "Sources/Promise+AnyPromise.swift"; sourceTree = "<group>"; };
27D7A3C19AC460D9D57C60F0E7801B10 /* Pods_Asynchronous_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_Asynchronous_Example.framework; path = "Pods-Asynchronous_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; };
27FE4D67A6E04DE7D590C68B883B8123 /* AddRef.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AddRef.swift; path = RxSwift/Observables/AddRef.swift; sourceTree = "<group>"; };
283E65EE91CA17ABB92A250AF88E123F /* Timeline.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeline.swift; path = Source/Timeline.swift; sourceTree = "<group>"; };
296D81408C8523F931702F41076CA9B0 /* ResultProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResultProtocol.swift; path = Result/ResultProtocol.swift; sourceTree = "<group>"; };
2A5340658EDB298A8B764312C53F546C /* SynchronizedDisposeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedDisposeType.swift; path = RxSwift/Concurrency/SynchronizedDisposeType.swift; sourceTree = "<group>"; };
2A7F8772FDE6EFB2B4A2506791BCB22B /* Pods-Asynchronous_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Asynchronous_Example.debug.xcconfig"; sourceTree = "<group>"; };
2B05204170AA011F3FE975F97C9BF0DE /* SkipUntil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipUntil.swift; path = RxSwift/Observables/SkipUntil.swift; sourceTree = "<group>"; };
2B90CC7B226A85E3D6D2644A9C4AD717 /* Promise+Observer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Observer.swift"; path = "Sources/Hydra/Promise+Observer.swift"; sourceTree = "<group>"; };
2BECB581C8AFD704F8002256390BED47 /* PromiseBlocks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PromiseBlocks.swift; path = Source/PromiseBlocks.swift; sourceTree = "<group>"; };
2C33EC8F32E7DEB8E493C74C76F9B475 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = "<group>"; };
2D0181EA9279E00DCD096B8F4151335E /* URITemplate-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "URITemplate-dummy.m"; sourceTree = "<group>"; };
2DC7F5028F2E43D3A3D393C074C48DCF /* Pods-Asynchronous_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Asynchronous_Tests-umbrella.h"; sourceTree = "<group>"; };
2EA0BFBCD62AE9325FD40730A7D62140 /* VoidPromise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VoidPromise.swift; path = Source/VoidPromise.swift; sourceTree = "<group>"; };
2EC43B05D23DA731BFC367E8865C4ACC /* Future.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Future.swift; path = Sources/BrightFutures/Future.swift; sourceTree = "<group>"; };
2EDA66F4497287794F5D41EA28886F47 /* Optional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Optional.swift; path = RxSwift/Observables/Optional.swift; sourceTree = "<group>"; };
2FA199634E2E4A0E6936D3F973BC925F /* State.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = State.swift; path = Sources/State.swift; sourceTree = "<group>"; };
2FDCB3583CBFE5467454ADC23B1AA78A /* PromiseError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PromiseError.swift; path = Source/PromiseError.swift; sourceTree = "<group>"; };
3054692037B2839D3CCA87307B63CF2D /* Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Promise.swift; path = Source/Promise.swift; sourceTree = "<group>"; };
313B1E6A64D3D4E6931455E1A31EA3FE /* UIViewController+AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+AnyPromise.m"; path = "Extensions/UIKit/Sources/UIViewController+AnyPromise.m"; sourceTree = "<group>"; };
31B6D54CBB97BEDC1F7CB2FE2737B2C7 /* PMKFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PMKFoundation.h; path = Extensions/Foundation/Sources/PMKFoundation.h; sourceTree = "<group>"; };
32F3DF3C5C6782886D335C343412ED7D /* BooleanDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BooleanDisposable.swift; path = RxSwift/Disposables/BooleanDisposable.swift; sourceTree = "<group>"; };
3368E343FF599ECD1020391FDE45BD80 /* PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrimitiveSequence.swift; path = RxSwift/Traits/PrimitiveSequence.swift; sourceTree = "<group>"; };
368160C0AA6067FDB7A75C9A92B0EB9D /* Enumerated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Enumerated.swift; path = RxSwift/Observables/Enumerated.swift; sourceTree = "<group>"; };
375A02C27ADA9AEA92C722DD2E00B129 /* Completable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Completable.swift; path = RxSwift/Traits/Completable.swift; sourceTree = "<group>"; };
378588AE87D658374CD1C4A601370765 /* join.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = join.swift; path = Sources/join.swift; sourceTree = "<group>"; };
379453C4ED14066D0554C86BE6060183 /* Promises-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Promises-dummy.m"; sourceTree = "<group>"; };
37DE080FFCB59ABC83BF022EEBD74B88 /* RxSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxSwift-dummy.m"; sourceTree = "<group>"; };
389B934AE093D963A4DCD2656EF73449 /* dispatch_promise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = dispatch_promise.m; path = Sources/dispatch_promise.m; sourceTree = "<group>"; };
39220832D6F59A6EB06C245B636237F0 /* thenPromise.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = thenPromise.modulemap; sourceTree = "<group>"; };
39737392F75EB238406D81946B7DB767 /* First.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = First.swift; path = RxSwift/Observables/First.swift; sourceTree = "<group>"; };
3975F82C3E3A33EC09AD878A83F5A1C2 /* Sample.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sample.swift; path = RxSwift/Observables/Sample.swift; sourceTree = "<group>"; };
3A11F4F47B4DB3858A2A44A97F4624F0 /* Promise+Reduce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Reduce.swift"; path = "Sources/Hydra/Promise+Reduce.swift"; sourceTree = "<group>"; };
3A342480A0D67EC00153EFB6EB30AC55 /* Range.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Range.swift; path = RxSwift/Observables/Range.swift; sourceTree = "<group>"; };
3A3798188F5C288425C10008E804C998 /* Zalgo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Zalgo.swift; path = Sources/Zalgo.swift; sourceTree = "<group>"; };
3A507F74BED59264DE4B6973DFDDEFD0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
3A5708A84B5F34A6414629FE291F8E8C /* Delay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delay.swift; path = RxSwift/Observables/Delay.swift; sourceTree = "<group>"; };
3A96F96761B1CD50D0A68C3FE48DFA56 /* race.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = race.swift; path = Sources/race.swift; sourceTree = "<group>"; };
3B6ED121F9C881FE034EDDE6D51282B6 /* Result-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Result-umbrella.h"; sourceTree = "<group>"; };
3C8E8935F40AF1DF9BA1C6A8B6A463ED /* PMKUIKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PMKUIKit.h; path = Extensions/UIKit/Sources/PMKUIKit.h; sourceTree = "<group>"; };
3C9B99C271AFC6FC89A553B17A5934B5 /* Promise+Any.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Any.swift"; path = "Sources/Hydra/Promise+Any.swift"; sourceTree = "<group>"; };
3CE01AC1DCEDECAA24566856DFD77F7C /* ObserverBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverBase.swift; path = RxSwift/Observers/ObserverBase.swift; sourceTree = "<group>"; };
3DE588E00E682F6E2590C9563AAF94E4 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = "<group>"; };
3EC8B0C786D8BBAC6D55E4E619BDADDD /* Promise+Pass.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Pass.swift"; path = "Sources/Hydra/Promise+Pass.swift"; sourceTree = "<group>"; };
3F48F80417A5C0747EEA7E0D8CEC9496 /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = "<group>"; };
405C7E16BD3661389E459BF735449EDA /* Promise+Recover.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Recover.swift"; path = "Sources/Hydra/Promise+Recover.swift"; sourceTree = "<group>"; };
4085711B247DBD19F6A724643610C26F /* hang.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = hang.m; path = Sources/hang.m; sourceTree = "<group>"; };
4118362F01BF68ECCBABDE34D89E3E5C /* DefaultIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultIfEmpty.swift; path = RxSwift/Observables/DefaultIfEmpty.swift; sourceTree = "<group>"; };
41AF58DB02DA96C8E0FCCACDC8AAC854 /* TailRecursiveSink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TailRecursiveSink.swift; path = RxSwift/Observers/TailRecursiveSink.swift; sourceTree = "<group>"; };
4247BC0CBC0FD3B3026F2E55813BB804 /* Builders.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Builders.swift; path = Sources/Mockingjay/Builders.swift; sourceTree = "<group>"; };
4294E67690670D66AEF22C8364DB25F1 /* DisposeBag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBag.swift; path = RxSwift/Disposables/DisposeBag.swift; sourceTree = "<group>"; };
437FB61F5536D5967D9238751DC6DC36 /* then.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = then.framework; sourceTree = BUILT_PRODUCTS_DIR; };
449916228C17A8C4D69878208035FDE7 /* PromiseKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = PromiseKit.modulemap; sourceTree = "<group>"; };
451719BA0ACDF3DB6F2E06E74FCE577F /* Promise+Cancel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Cancel.swift"; path = "Sources/Hydra/Promise+Cancel.swift"; sourceTree = "<group>"; };
485BEA647171BBA7A149CE8AC9145290 /* CompositeDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositeDisposable.swift; path = RxSwift/Disposables/CompositeDisposable.swift; sourceTree = "<group>"; };
49420E791845B21B68BF56B9456210AE /* Pods-Asynchronous_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = "Pods-Asynchronous_Example.modulemap"; sourceTree = "<group>"; };
49F6BA1305CDF6EA39B7F6267C6106D9 /* ConcurrentDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentDispatchQueueScheduler.swift; path = RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift; sourceTree = "<group>"; };
4A0D5A5ADD2501C1EC5EA92878513125 /* ShareReplayScope.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShareReplayScope.swift; path = RxSwift/Observables/ShareReplayScope.swift; sourceTree = "<group>"; };
4B5C18516B974139D288C182950CB3F6 /* Promise+Retry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Retry.swift"; path = "Sources/Hydra/Promise+Retry.swift"; sourceTree = "<group>"; };
4BF8C53E635310A6F83D96409F5BA1BC /* Mockingjay-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Mockingjay-umbrella.h"; sourceTree = "<group>"; };
4BFB5C2784178DDDFDB468AC505F1FAA /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = "<group>"; };
4DBFD9EBF90B2B8A4B2993E28EDF345A /* Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Create.swift; path = RxSwift/Observables/Create.swift; sourceTree = "<group>"; };
4E72E17361B29723B468DB71822F2DE6 /* Alamofire.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.xcconfig; sourceTree = "<group>"; };
4EBC82A2A0065CB5C9DD9E2B1D03061F /* Using.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Using.swift; path = RxSwift/Observables/Using.swift; sourceTree = "<group>"; };
509809E83768F8E191D44DAA5551C827 /* URITemplate-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "URITemplate-prefix.pch"; sourceTree = "<group>"; };
512954B19A43C0000C4AD03C2F561F64 /* Promise+Zip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Zip.swift"; path = "Sources/Hydra/Promise+Zip.swift"; sourceTree = "<group>"; };
513EDC42059C966ADB46A0B2FEFF8063 /* HydraAsync-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "HydraAsync-umbrella.h"; sourceTree = "<group>"; };
51A097421834DEB6994A17D582ED6C80 /* Switch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Switch.swift; path = RxSwift/Observables/Switch.swift; sourceTree = "<group>"; };
5229C944FBACA453E7B25165EE5FDD63 /* Deferred.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Deferred.swift; path = RxSwift/Observables/Deferred.swift; sourceTree = "<group>"; };
53613B853B245DAFD25B244C5B64BA68 /* ObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableType.swift; path = RxSwift/ObservableType.swift; sourceTree = "<group>"; };
53986AF8B6CBF88F1412F2DBA7A566DD /* Promise+nil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+nil.swift"; path = "Source/Promise+nil.swift"; sourceTree = "<group>"; };
53A5658C7672A5DEA3C372F0C8D8A7F5 /* InvocableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableType.swift; path = RxSwift/Schedulers/Internal/InvocableType.swift; sourceTree = "<group>"; };
54602C1D4B58AB647CB10108B6FAD868 /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = "<group>"; };
547859C925D4B5E5D7725CF51912E56B /* Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Promise.swift; path = Promise/Promise.swift; sourceTree = "<group>"; };
548FEA58F23AA7EFE299E41727FC2C8F /* Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Map.swift; path = RxSwift/Observables/Map.swift; sourceTree = "<group>"; };
54A76B1D9FAD4D6E81605A41A37843A1 /* Multicast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Multicast.swift; path = RxSwift/Observables/Multicast.swift; sourceTree = "<group>"; };
551EA00B40F43D867237D8289CAC51F1 /* CALayer+AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+AnyPromise.m"; path = "Extensions/QuartzCore/Sources/CALayer+AnyPromise.m"; sourceTree = "<group>"; };
56E22A929DD3D2B6DF427000E45AC9E5 /* Promise+Then.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Then.swift"; path = "Source/Promise+Then.swift"; sourceTree = "<group>"; };
571BC3D16CCD20AB662E1B8852EA7D01 /* ConnectableObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectableObservableType.swift; path = RxSwift/ConnectableObservableType.swift; sourceTree = "<group>"; };
57D5157B376B95BAB39C37273EA6C08C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
5859D03A6C27F1055AF932174C4AA054 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = "<group>"; };
5A6E63A003A11C67E493D3E503D7E6C1 /* SubscribeOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscribeOn.swift; path = RxSwift/Observables/SubscribeOn.swift; sourceTree = "<group>"; };
5AB544927B2A7AD406B8DEC2FEE69866 /* Promises.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Promises.xcconfig; sourceTree = "<group>"; };
5AC6AE3E827812DCFDD25B3BA4777A97 /* PMKQuartzCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PMKQuartzCore.h; path = Extensions/QuartzCore/Sources/PMKQuartzCore.h; sourceTree = "<group>"; };
5ADAB6E73CD935E479CCBCEE07259A1E /* after.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = after.m; path = Sources/after.m; sourceTree = "<group>"; };
5B4651448DB79E2B471DD6D29924A8C1 /* CombineLatest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombineLatest.swift; path = RxSwift/Observables/CombineLatest.swift; sourceTree = "<group>"; };
5B81D5614103C4AABD020D94FE548222 /* RxSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = RxSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5BBEA888309FE5448E53E19494B9DAFB /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
5C48F7B4B09BC987719F4D6E03914B38 /* RetryWhen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryWhen.swift; path = RxSwift/Observables/RetryWhen.swift; sourceTree = "<group>"; };
5CEA34D270BF2D1511B4D0DDEF4481BA /* Reduce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reduce.swift; path = RxSwift/Observables/Reduce.swift; sourceTree = "<group>"; };
5DB16E78A4F39122306ECD2345966D4D /* AsyncType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncType.swift; path = Sources/BrightFutures/AsyncType.swift; sourceTree = "<group>"; };
5DB51846FC3AB808D812183753ADDECB /* Result.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Result.modulemap; sourceTree = "<group>"; };
5DDC10A5BB8B31129860BA6CCED54A53 /* URITemplate-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "URITemplate-umbrella.h"; sourceTree = "<group>"; };
5EACCC2667155FD87158E9CAECA45473 /* ScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItem.swift; path = RxSwift/Schedulers/Internal/ScheduledItem.swift; sourceTree = "<group>"; };
5F5FB0F6D40F652DD318D7F5552779FD /* URITemplate.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = URITemplate.framework; path = URITemplate.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5FBDF44B4593B5288B124DD67CE7526B /* MockingjayURLSessionConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MockingjayURLSessionConfiguration.m; path = Sources/Mockingjay/MockingjayURLSessionConfiguration.m; sourceTree = "<group>"; };
5FE63F1CE3BAA6A992B45C7CB24351D0 /* BrightFutures.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BrightFutures.framework; sourceTree = BUILT_PRODUCTS_DIR; };
603DDC13078B39D5192212567D226C26 /* Promise+First.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+First.swift"; path = "Source/Promise+First.swift"; sourceTree = "<group>"; };
60BF66C847364D5384455E4D3FE8D983 /* UIViewController+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+Promise.swift"; path = "Extensions/UIKit/Sources/UIViewController+Promise.swift"; sourceTree = "<group>"; };
60C87CB657B96FB24AA96C71D4F0DE3D /* Observable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Observable.swift; path = RxSwift/Observable.swift; sourceTree = "<group>"; };
60DCFC35B3E918EDBF7C25D341F9AA88 /* Completable+AndThen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Completable+AndThen.swift"; path = "RxSwift/Traits/Completable+AndThen.swift"; sourceTree = "<group>"; };
619BA80D47D6439C5CECCECCF5B235B1 /* Amb.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Amb.swift; path = RxSwift/Observables/Amb.swift; sourceTree = "<group>"; };
61AF6F7C8CEC6C853EB1DCB9C42285F6 /* Promise+Zip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Zip.swift"; path = "Source/Promise+Zip.swift"; sourceTree = "<group>"; };
6288F933ADC7A1BA626BFDACD945AFF7 /* Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Async.swift; path = Asynchronous/Core/Async.swift; sourceTree = "<group>"; };
628CEDD2411A866F4810A418EE388DA4 /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = "<group>"; };
629780C6B6EE2FEDCE105FE0879C2069 /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = "<group>"; };
62B327215CE8C8C1ED41442FD4AD1E8E /* AsyncError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncError.swift; path = Asynchronous/Core/AsyncError.swift; sourceTree = "<group>"; };
642DCFD79334B83816BD8E2555F85BEF /* Pods-Asynchronous_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Asynchronous_Example-dummy.m"; sourceTree = "<group>"; };
64807BCFB1A0EA3EFD254F58F4EBF8DC /* LockOwnerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LockOwnerType.swift; path = RxSwift/Concurrency/LockOwnerType.swift; sourceTree = "<group>"; };
64A1DF99205ECF3839900D050AF1415F /* Alamofire+Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Alamofire+Async.swift"; path = "Asynchronous/Extensions/Alamofire+Async.swift"; sourceTree = "<group>"; };
65143693308B2C00569518ABF0808722 /* Promise+Race.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Race.swift"; path = "Source/Promise+Race.swift"; sourceTree = "<group>"; };
6648DE9086569070A493E08C51B42B73 /* Pods-Asynchronous_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Asynchronous_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
678588A49CC525663CBC30A9774E7049 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
6799B63AF7B5C572D95306D9C9F21901 /* CALayer+AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+AnyPromise.h"; path = "Extensions/QuartzCore/Sources/CALayer+AnyPromise.h"; sourceTree = "<group>"; };
687582730503176884F84D609742F7A8 /* Promise+State.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+State.swift"; path = "Sources/Hydra/Promise+State.swift"; sourceTree = "<group>"; };
6A2C1841E4F693811D423AD190B68C61 /* UIView+AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+AnyPromise.h"; path = "Extensions/UIKit/Sources/UIView+AnyPromise.h"; sourceTree = "<group>"; };
6A47B7017D452512129ABFD9101248AE /* String+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+Rx.swift"; path = "RxSwift/Extensions/String+Rx.swift"; sourceTree = "<group>"; };
6AC51EE811ED6FE8F3C3A42ACBBC753E /* Bag+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bag+Rx.swift"; path = "RxSwift/Extensions/Bag+Rx.swift"; sourceTree = "<group>"; };
6B84DFCE8661123B25509DBE8B3D0282 /* Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Promise.swift; path = Sources/BrightFutures/Promise.swift; sourceTree = "<group>"; };
6CB7F8CB4F8A5AD9A749E6C8D5873137 /* DispatchTimerWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DispatchTimerWrapper.swift; path = Sources/Hydra/DispatchTimerWrapper.swift; sourceTree = "<group>"; };
6D14FFDAA4AB7747CAA1E733A6C2E9C9 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
6D6719C7DEB622FE092E10CBEDB644FD /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Source/Result.swift; sourceTree = "<group>"; };
6D8B73D890E12029727BEF5132412FAD /* Promise+Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Async.swift"; path = "Sources/Hydra/Promise+Async.swift"; sourceTree = "<group>"; };
6DB62FB09AE9D4721E2399FAE491AFFB /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
6EDB06F72E2CF95ED6DFA65BD0E86BB0 /* Hydra.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Hydra.framework; sourceTree = BUILT_PRODUCTS_DIR; };
6F216F91400C169E5B9504F151FCF5D1 /* GroupBy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupBy.swift; path = RxSwift/Observables/GroupBy.swift; sourceTree = "<group>"; };
6F6CB821E02D4A9FB455B5B861931ACB /* GroupedObservable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupedObservable.swift; path = RxSwift/GroupedObservable.swift; sourceTree = "<group>"; };
6FAE34DA40D4345F27A609455A623200 /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = "<group>"; };
7012AC2F2FBB984F3C49832CDF1E411F /* ToArray.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToArray.swift; path = RxSwift/Observables/ToArray.swift; sourceTree = "<group>"; };
707B5918127F6D4662D7B139A876B153 /* RecursiveScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveScheduler.swift; path = RxSwift/Schedulers/RecursiveScheduler.swift; sourceTree = "<group>"; };
709C5136D6976466BFCA2BB0D938F273 /* ServerTrustPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustPolicy.swift; path = Source/ServerTrustPolicy.swift; sourceTree = "<group>"; };
71792C0352B4EF5953EDD435798EF98F /* PrimitiveSequence+Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PrimitiveSequence+Zip+arity.swift"; path = "RxSwift/Traits/PrimitiveSequence+Zip+arity.swift"; sourceTree = "<group>"; };
718DA6F266BA745E8EA3E0C3085C4692 /* Pods-Asynchronous_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Asynchronous_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
726FE0FAB7CB119623309203CB497146 /* GlobalState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GlobalState.m; path = Sources/GlobalState.m; sourceTree = "<group>"; };
732741C88716057AED4EADEFB028A940 /* Never.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Never.swift; path = RxSwift/Observables/Never.swift; sourceTree = "<group>"; };
735D6BEBB4EC9B3C38A00B14027DA048 /* Throttle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Throttle.swift; path = RxSwift/Observables/Throttle.swift; sourceTree = "<group>"; };
736F5C6E043C306D1F982FF32F600E8E /* HydraAsync-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "HydraAsync-prefix.pch"; sourceTree = "<group>"; };
746B9C56761117BDA4555833DC89CD6E /* Promise+Then.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Then.swift"; path = "Sources/Hydra/Promise+Then.swift"; sourceTree = "<group>"; };
752C382C49950574B9837224AAC9A084 /* Mockingjay.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Mockingjay.xcconfig; sourceTree = "<group>"; };
755B2CF948EA2BFAA930D78963C6CDC3 /* Disposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposable.swift; path = RxSwift/Disposable.swift; sourceTree = "<group>"; };
7682655B2E293981985CA683F98DCA51 /* HydraAsync-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "HydraAsync-dummy.m"; sourceTree = "<group>"; };
774313D3B7095F97FFB4FEEDD2347232 /* Promise+Extras.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Extras.swift"; path = "Promise/Promise+Extras.swift"; sourceTree = "<group>"; };
775E94E94E17A6A878F65D7D6539694A /* SubjectType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubjectType.swift; path = RxSwift/Subjects/SubjectType.swift; sourceTree = "<group>"; };
77946A5D4B95FDC64B865B39098E621F /* PromiseKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromiseKit-umbrella.h"; sourceTree = "<group>"; };
7ABFC1178A03BB6FE639A7BB4E932C26 /* URLDataPromise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLDataPromise.swift; path = Extensions/Foundation/Sources/URLDataPromise.swift; sourceTree = "<group>"; };
7C1A5B3D9C91DED1AC6B1E0C9038594C /* Mockingjay.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Mockingjay.framework; path = Mockingjay.framework; sourceTree = BUILT_PRODUCTS_DIR; };
7CBD041B8FA9209CCC71C655A52DFBAE /* Mockingjay-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Mockingjay-prefix.pch"; sourceTree = "<group>"; };
7CDBE4AC181A0FD3964AD0A53B650F68 /* DispatchQueueConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DispatchQueueConfiguration.swift; path = RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift; sourceTree = "<group>"; };
7D30CA5F9F8FDF5B0E87A021B6884721 /* Promise+NoMatterWhat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+NoMatterWhat.swift"; path = "Source/Promise+NoMatterWhat.swift"; sourceTree = "<group>"; };
7DBC9A277ED09F2ACAD42B5065B8906F /* CurrentThreadScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurrentThreadScheduler.swift; path = RxSwift/Schedulers/CurrentThreadScheduler.swift; sourceTree = "<group>"; };
7E182F139D935EE241B1C73396BBA682 /* WithLatestFrom.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WithLatestFrom.swift; path = RxSwift/Observables/WithLatestFrom.swift; sourceTree = "<group>"; };
7E858362099AAFEB55C4175E5A0B5753 /* SessionManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionManager.swift; path = Source/SessionManager.swift; sourceTree = "<group>"; };
7E9D1769223EE42CA7B9A13EC4DD6CB9 /* Promise+Always.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Always.swift"; path = "Sources/Hydra/Promise+Always.swift"; sourceTree = "<group>"; };
7EDE473670D05A70A7F321F84FEC9D75 /* PMKAlertController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PMKAlertController.swift; path = Extensions/UIKit/Sources/PMKAlertController.swift; sourceTree = "<group>"; };
7F674B9EB765CF96C58DCA6C324D7516 /* thenPromise-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "thenPromise-umbrella.h"; sourceTree = "<group>"; };
80A185BF0039C8099A8426BCB99A96DC /* SingleAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAsync.swift; path = RxSwift/Observables/SingleAsync.swift; sourceTree = "<group>"; };
81F5050D6BA5B0A8EB5C452F03588145 /* OperationQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OperationQueueScheduler.swift; path = RxSwift/Schedulers/OperationQueueScheduler.swift; sourceTree = "<group>"; };
831A91AF81A261448F80083A4F5CB3ED /* Materialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Materialize.swift; path = RxSwift/Observables/Materialize.swift; sourceTree = "<group>"; };
83A7B690D69F5FA19D652016F5D0DF03 /* SchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SchedulerType.swift; path = RxSwift/SchedulerType.swift; sourceTree = "<group>"; };
83CC66DB94A26C6F651DBDFEFBE205BA /* AsSingle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsSingle.swift; path = RxSwift/Observables/AsSingle.swift; sourceTree = "<group>"; };
840790CC2CE8F76BBA0A57A458864061 /* NSNotificationCenter+AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSNotificationCenter+AnyPromise.h"; path = "Extensions/Foundation/Sources/NSNotificationCenter+AnyPromise.h"; sourceTree = "<group>"; };
851675E7100335271D143C201DE50300 /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = "<group>"; };
852FDFB7E1EABBB72204EC90462C03D6 /* Empty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Empty.swift; path = RxSwift/Observables/Empty.swift; sourceTree = "<group>"; };
861A71007BE6C275A9143A42DA034468 /* Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Async.swift; path = Sources/BrightFutures/Async.swift; sourceTree = "<group>"; };
893B936E5EFAE0B5C64C7DC85E7FFB72 /* Generate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Generate.swift; path = RxSwift/Observables/Generate.swift; sourceTree = "<group>"; };
89F274E9127CB55A58414383D85DA028 /* BehaviorSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorSubject.swift; path = RxSwift/Subjects/BehaviorSubject.swift; sourceTree = "<group>"; };
8A52819AEFC02C2E23FEDE634C0D18D1 /* UIView+AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+AnyPromise.m"; path = "Extensions/UIKit/Sources/UIView+AnyPromise.m"; sourceTree = "<group>"; };
8AA18E580320071830164EDFCE77952D /* Pods-Asynchronous_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Asynchronous_Tests-frameworks.sh"; sourceTree = "<group>"; };
8C20DE05CA7A31B5789E3F1C31951083 /* Window.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Window.swift; path = RxSwift/Observables/Window.swift; sourceTree = "<group>"; };
8C5082C2E2A364FBD167F75446F1771B /* SkipWhile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipWhile.swift; path = RxSwift/Observables/SkipWhile.swift; sourceTree = "<group>"; };
8C762AD032367EF97CB3D59C86A3AC03 /* PromiseKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = PromiseKit.framework; path = PromiseKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
8CA2F641532561BAB8A6C052307F2436 /* DistinctUntilChanged.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DistinctUntilChanged.swift; path = RxSwift/Observables/DistinctUntilChanged.swift; sourceTree = "<group>"; };
8DEF80C2F16287A7EBF1221E603477E9 /* DeprecationWarner.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DeprecationWarner.swift; path = Platform/DeprecationWarner.swift; sourceTree = "<group>"; };
8E6AF1DDCCCAAEA540C3A0157EA31719 /* Dematerialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Dematerialize.swift; path = RxSwift/Observables/Dematerialize.swift; sourceTree = "<group>"; };
8F81E9D8C2D0BCAB51D2C8656BD2EDD0 /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/AFError.swift; sourceTree = "<group>"; };
9022DDE184F37A2D6E940B9245DCBEB0 /* Asynchronous-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Asynchronous-prefix.pch"; sourceTree = "<group>"; };
9056243E13EA3665B2CBA00361321384 /* Promise+Timeout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Timeout.swift"; path = "Source/Promise+Timeout.swift"; sourceTree = "<group>"; };
9095B1375CB1A13B317A19D4AA5BB4DB /* Asynchronous-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Asynchronous-dummy.m"; sourceTree = "<group>"; };
90F2969C2C7BB43583FBC69FCCAE48EB /* ReplaySubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplaySubject.swift; path = RxSwift/Subjects/ReplaySubject.swift; sourceTree = "<group>"; };
92524FBA1F4C22D7859AD3A98D57E4B0 /* MutableAsyncType+ResultType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MutableAsyncType+ResultType.swift"; path = "Sources/BrightFutures/MutableAsyncType+ResultType.swift"; sourceTree = "<group>"; };
92B37BEA53E8857C8235A162AF009585 /* Result-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Result-prefix.pch"; sourceTree = "<group>"; };
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
94257353E23CA259172BDC2CBD520121 /* RxSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = RxSwift.modulemap; sourceTree = "<group>"; };
943B50D4EED62B6BD7AF489B71720176 /* BrightFutures-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BrightFutures-umbrella.h"; sourceTree = "<group>"; };
949374328B80EFBF283CAFD82196BE45 /* Pods-Asynchronous_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Asynchronous_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
94D9713D2C5CA6B8B1DFE2ECAFF6BF21 /* TakeUntil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeUntil.swift; path = RxSwift/Observables/TakeUntil.swift; sourceTree = "<group>"; };
952B08ED915AA400E2D6C79D159FD7BB /* ObservableConvertibleType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableConvertibleType.swift; path = RxSwift/ObservableConvertibleType.swift; sourceTree = "<group>"; };
96CEB8E43BB4AE39E0C35619C3F0292D /* InvalidationToken.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvalidationToken.swift; path = Sources/BrightFutures/InvalidationToken.swift; sourceTree = "<group>"; };
9800113DC46CA1BC902F7675257C2E21 /* Result.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Result.framework; path = Result.framework; sourceTree = BUILT_PRODUCTS_DIR; };
98070D7583FC30351CEA56178734673A /* Number+BrightFutures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Number+BrightFutures.swift"; path = "Sources/BrightFutures/Number+BrightFutures.swift"; sourceTree = "<group>"; };
9893BEC94F17BBECA5A9EE4B18499940 /* RefCountDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RefCountDisposable.swift; path = RxSwift/Disposables/RefCountDisposable.swift; sourceTree = "<group>"; };
98D726CFD4B4F8444192538CD21D5BDE /* SerialDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDispatchQueueScheduler.swift; path = RxSwift/Schedulers/SerialDispatchQueueScheduler.swift; sourceTree = "<group>"; };
98F8121B3456A8F91E56D0B9CA9315C5 /* WhenAll.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WhenAll.swift; path = Source/WhenAll.swift; sourceTree = "<group>"; };
9AE2E3394301C50FC1C4C79766848F6B /* Hydra.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Hydra.framework; path = HydraAsync.framework; sourceTree = BUILT_PRODUCTS_DIR; };
9B412F4E0A339D518A521C210142BE85 /* Process+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Process+Promise.swift"; path = "Extensions/Foundation/Sources/Process+Promise.swift"; sourceTree = "<group>"; };
9C4C18CC38B3F0B70F1346DD76A60FF0 /* Promise.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Promise.framework; sourceTree = BUILT_PRODUCTS_DIR; };
9E5514FFC262B98A7D0B488ECD9F29F6 /* UIView+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Promise.swift"; path = "Extensions/UIKit/Sources/UIView+Promise.swift"; sourceTree = "<group>"; };
9F6F7D8F4411D932D02B14E84A23D091 /* AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AnyPromise.m; path = Sources/AnyPromise.m; sourceTree = "<group>"; };
A02CE118FDD7798E1D8A369D9525E13C /* SynchronizedUnsubscribeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedUnsubscribeType.swift; path = RxSwift/Concurrency/SynchronizedUnsubscribeType.swift; sourceTree = "<group>"; };
A050646BEF37C36ADF95579A1B646237 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
A0DCE52B2DBE406CE2BD083E142A80F7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
A14DEAFF963E6C29A7E99FBBB4B74531 /* AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AnyPromise.h; path = Sources/AnyPromise.h; sourceTree = "<group>"; };
A29A926B43942065924E30E451981852 /* Catch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Catch.swift; path = RxSwift/Observables/Catch.swift; sourceTree = "<group>"; };
A2CE2B9B3F8FC104C3DAED716E9F5D47 /* Reactive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reactive.swift; path = RxSwift/Reactive.swift; sourceTree = "<group>"; };
A4370C6CA9928211A6FF4DA09FF29D0B /* Scan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Scan.swift; path = RxSwift/Observables/Scan.swift; sourceTree = "<group>"; };
A4BDA249A34B08825519710F18BBBC30 /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = "<group>"; };
A4E602F6B3ACC6E791F9CC71741DDD2B /* Lock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Lock.swift; path = RxSwift/Concurrency/Lock.swift; sourceTree = "<group>"; };
A50AC2B24D9F3E3D7403AB5BF89B512C /* BrightFutures-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BrightFutures-prefix.pch"; sourceTree = "<group>"; };
A52C787F6A3D7FC67D622788EC6021F1 /* ElementAt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ElementAt.swift; path = RxSwift/Observables/ElementAt.swift; sourceTree = "<group>"; };
A569559E74C4C52CF85F9689610CC753 /* BrightFutures-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BrightFutures-dummy.m"; sourceTree = "<group>"; };
A56B6A19C4E25BB21332C7DABF45C76B /* StartWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StartWith.swift; path = RxSwift/Observables/StartWith.swift; sourceTree = "<group>"; };
A58BABB1666510F7B5C5D78725C98EFC /* Promise+Validate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Validate.swift"; path = "Sources/Hydra/Promise+Validate.swift"; sourceTree = "<group>"; };
A58F73DDAEA0514C8709C65D1D75036C /* RxMutableBox.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxMutableBox.swift; path = RxSwift/RxMutableBox.swift; sourceTree = "<group>"; };
A785A4F2AF33D8CFC3AAB88B27956416 /* RxSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-umbrella.h"; sourceTree = "<group>"; };
A82B95F519CBB4CC32D2A4C35BF575BD /* Async+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Async+Rx.swift"; path = "Asynchronous/Extensions/Async+Rx.swift"; sourceTree = "<group>"; };
A82E69963733527B40E6B31223933240 /* Matchers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Matchers.swift; path = Sources/Mockingjay/Matchers.swift; sourceTree = "<group>"; };
A9FFDEDBA2A2B7ED3D7AB42B3789F4D1 /* Cancelable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Cancelable.swift; path = RxSwift/Cancelable.swift; sourceTree = "<group>"; };
AA7A995D1534F23167375A8FDFD77FB5 /* NSURLSession+AnyPromise.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURLSession+AnyPromise.m"; path = "Extensions/Foundation/Sources/NSURLSession+AnyPromise.m"; sourceTree = "<group>"; };
AD20DC32768C0D7F5AADE9948F9F1FED /* SwitchIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwitchIfEmpty.swift; path = RxSwift/Observables/SwitchIfEmpty.swift; sourceTree = "<group>"; };
AD653CBB1931EA0D1D01510DBE9B0F5B /* ScheduledItemType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItemType.swift; path = RxSwift/Schedulers/Internal/ScheduledItemType.swift; sourceTree = "<group>"; };
ADE9938F60221BE40034E7ADD151F030 /* Asynchronous.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Asynchronous.xcconfig; sourceTree = "<group>"; };
AE7D32BFEDDEA6BC9A0CCA9231E7F25D /* NSObject+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Promise.swift"; path = "Extensions/Foundation/Sources/NSObject+Promise.swift"; sourceTree = "<group>"; };
AF41C94D0B6749FF49357FECF735F0F2 /* AsMaybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsMaybe.swift; path = RxSwift/Observables/AsMaybe.swift; sourceTree = "<group>"; };
AFDC7E2F8F54257696C94119E7C033C2 /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/DispatchQueue+Alamofire.swift"; sourceTree = "<group>"; };
AFF8E594ABE54D8C476D22F8A4878300 /* Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debug.swift; path = RxSwift/Observables/Debug.swift; sourceTree = "<group>"; };
B0BE8676620C737B483F9C0458DC8E21 /* Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Rx.swift; path = RxSwift/Rx.swift; sourceTree = "<group>"; };
B0E55EA83E2E64349FEE31AB824C4AA3 /* Asynchronous.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Asynchronous.framework; path = Asynchronous.framework; sourceTree = BUILT_PRODUCTS_DIR; };
B0E611DA791C81D8D98D0F1750D8B98B /* LightweightFuture.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LightweightFuture.swift; path = Asynchronous/Core/LightweightFuture.swift; sourceTree = "<group>"; };
B12E399B977FB477DA132F1988FE6C04 /* Buffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Buffer.swift; path = RxSwift/Observables/Buffer.swift; sourceTree = "<group>"; };
B1910BBEA969054FFBC548B95BDF505E /* Take.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Take.swift; path = RxSwift/Observables/Take.swift; sourceTree = "<group>"; };
B1F7C8DB1E0623FF2B8A91DAFC6C1178 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
B2C0A731617DBBA2FBC9F5D6949354FB /* Promise+Finally.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Finally.swift"; path = "Source/Promise+Finally.swift"; sourceTree = "<group>"; };
B2C3833291C7F4CFD066F562B8F4C87D /* AsyncLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncLock.swift; path = RxSwift/Concurrency/AsyncLock.swift; sourceTree = "<group>"; };
B2CF0FD8D33D62D8B2946F6D2B7AEEB6 /* TakeLast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeLast.swift; path = RxSwift/Observables/TakeLast.swift; sourceTree = "<group>"; };
B39CD4DE45B04CC18ABB9216C0B0AB62 /* fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fwd.h; path = Sources/fwd.h; sourceTree = "<group>"; };
B40F2D6900B537B200303A96F38D6998 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = RxSwift/Observables/Filter.swift; sourceTree = "<group>"; };
B4E8FF4723366FD31AEA97A5B6617C71 /* Pods-Asynchronous_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Asynchronous_Example-umbrella.h"; sourceTree = "<group>"; };
B5C258144D7FAAF98EEA7F22AEF1CA0E /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = RxSwift/Observables/Error.swift; sourceTree = "<group>"; };
B63A88F37E6F92C84454ADCD97B18C45 /* ExecutionContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExecutionContext.swift; path = Sources/BrightFutures/ExecutionContext.swift; sourceTree = "<group>"; };
B708D93A27A2D524EA789CB45AC8FAC2 /* Asynchronous-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Asynchronous-umbrella.h"; sourceTree = "<group>"; };
B724845261AB46097DC00031DF889F80 /* Promises-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Promises-umbrella.h"; sourceTree = "<group>"; };
B7C0688D5122376B9B3B97F1404E5C83 /* NSURLSession+AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURLSession+AnyPromise.h"; path = "Extensions/Foundation/Sources/NSURLSession+AnyPromise.h"; sourceTree = "<group>"; };
B7E75010AAAAB6E60A9D5F41526C3A74 /* ObservableType+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+Extensions.swift"; path = "RxSwift/ObservableType+Extensions.swift"; sourceTree = "<group>"; };
B82ED3FD5DD2AE76E9F90AAAFA3FAB07 /* AnyObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyObserver.swift; path = RxSwift/AnyObserver.swift; sourceTree = "<group>"; };
B8C00FDC3148C581B8038CFDE0881208 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Alamofire.framework; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; };
B8EA4880812D7DB0DD4A04B0A9DD1EC5 /* Mockingjay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Mockingjay.h; path = Sources/Mockingjay/Mockingjay.h; sourceTree = "<group>"; };
B9C68614E442CD27FE39A4A2D7F00452 /* Async+PromiseKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Async+PromiseKit.swift"; path = "Asynchronous/Extensions/Async+PromiseKit.swift"; sourceTree = "<group>"; };
BA72AF8AA8FA9295EABCC103EC90B29A /* Debounce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debounce.swift; path = RxSwift/Observables/Debounce.swift; sourceTree = "<group>"; };
BAC204BF4938A603EF0A233E99495609 /* XCTest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = XCTest.swift; path = Sources/Mockingjay/XCTest.swift; sourceTree = "<group>"; };
BB5404E52023F8DEAAB6D482FF00857D /* MainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MainScheduler.swift; path = RxSwift/Schedulers/MainScheduler.swift; sourceTree = "<group>"; };
BBB1FE7593E266E6A688B51CE68E7446 /* SwiftSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftSupport.swift; path = RxSwift/SwiftSupport/SwiftSupport.swift; sourceTree = "<group>"; };
BBF3AE4A85179FCE0ED36C5E78D968CA /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = "<group>"; };
BD741E165C04F274011BCA085C960856 /* thenPromise.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = thenPromise.xcconfig; sourceTree = "<group>"; };
BDA777C30577808C4DA12CD690EF97C9 /* Promise+Aliases.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Aliases.swift"; path = "Source/Promise+Aliases.swift"; sourceTree = "<group>"; };
BDAA46B8C092AF5548BEF801206FC79E /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = "<group>"; };
BDC2D67F61EDFC9B43979318161FF733 /* Result.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Result.framework; sourceTree = BUILT_PRODUCTS_DIR; };
BE46AD9143DD3D67E91F379921573495 /* Async+Then.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Async+Then.swift"; path = "Asynchronous/Extensions/Async+Then.swift"; sourceTree = "<group>"; };
BEDD1104BEA26A6405E6D436601875EE /* RxSwift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = RxSwift.framework; path = RxSwift.framework; sourceTree = BUILT_PRODUCTS_DIR; };
BF0268A2B304122AD72CDDDC7CFD410E /* PromiseKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "PromiseKit-prefix.pch"; sourceTree = "<group>"; };
BF6D3C55E13DDE224AFD414D049B80BD /* NSURLSession+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSURLSession+Promise.swift"; path = "Extensions/Foundation/Sources/NSURLSession+Promise.swift"; sourceTree = "<group>"; };
BF8E62FC7A07AB04800F47CBA3CBE78F /* Pods-Asynchronous_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Asynchronous_Example-acknowledgements.plist"; sourceTree = "<group>"; };
C1E115E029E7594D9A7595F87B284710 /* AnyPromise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyPromise.swift; path = Sources/AnyPromise.swift; sourceTree = "<group>"; };
C395BDC0A855FB7BAEE045F458CB3FEA /* Promise+Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Map.swift"; path = "Sources/Hydra/Promise+Map.swift"; sourceTree = "<group>"; };
C3CCD724C37A1E39D6F49EB5E4345068 /* 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; };
C3FC3D79366C0CAA4B950FB366609AAA /* UIViewController+AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+AnyPromise.h"; path = "Extensions/UIKit/Sources/UIViewController+AnyPromise.h"; sourceTree = "<group>"; };
C65A26720E0052E4D389997181F8701B /* NSURLSessionConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NSURLSessionConfiguration.swift; path = Sources/Mockingjay/NSURLSessionConfiguration.swift; sourceTree = "<group>"; };
C65C4B336790F2E0E3DDB989122CEBD6 /* Promise+Await.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Await.swift"; path = "Sources/Hydra/Promise+Await.swift"; sourceTree = "<group>"; };
C71F7C750F90C846E2DE3EBA034F7D1F /* Promise+Validate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Validate.swift"; path = "Source/Promise+Validate.swift"; sourceTree = "<group>"; };
C74E594BFCC01D99F7F43B4F57EE1AD9 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C8A0F64740DBBFDC79601B7D2A634745 /* Promise+Retry.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Retry.swift"; path = "Source/Promise+Retry.swift"; sourceTree = "<group>"; };
C8C6D3CD08E0BD77EE4D9FA981B14099 /* Sink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sink.swift; path = RxSwift/Observables/Sink.swift; sourceTree = "<group>"; };
C9601102C7CBF49A75EC10513CC70966 /* Pods-Asynchronous_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Asynchronous_Tests.debug.xcconfig"; sourceTree = "<group>"; };
C9B4334B7AD34676E261C9AD6E980936 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = Sources/BrightFutures/Errors.swift; sourceTree = "<group>"; };
CA0CD2E3BAB228870F9A83DBF03EFD6E /* SerialDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDisposable.swift; path = RxSwift/Disposables/SerialDisposable.swift; sourceTree = "<group>"; };
CA179A909B1BB02E98E69537349D45E4 /* PromiseKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PromiseKit.h; path = Sources/PromiseKit.h; sourceTree = "<group>"; };
CA5447E6D7CFDF04C4233DA64AB35A65 /* URITemplate.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = URITemplate.xcconfig; sourceTree = "<group>"; };
CA89E06759059227EF0038241E8A8E5D /* when.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = when.m; path = Sources/when.m; sourceTree = "<group>"; };
CAD93D735503C55F8E1AC292E4F09B11 /* afterlife.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = afterlife.swift; path = Extensions/Foundation/Sources/afterlife.swift; sourceTree = "<group>"; };
CBA7B09DBDF360D0D1F2342639BCD992 /* TaskDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TaskDelegate.swift; path = Source/TaskDelegate.swift; sourceTree = "<group>"; };
CCC692887AB90A5BD2E9B89567CA0C5F /* Promise+All.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+All.swift"; path = "Sources/Hydra/Promise+All.swift"; sourceTree = "<group>"; };
CCD227BA2493DBCBC6D48528EFEBB5CA /* Do.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Do.swift; path = RxSwift/Observables/Do.swift; sourceTree = "<group>"; };
CD4C2B57D03FB22B0A7DF9BB4DF0F35C /* when.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = when.swift; path = Sources/when.swift; sourceTree = "<group>"; };
CDE2A7DAD3AAAB6EA7D1368CED90665A /* Skip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Skip.swift; path = RxSwift/Observables/Skip.swift; sourceTree = "<group>"; };
CE796432049D7B8E77357B22DE2AE77F /* Event.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Event.swift; path = RxSwift/Event.swift; sourceTree = "<group>"; };
CE8E52728F50351437E263D24A84291A /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = "<group>"; };
CF0F250F568F0D1AFC6BC4301D137D15 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = "<group>"; };
CF940E1543F5EAD30E53B51DCBE288AC /* MockingjayProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MockingjayProtocol.swift; path = Sources/Mockingjay/MockingjayProtocol.swift; sourceTree = "<group>"; };
D12809024A5F3E964ACB81DD960EEAAC /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
D197C45C99F6D9528A98F74A8D9907DF /* Promise+Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Error.swift"; path = "Source/Promise+Error.swift"; sourceTree = "<group>"; };
D1BFEB3F4A372AFA7EB2F819AD848E5B /* NSTask+AnyPromise.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSTask+AnyPromise.h"; path = "Extensions/Foundation/Sources/NSTask+AnyPromise.h"; sourceTree = "<group>"; };
D23894C27A3B9E470220BC95C2F1AC00 /* BrightFutures.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = BrightFutures.modulemap; sourceTree = "<group>"; };
D300D65A908A60A3C4BE27E6545E5EF4 /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = "<group>"; };
D3ECA057E2AE76A38DE9C4B3D66CFA40 /* Async.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Async.swift; path = Source/Async.swift; sourceTree = "<group>"; };
D4979DFFEAD0FA95B9EE4BF7E1C94BD1 /* Promise+Defer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Defer.swift"; path = "Sources/Hydra/Promise+Defer.swift"; sourceTree = "<group>"; };
D4C5EF23912C95383A2B4EB175A44EF2 /* HydraAsync.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = HydraAsync.modulemap; sourceTree = "<group>"; };
D65137C0A47B2DBC5C30EAE332750E09 /* SequenceType+BrightFutures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SequenceType+BrightFutures.swift"; path = "Sources/BrightFutures/SequenceType+BrightFutures.swift"; sourceTree = "<group>"; };
D659E930685472E850D1EBF6DEAC6975 /* ScheduledDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledDisposable.swift; path = RxSwift/Disposables/ScheduledDisposable.swift; sourceTree = "<group>"; };
D6EBFE2272F1C1352527718B20C436CC /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = Sources/Error.swift; sourceTree = "<group>"; };
D761AE602561145DE10C30EED3A6B9E7 /* NSNotificationCenter+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSNotificationCenter+Promise.swift"; path = "Extensions/Foundation/Sources/NSNotificationCenter+Promise.swift"; sourceTree = "<group>"; };
DA50849C1AAAA7FACD2602734C386EA8 /* Pods-Asynchronous_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Asynchronous_Tests.release.xcconfig"; sourceTree = "<group>"; };
DA750EC9B9070D6DAB726A022526B1FF /* Pods-Asynchronous_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Asynchronous_Example-resources.sh"; sourceTree = "<group>"; };
DB27971E140A346101950D503707E785 /* NopDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NopDisposable.swift; path = RxSwift/Disposables/NopDisposable.swift; sourceTree = "<group>"; };
DC06D307DA751D71ECE04C9C10E33096 /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = "<group>"; };
DC7495B32A4CDB4720BFBDFCFE7C7664 /* CombineLatest+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+arity.swift"; path = "RxSwift/Observables/CombineLatest+arity.swift"; sourceTree = "<group>"; };
DD4ACA727DDF81D8173578122E48046F /* Zip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Zip.swift; path = RxSwift/Observables/Zip.swift; sourceTree = "<group>"; };
DEEDFFD4D4F649B6705B2DEEEC598FCE /* Sequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sequence.swift; path = RxSwift/Observables/Sequence.swift; sourceTree = "<group>"; };
E0629D58009260C2E36B1DBE88E1C97A /* Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Promise.swift; path = Sources/Promise.swift; sourceTree = "<group>"; };
E159995D1B69BE09A552EAA396B8F647 /* AsyncType+ResultType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "AsyncType+ResultType.swift"; path = "Sources/BrightFutures/AsyncType+ResultType.swift"; sourceTree = "<group>"; };
E205149530CDEC7066A84FC6FEA81F92 /* Promise+Recover.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Recover.swift"; path = "Source/Promise+Recover.swift"; sourceTree = "<group>"; };
E251911D9E79EF6D8F9521A528F0DDC0 /* AnonymousDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousDisposable.swift; path = RxSwift/Disposables/AnonymousDisposable.swift; sourceTree = "<group>"; };
E32883C704E9D3CFD04568548E510582 /* Promises.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Promises.modulemap; sourceTree = "<group>"; };
E384E258B2433977145030F9F7C78212 /* Pods-Asynchronous_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Asynchronous_Tests-dummy.m"; sourceTree = "<group>"; };
E39A61D4FD494378C2A65CC11E0A637E /* Mockingjay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mockingjay.swift; path = Sources/Mockingjay/Mockingjay.swift; sourceTree = "<group>"; };
E3B35D20636620D1DF81C04D87704C5B /* DispatchQueue+Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Promise.swift"; path = "Sources/DispatchQueue+Promise.swift"; sourceTree = "<group>"; };
E4971C357A7593FAF2EF584A980080EF /* Promise+BridgeError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+BridgeError.swift"; path = "Source/Promise+BridgeError.swift"; sourceTree = "<group>"; };
E4EB29F016F73DFFDDC17B2E00248A70 /* Just.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Just.swift; path = RxSwift/Observables/Just.swift; sourceTree = "<group>"; };
E4FBE1CBD180EF4EC128DC7B19B43D92 /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = "<group>"; };
E51096F2D892D6C82C20D2764467939B /* Promise+Helpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Helpers.swift"; path = "Source/Promise+Helpers.swift"; sourceTree = "<group>"; };
E5192858A8DA794B02BA50EC36CF18DD /* BrightFutures.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = BrightFutures.framework; path = BrightFutures.framework; sourceTree = BUILT_PRODUCTS_DIR; };
E57143EC8D89098E9D336B70C93492AC /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = "<group>"; };
E580BC723E312FA6A18D0829D40DEB1E /* RxSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-prefix.pch"; sourceTree = "<group>"; };
E58D07FC559E632C8AD97D3666DECC55 /* Merge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Merge.swift; path = RxSwift/Observables/Merge.swift; sourceTree = "<group>"; };
E95C10933F9A5A05EC24FD6729891E23 /* Maybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Maybe.swift; path = RxSwift/Traits/Maybe.swift; sourceTree = "<group>"; };
E9BBD46987404C03D0D484FF0C119741 /* TakeWhile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeWhile.swift; path = RxSwift/Observables/TakeWhile.swift; sourceTree = "<group>"; };
EC8E311B36907231BDE7526ED53B3449 /* Promise+Properties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Properties.swift"; path = "Sources/Promise+Properties.swift"; sourceTree = "<group>"; };
ED117F681300095E227FF4844518BCBA /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = "<group>"; };
EE210FE38D56457BDD223065FE610BC8 /* Mockingjay-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Mockingjay-dummy.m"; sourceTree = "<group>"; };
EE49C6D1A9E94A73BBC4795A6C7C71FA /* Commons.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Commons.swift; path = Sources/Hydra/Commons.swift; sourceTree = "<group>"; };
EEED69751FDDDC1AEDBC628F76AEEB55 /* Promise+Unwrap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Unwrap.swift"; path = "Source/Promise+Unwrap.swift"; sourceTree = "<group>"; };
EF181DC6A1CF683BC36551FD0992C89F /* SubscriptionDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscriptionDisposable.swift; path = RxSwift/Disposables/SubscriptionDisposable.swift; sourceTree = "<group>"; };
F14FD56624DF2C0CA687415ECB24D644 /* join.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = join.m; path = Sources/join.m; sourceTree = "<group>"; };
F194BDF08B6FF4FC8AD56B9090D7A925 /* Zip+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+Collection.swift"; path = "RxSwift/Observables/Zip+Collection.swift"; sourceTree = "<group>"; };
F1B2192BE390B99DE9067D2A4BC3EDFD /* Result+BrightFutures.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Result+BrightFutures.swift"; path = "Sources/BrightFutures/Result+BrightFutures.swift"; sourceTree = "<group>"; };
F3390705B06E2B3D5A79F29D6F16195C /* PromiseKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = PromiseKit.xcconfig; sourceTree = "<group>"; };
F3E69B5DD1EA4262B26761E35C1C3228 /* ObserverType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverType.swift; path = RxSwift/ObserverType.swift; sourceTree = "<group>"; };
F4377067FD7F1918E90927330CED9E55 /* AnonymousObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousObserver.swift; path = RxSwift/Observers/AnonymousObserver.swift; sourceTree = "<group>"; };
F6DF88E3046779315AE7A041BC1674F2 /* InvocableScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableScheduledItem.swift; path = RxSwift/Schedulers/Internal/InvocableScheduledItem.swift; sourceTree = "<group>"; };
F71645ABFC5AE9E7641E8387B69F6FA2 /* Pods-Asynchronous_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Asynchronous_Example.release.xcconfig"; sourceTree = "<group>"; };
F8F56BFA6363EBDE91B426D29321D243 /* Promise+Delay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Delay.swift"; path = "Source/Promise+Delay.swift"; sourceTree = "<group>"; };
FA2616B2A0BBCC683033111D72199EE0 /* Promise+Progress.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Promise+Progress.swift"; path = "Source/Promise+Progress.swift"; sourceTree = "<group>"; };
FB56A198E35FED1C39E48795D80B7018 /* Disposables.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposables.swift; path = RxSwift/Disposables/Disposables.swift; sourceTree = "<group>"; };
FC03C3B9BE5010FBB60C325B46AB4A37 /* VirtualTimeConverterType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeConverterType.swift; path = RxSwift/Schedulers/VirtualTimeConverterType.swift; sourceTree = "<group>"; };
FC6DA3C301AF029D75BDD3DDC2583855 /* Await.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Await.swift; path = Source/Await.swift; sourceTree = "<group>"; };
FC7D0896331DE044446D87873F0FD00F /* PromiseKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "PromiseKit-dummy.m"; sourceTree = "<group>"; };
FCAC9671FA71504AAFFCEDA621D7146D /* Mockingjay.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; path = Mockingjay.modulemap; sourceTree = "<group>"; };
FD17B01FB3E8419613039DBC8127D294 /* thenPromise-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "thenPromise-dummy.m"; sourceTree = "<group>"; };
FE0393B812516AE2C9BB5E4B93F3D3D1 /* SynchronizedOnType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedOnType.swift; path = RxSwift/Concurrency/SynchronizedOnType.swift; sourceTree = "<group>"; };
FEB81CFFC3C11572AE13F0554853B51B /* Async+Promises.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Async+Promises.swift"; path = "Asynchronous/Extensions/Async+Promises.swift"; sourceTree = "<group>"; };
FF698A179AC7F614954538C607C0E066 /* Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Deprecated.swift; path = RxSwift/Deprecated.swift; sourceTree = "<group>"; };
FF84D7859DC80F39B33360320ED2036D /* PromiseKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = PromiseKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
FF9724EE1631DDE6DBEB98DEAC6B5555 /* ObserveOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserveOn.swift; path = RxSwift/Observables/ObserveOn.swift; sourceTree = "<group>"; };
/* End PBXFileReference section */