diff --git a/OrderScheduling.xcodeproj/project.pbxproj b/OrderScheduling.xcodeproj/project.pbxproj index 72d45e8..9e36f61 100644 --- a/OrderScheduling.xcodeproj/project.pbxproj +++ b/OrderScheduling.xcodeproj/project.pbxproj @@ -1122,7 +1122,7 @@ CODE_SIGN_IDENTITY = "iPhone Distribution"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution: SINO ASSISTANCE INDUSTRIAL CO., LTD. (X9WF5T89LV)"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 12; + CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = X9WF5T89LV; FRAMEWORK_SEARCH_PATHS = ( @@ -1151,7 +1151,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 4.0.0; + MARKETING_VERSION = 4.0.1; PRODUCT_BUNDLE_IDENTIFIER = com.sino.supplier; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -1337,7 +1337,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Apple Development: Haifeng Cen (F2QAMRC42Q)"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 12; + CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = X9WF5T89LV; "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited)"; @@ -1367,7 +1367,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 4.0.0; + MARKETING_VERSION = 4.0.1; PRODUCT_BUNDLE_IDENTIFIER = com.sino.supplier; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -1395,7 +1395,7 @@ CODE_SIGN_ENTITLEMENTS = OrderScheduling/OrderSchedulingRelease.entitlements; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution: SINO ASSISTANCE INDUSTRIAL CO., LTD. (X9WF5T89LV)"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 12; + CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=iphoneos*]" = X9WF5T89LV; FRAMEWORK_SEARCH_PATHS = ( @@ -1424,7 +1424,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 4.0.0; + MARKETING_VERSION = 4.0.1; PRODUCT_BUNDLE_IDENTIFIER = com.sino.supplier; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; diff --git a/OrderScheduling.xcodeproj/xcshareddata/xcschemes/Release.xcscheme b/OrderScheduling.xcodeproj/xcshareddata/xcschemes/Release.xcscheme index 85c05ed..57264c3 100644 --- a/OrderScheduling.xcodeproj/xcshareddata/xcschemes/Release.xcscheme +++ b/OrderScheduling.xcodeproj/xcshareddata/xcschemes/Release.xcscheme @@ -23,7 +23,7 @@ + buildConfiguration = "Release"> + +NS_ASSUME_NONNULL_BEGIN + +@interface DDBaseModel : NSObject + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseModel/DDBaseModel.m b/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseModel/DDBaseModel.m new file mode 100644 index 0000000..6ca8d64 --- /dev/null +++ b/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseModel/DDBaseModel.m @@ -0,0 +1,11 @@ +// +// DDBaseModel.m +// DDBasicControlsKit_Private +// Created by DDIsFriend on 2023/2/10. + + +#import "DDBaseModel.h" + +@implementation DDBaseModel + +@end diff --git a/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseTabBarController/DDBaseTabBarController.h b/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseTabBarController/DDBaseTabBarController.h new file mode 100644 index 0000000..1b216c5 --- /dev/null +++ b/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseTabBarController/DDBaseTabBarController.h @@ -0,0 +1,15 @@ +// +// DDBaseTabBarController.h +// DDBasicControlsKit_Private +// Created by DDIsFriend on 2022/11/7. + + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface DDBaseTabBarController : UITabBarController + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseTabBarController/DDBaseTabBarController.m b/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseTabBarController/DDBaseTabBarController.m new file mode 100644 index 0000000..269167c --- /dev/null +++ b/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseTabBarController/DDBaseTabBarController.m @@ -0,0 +1,45 @@ +// +// DDBaseTabBarController.m +// DDBasicControlsKit_Private +// Created by DDIsFriend on 2022/11/7. + + +#import "DDBaseTabBarController.h" + +@interface DDBaseTabBarController () + +@end + +@implementation DDBaseTabBarController + +- (void)viewDidLoad { + [super viewDidLoad]; + // Do any additional setup after loading the view. +} + +// MARK: +//- (UIStatusBarStyle)preferredStatusBarStyle{ +// return UIStatusBarStyleDefault; +//} +// override this method will instead - (UIStatusBarStyle)preferredStatusBarStyle. +- (UIViewController *)childViewControllerForStatusBarStyle{ + return self.selectedViewController; +} + +- (UIViewController *)childViewControllerForStatusBarHidden{ + return self.selectedViewController; +} + +// MARK: +- (BOOL)shouldAutorotate{ + return self.selectedViewController.shouldAutorotate; +} + +- (UIInterfaceOrientationMask)supportedInterfaceOrientations{ + return self.selectedViewController.supportedInterfaceOrientations; +} + +- (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation{ + return self.selectedViewController.preferredInterfaceOrientationForPresentation; +} +@end diff --git a/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseViewModel/DDBaseViewModel.h b/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseViewModel/DDBaseViewModel.h new file mode 100644 index 0000000..5876245 --- /dev/null +++ b/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseViewModel/DDBaseViewModel.h @@ -0,0 +1,15 @@ +// +// DDBaseViewModel.h +// DDBasicControlsKit_Private +// Created by DDIsFriend on 2023/2/10. + + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface DDBaseViewModel : NSObject + +@end + +NS_ASSUME_NONNULL_END diff --git a/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseViewModel/DDBaseViewModel.m b/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseViewModel/DDBaseViewModel.m new file mode 100644 index 0000000..b9a6e5c --- /dev/null +++ b/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseViewModel/DDBaseViewModel.m @@ -0,0 +1,11 @@ +// +// DDBaseViewModel.m +// DDBasicControlsKit_Private +// Created by DDIsFriend on 2023/2/10. + + +#import "DDBaseViewModel.h" + +@implementation DDBaseViewModel + +@end diff --git a/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBasicControls.h b/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBasicControls.h new file mode 100644 index 0000000..3620ae5 --- /dev/null +++ b/Pods/DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBasicControls.h @@ -0,0 +1,29 @@ +// +// DDBasicControls.h +// DDBasicControlsKit_Private +// Created by DDIsFriend on 2023/2/13. + + +#ifndef DDBasicControls_h +#define DDBasicControls_h + +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import + +#endif /* DDBasicControls_h */ diff --git a/Pods/Headers/Private/DDBasicControlsKit_Private/DDBaseModel.h b/Pods/Headers/Private/DDBasicControlsKit_Private/DDBaseModel.h new file mode 120000 index 0000000..e6c772e --- /dev/null +++ b/Pods/Headers/Private/DDBasicControlsKit_Private/DDBaseModel.h @@ -0,0 +1 @@ +../../../DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseModel/DDBaseModel.h \ No newline at end of file diff --git a/Pods/Headers/Private/DDBasicControlsKit_Private/DDBaseTabBarController.h b/Pods/Headers/Private/DDBasicControlsKit_Private/DDBaseTabBarController.h new file mode 120000 index 0000000..8cc12af --- /dev/null +++ b/Pods/Headers/Private/DDBasicControlsKit_Private/DDBaseTabBarController.h @@ -0,0 +1 @@ +../../../DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseTabBarController/DDBaseTabBarController.h \ No newline at end of file diff --git a/Pods/Headers/Private/DDBasicControlsKit_Private/DDBaseViewModel.h b/Pods/Headers/Private/DDBasicControlsKit_Private/DDBaseViewModel.h new file mode 120000 index 0000000..ab585b8 --- /dev/null +++ b/Pods/Headers/Private/DDBasicControlsKit_Private/DDBaseViewModel.h @@ -0,0 +1 @@ +../../../DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseViewModel/DDBaseViewModel.h \ No newline at end of file diff --git a/Pods/Headers/Private/DDBasicControlsKit_Private/DDBasicControls.h b/Pods/Headers/Private/DDBasicControlsKit_Private/DDBasicControls.h new file mode 120000 index 0000000..85b0cb6 --- /dev/null +++ b/Pods/Headers/Private/DDBasicControlsKit_Private/DDBasicControls.h @@ -0,0 +1 @@ +../../../DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBasicControls.h \ No newline at end of file diff --git a/Pods/Headers/Public/DDBasicControlsKit_Private/DDBaseModel.h b/Pods/Headers/Public/DDBasicControlsKit_Private/DDBaseModel.h new file mode 120000 index 0000000..e6c772e --- /dev/null +++ b/Pods/Headers/Public/DDBasicControlsKit_Private/DDBaseModel.h @@ -0,0 +1 @@ +../../../DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseModel/DDBaseModel.h \ No newline at end of file diff --git a/Pods/Headers/Public/DDBasicControlsKit_Private/DDBaseTabBarController.h b/Pods/Headers/Public/DDBasicControlsKit_Private/DDBaseTabBarController.h new file mode 120000 index 0000000..8cc12af --- /dev/null +++ b/Pods/Headers/Public/DDBasicControlsKit_Private/DDBaseTabBarController.h @@ -0,0 +1 @@ +../../../DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseTabBarController/DDBaseTabBarController.h \ No newline at end of file diff --git a/Pods/Headers/Public/DDBasicControlsKit_Private/DDBaseViewModel.h b/Pods/Headers/Public/DDBasicControlsKit_Private/DDBaseViewModel.h new file mode 120000 index 0000000..ab585b8 --- /dev/null +++ b/Pods/Headers/Public/DDBasicControlsKit_Private/DDBaseViewModel.h @@ -0,0 +1 @@ +../../../DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBaseViewModel/DDBaseViewModel.h \ No newline at end of file diff --git a/Pods/Headers/Public/DDBasicControlsKit_Private/DDBasicControls.h b/Pods/Headers/Public/DDBasicControlsKit_Private/DDBasicControls.h new file mode 120000 index 0000000..85b0cb6 --- /dev/null +++ b/Pods/Headers/Public/DDBasicControlsKit_Private/DDBasicControls.h @@ -0,0 +1 @@ +../../../DDBasicControlsKit_Private/DDBasicControlsKit_Private/Classes/DDBasicControls.h \ No newline at end of file diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index 686ba74..c26efa5 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -25,6 +25,29 @@ PODS: - Bugly (2.5.93) - DDAudioPlayerKit_Private (0.1.6) - DDAutoUIKit_Private (0.1.3) + - DDBasicControlsKit_Private (0.3.6): + - DDBasicControlsKit_Private/DDBaseAnimation (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseAttributedString (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseButton (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseCollectionView (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseCollectionViewCell (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseImage (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseImageView (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseLabel (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseModel (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseNavigationController (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseScrollView (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseSwitch (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseTabBarController (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseTableView (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseTableViewCell (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseTextField (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseTextView (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseView (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseViewController (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseViewModel (= 0.3.6) + - DDBasicControlsKit_Private/DDBaseAnimation (0.3.6): + - DDBasicControlsKit_Private/DDBaseAnimation/DDTransitionAnimation (= 0.3.6) - DDBasicControlsKit_Private/DDBaseAnimation/DDTransitionAnimation (0.3.6) - DDBasicControlsKit_Private/DDBaseAttributedString (0.3.6): - "DDCategoryKit_Private/NSAttributedString+DDCategory" @@ -40,6 +63,7 @@ PODS: - "DDCategoryKit_Private/UIImageView+DDCategory" - DDBasicControlsKit_Private/DDBaseLabel (0.3.6): - "DDCategoryKit_Private/UILabel+DDCategory" + - DDBasicControlsKit_Private/DDBaseModel (0.3.6) - DDBasicControlsKit_Private/DDBaseNavigationController (0.3.6): - DDBasicControlsKit_Private/DDBaseAnimation/DDTransitionAnimation - "DDCategoryKit_Private/UINavigationController+DDCategory" @@ -47,6 +71,7 @@ PODS: - "DDCategoryKit_Private/UIScrollView+DDCategory" - DDBasicControlsKit_Private/DDBaseSwitch (0.3.6): - "DDCategoryKit_Private/UISwitch+DDCategory" + - DDBasicControlsKit_Private/DDBaseTabBarController (0.3.6) - DDBasicControlsKit_Private/DDBaseTableView (0.3.6): - "DDCategoryKit_Private/UITableView+DDCategory" - DDBasicControlsKit_Private/DDBaseTableViewCell (0.3.6): @@ -60,6 +85,7 @@ PODS: - DDBasicControlsKit_Private/DDBaseViewController (0.3.6): - "DDCategoryKit_Private/UIImage+DDCategory" - "DDCategoryKit_Private/UIViewController+DDCategory" + - DDBasicControlsKit_Private/DDBaseViewModel (0.3.6) - DDCategoryKit_Private (0.5.4): - "DDCategoryKit_Private/CALayer+DDCategory (= 0.5.4)" - "DDCategoryKit_Private/NSAttributedString+DDCategory (= 0.5.4)" @@ -310,9 +336,10 @@ DEPENDENCIES: - Bugly - DDAudioPlayerKit_Private - DDAutoUIKit_Private + - DDBasicControlsKit_Private (= 0.3.6) - DDCategoryKit_Private - DDColorKit_Private - - DDControlsKit_Private + - DDControlsKit_Private (= 0.1.4) - DDDateKit_Private - DDFontKit_Private - DDMAMapKit_Private @@ -427,6 +454,6 @@ SPEC CHECKSUMS: SwiftyRSA: 8c6dd1ea7db1b8dc4fb517a202f88bb1354bc2c6 ZLPhotoBrowser: 0563c2bfc7b247b65d023d646012f46cba94101b -PODFILE CHECKSUM: 75e62ee633534110b4a33fd42fd1175199c85796 +PODFILE CHECKSUM: 2988d8748c413ccb1e971807fbe05a8b4859ca67 COCOAPODS: 1.11.3 diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index a7f8a68..32bc291 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -13,8 +13,8 @@ buildPhases = ( ); dependencies = ( - 788EEF805E05C83F7492EBA9261B9E27 /* PBXTargetDependency */, - 9DCB62B7B515BB6DC967D438058838ED /* PBXTargetDependency */, + 0E45811B4481A9F922D782B38D3C1976 /* PBXTargetDependency */, + E1220119C3E29588CF2E34D44ACC25CC /* PBXTargetDependency */, ); name = "AMapTrack-NO-IDFA"; }; @@ -33,7 +33,7 @@ buildPhases = ( ); dependencies = ( - FC841720FEDF7FCB1A61A45CD8D77A07 /* PBXTargetDependency */, + E35EFEC393DC587516CF539848E3D734 /* PBXTargetDependency */, ); name = "AMapLocation-NO-IDFA"; }; @@ -43,7 +43,7 @@ buildPhases = ( ); dependencies = ( - 216CCAD0464F43D2D9788B8CD1FA6455 /* PBXTargetDependency */, + E3EBE11F5FF48413EB45A909AF50FC9A /* PBXTargetDependency */, ); name = "AMapSearch-NO-IDFA"; }; @@ -54,7 +54,7 @@ 329295F5A096E0819713CBB5799FA87B /* [CP] Copy XCFrameworks */, ); dependencies = ( - 7E4E9D4AF3C9E53336EF914345C11F50 /* PBXTargetDependency */, + 1AB8928216E258C866608AB86FC19048 /* PBXTargetDependency */, ); name = JPush; }; @@ -93,3197 +93,3211 @@ buildPhases = ( ); dependencies = ( - 1DE044D2F05D823746C5B12C038D7AD7 /* PBXTargetDependency */, + 1D2537AAB2ABF0EA7F146099D18ADE37 /* PBXTargetDependency */, ); name = "AMapNavi-NO-IDFA"; }; /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 00076F7F7FC7EF9FBD6CAE185C0D359B /* Sequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = D704D6A35DF4622B7398E732D6ED8E57 /* Sequence.swift */; }; - 00149C338A154F7A90372D9D111E890D /* UIScrollView+ZFPlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A821BEBE1EAF20B2D22D0B87ADE6CA4 /* UIScrollView+ZFPlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 012C3348FDB9BD307BC866EC0B5D23A3 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D4E35FFAE01DC349BE0F050EEF7CB3C /* SDImageCacheDefine.m */; }; - 016189BDA510202C76A5B1BF7B6A5C64 /* RefCountDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E54F1F80E988005D646796E532D54A5 /* RefCountDisposable.swift */; }; - 01B815BD97E0BA94CF89C42FE41254A8 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ECA08FC885AE3ED6615546A3A15155A /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01C132EB3605024492C96C11F1094D0B /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7A2C1CEE4F24D36F16B60F5E6F88E91 /* InfiniteSequence.swift */; }; - 01D8AE321F1FA71F2D43127EAC90559D /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 536600AFCEAE18645A692BF6F89AD2DC /* NSButton+WebCache.m */; }; - 01D98686F4FD9D7496836D3989AD3525 /* ConstraintLayoutSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9B7CBC1F9794E96B4E20B046CDE8A30 /* ConstraintLayoutSupport.swift */; }; - 0272C6180FD5A8546C4C9F446E22CA52 /* WithUnretained.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DAB8458DAF8C56A553FAAF494D6BBD2 /* WithUnretained.swift */; }; - 02780D132E8AA44865FEF53E4D5155E6 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B62DB25D38D0B9AC1EA7396B7CFB256 /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02C5131798FF28B7D851F0DB13D67C00 /* UISlider+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BB4FA6AC50A5946A9E67F9E0F8ED0A4 /* UISlider+Rx.swift */; }; - 02D531FA1E9A19A134ED8BD68C5E04C0 /* JXCategoryBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C67C6724F31CC33E0E6006D76AE4A7F2 /* JXCategoryBaseCell.m */; }; - 02EDCC0E7DA24D63CD39E7D6326F5A56 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = C0B26C965B86D3C1D65541209625A838 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02F411B1B3CCF0DBE8FD86A26A8B04F3 /* Infallible+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5BFBBEEDE76412C60C6A68B87FC9FAF /* Infallible+Operators.swift */; }; - 0325FC0D4CE47D33E675D5F9546D482C /* BRStringPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 774407B6746FD861301D44C5E9E736FD /* BRStringPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0328E2D27FBE6EE399FC37D913E2290F /* EKRatingMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32873B078B8FB04C3E580A3AEED3F4BF /* EKRatingMessage.swift */; }; - 03801BED3946B127B44B7B0A50640EA6 /* SchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7D9E4872D97F4F73672291A1F44B6D0 /* SchedulerType.swift */; }; - 04131C0EECA33AD45AD1E07CF500E344 /* RTLManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A475B134DD14A921A42BE8DE4DB594 /* RTLManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 044C9F746F7E39BA1B482B553386CA48 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CCF40DEA35B2D616301AFFC03567FB6 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04C0033DE2A1FD3EB256E41523A8F0E0 /* ZLEditVideoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CDED5A04FDA512C3BF415649C8A1822 /* ZLEditVideoViewController.swift */; }; - 04C1C9A7B77DAF8FAE55198F58EE790A /* AnimatedImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B93F032484DDAF18E61E57B25D90D36E /* AnimatedImageView.swift */; }; - 04C95DB4DD1BD71AAF5FD233628A6C6D /* NotificationCenter+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE2D2AED7DDB9D52895804D55B53C874 /* NotificationCenter+Rx.swift */; }; - 05098446128EFD47C80C47B240106082 /* SkipWhile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 249A441A40E84569CF5DBB1D09DCEDD3 /* SkipWhile.swift */; }; - 054C5D3D52D113CC9A7AC9F7115A26A4 /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9A7D92D806D8C7CCED28E85C8BBC789 /* Platform.Darwin.swift */; }; - 054D8AA8AAE8142B5F52F98F2D32478C /* DDViewControllerAnimatedTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = CF86069B5E64D44181476909B6BCB38E /* DDViewControllerAnimatedTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 055FD13CE509E194412FE8E424649053 /* ZLFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1F0ECA1819BB892D033E84D2410085B /* ZLFilter.swift */; }; - 057FD0DDEA34EAB96C099A12DAE819F3 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1756D58B22DE7E2697E4B004A427D3F /* DispatchQueue+Extensions.swift */; }; - 0591B0EE71308251E0E53C6D3EDB3D4C /* ESTabBarItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2C790694D3AA49873E2CBB0B13284FC /* ESTabBarItem.swift */; }; - 059DE39D2D7414DD88A410B406D3AD8F /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 68E2FCEE9E1A7A142307DC5EBCEEE743 /* SDImageTransformer.m */; }; - 0605E2513549327B19854B3FED759B44 /* ControlEvent+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = B05760E088C44F4773E9B308F558B9F6 /* ControlEvent+Driver.swift */; }; - 06A20EF6BA10D63870C3AB7C0E1BA53E /* ZLPhotoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CAEAE92A90918D389D7CCD82333E57F /* ZLPhotoModel.swift */; }; - 06B371D4F95E8184613EDABA69676D5A /* DDMAGeometry.h in Headers */ = {isa = PBXBuildFile; fileRef = EE62199AFF21BE479CA842B08CC5E7CC /* DDMAGeometry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 070AC1A560FD65090FD38168F6F8E8C4 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E664F038D254411C91A99DAE329C0DD3 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 070EB1BF732BF8062312B76BC4F8F205 /* SynchronizedDisposeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FDBD918659A95261D4BFD1E57869778 /* SynchronizedDisposeType.swift */; }; - 072224DA1C59294F22A034E8F5B2B441 /* DDBaseCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A61BD7C718085152A2E0DBA8BD12B5E /* DDBaseCollectionViewCell.m */; }; - 0811BB981A2EF4E3C78C193E8AE1A4BA /* DDCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D850DE1D050D92936B3504ADF141E91B /* DDCollectionViewCell.swift */; }; - 088FBD5975BB3D0C62BB2D5C9A4513A4 /* ConstraintMakerFinalizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0181110767F7B26C86A5CD95E9D0328 /* ConstraintMakerFinalizable.swift */; }; - 08A914F49C7D34360B7F9D1964BB0C2A /* PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84F82C75247FE02020351864D416DE2D /* PrimitiveSequence.swift */; }; - 08CC4F2CF084EB4C21FD37F7D5C1728A /* ItemEvents.swift in Sources */ = {isa = PBXBuildFile; fileRef = B76415160DF7F93FF45B44C30B94F6CE /* ItemEvents.swift */; }; - 09510915ADABE84A3F9F88ABC0788029 /* Window.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F13E0CF91EE62BAB0EC24793238658D /* Window.swift */; }; - 099304E6BA24A210A7D45D93B5ED67B0 /* NSURL+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B9827D464C6FB1671A09AE5299CE50D /* NSURL+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09B9E5FB7E73F28A4E1F581917EF868A /* JXCategoryNumberCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F641FC0A6633569487EC5A9C670088E /* JXCategoryNumberCellModel.m */; }; - 09CB072529CD8E230649CBA428E3550F /* MJRefreshConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = AC48B4F734A773D2F8CA6C4C18FA0438 /* MJRefreshConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09DD90A8AE097EE378F7B8F66A2CDAF3 /* Source.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5493A12366B21CAF8960EE36E60C8C4F /* Source.swift */; }; - 0A762FAE78A91ABC899CB431FE10B9FD /* ESTabBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8066F3F18A2F0BBE74C6C051B7A1C73C /* ESTabBarController.swift */; }; - 0ACCBD2441FFC82B8D71A6C57AD19056 /* Placeholder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81AE312979BD48363A3F57B2019A76CA /* Placeholder.swift */; }; - 0ADABCBC774CA6E66FF86FB47092A1EE /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA25B0C2F60DF29FA4C9113178755654 /* PriorityQueue.swift */; }; - 0B4577864274CE4EB338A238A241AA0C /* EKAttributes+Precedence.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5C27657E9CED84E123DEA6B82612948 /* EKAttributes+Precedence.swift */; }; - 0B52A423F3F9E6C5A42612A06BCEEEF8 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 127AFCC80D26CF08EA0F94463459870C /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B5B8EB020F39AD312D8C7A32FAF741A /* EncryptedMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F6F6E8AAF50A0C90F9A6CAE4B8CDF5 /* EncryptedMessage.swift */; }; - 0B5EA67F5625C1C251925DBD16D19EAA /* Sample.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF638130DB223CA073CCEFF8B7377E46 /* Sample.swift */; }; - 0B9987BE8D17570A8C4920E97E2DEB6A /* UICollectionViewCell+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A58BA0DA8FF4222995DF240ADFB2CD0 /* UICollectionViewCell+DDCategory.m */; }; - 0BB1D0BC2DEF4750560B8B8C29347AE5 /* ImmediateSchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = D57763CCD643A0FB8242C8FF13B9D636 /* ImmediateSchedulerType.swift */; }; - 0BBDD87E462CDB205C9FD821DDC97D2B /* SnapKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DAD91B5A94EC9486D38B47694177423 /* SnapKit-dummy.m */; }; - 0BCF8CB00A9A52600E24370C7144693F /* EKNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F68DC04F51D533FE7335CE9CAEE6402E /* EKNoteMessageView.swift */; }; - 0C4B16846CA2632E7F3C6F36435EEA1F /* DDNavigationControllerDelegateReceiver.h in Headers */ = {isa = PBXBuildFile; fileRef = 62B652C6768A5D68E417B31DE2214DB0 /* DDNavigationControllerDelegateReceiver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C58B0D722795E334B3FAF064FAD0F21 /* DDBaseCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FE5238A67605D1950E755054FB81B7E /* DDBaseCollectionViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C7A81B76F81FFAA7AFD437D61831C77 /* DelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = D70FB6D3ED988646CDCDA1119A91238E /* DelegateProxy.swift */; }; - 0C833DB2294851CFBE098DF5BCEBADF3 /* _RXKVOObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AE5076DACC40E21C87335A76DC898D4 /* _RXKVOObserver.m */; }; - 0C83C845A20F4CDC656714E4DBABC116 /* ZFSpeedLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 79E20F9E0E7419F7218D8D1BEAC8BE00 /* ZFSpeedLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CF0A87B87DF71F838545FC4B0161A8B /* ZLResultModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBB2811E9DC264F1849B265F6BD4C005 /* ZLResultModel.swift */; }; - 0D444C6AD7BA8B3307579F9FCA9F43FB /* EKAttributes+Shadow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B25C17A130C7D0803E27E8E5E9F32A2 /* EKAttributes+Shadow.swift */; }; - 0D51C9109BCE3C65B7887157573CAFB6 /* ConcurrentMainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FEC83C0B71DB4C7CD33043F11CA9B91 /* ConcurrentMainScheduler.swift */; }; - 0D66973ECE298F0B03176744B929B745 /* ExtensionHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15BFF5C6E6682F26915F98663252A32F /* ExtensionHelpers.swift */; }; - 0D700120AD9F3AEA9158F037F6F96EBD /* AuthenticationChallengeResponsable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27EB391616D427D471D8EB2DBF510931 /* AuthenticationChallengeResponsable.swift */; }; - 0D71F7AF3BFA6644CDF45434B3E16510 /* WithLatestFrom.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89EFA90518B49F91DB43C8735742B37D /* WithLatestFrom.swift */; }; - 0D95999ED20E2061C3F0EAF58665B455 /* CallbackQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = D05F0F35506B1255CD38C56E37E93813 /* CallbackQueue.swift */; }; - 0E2F3C0C19AEE421B3E906FDFB8309BE /* Multicast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C9F229151B8B259B893B17EAB1CECCF /* Multicast.swift */; }; - 0E84EA21B0858EDC04A53458A7F8DBDD /* HapticFeedbackGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BF5D3C8E5F8607DB7612921FDEE0AFD /* HapticFeedbackGenerator.swift */; }; - 0EA9A8D660981135C848C6219A40C608 /* Infallible+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 250899CFA9E35E2EDB9D0E6E2472E8F5 /* Infallible+Zip+arity.swift */; }; - 0EC5EC45F806F2DC7B68E6727227E49E /* ZFLandScapeControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = A7722501FB9792273EAA04FCB5F51740 /* ZFLandScapeControlView.m */; }; - 0EEC1C926E6B4C5F97C48A427ACA0256 /* Dematerialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = A169C4083A6FE0A0721678E2DEFFD9D8 /* Dematerialize.swift */; }; - 0F08F26232132B227B600740F6A6B18E /* Sink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C6180D3049C9C913A983028658C4854 /* Sink.swift */; }; - 0F2AAE2334C409128ADD57B132E767F6 /* JXCategoryTitleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D409A3AB540AB9E35D4AD5C1DDCC1B5A /* JXCategoryTitleCell.m */; }; - 0FE99AC4A20A11DAD8254CE931F5DF9E /* KFImageProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DA6006EE90D86899E8A7B8E7F9B2983 /* KFImageProtocol.swift */; }; - 0FF7060D0C281996F5BB46B74207ADFC /* DDBaseTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9931CE7574E5B3A78D179DEAE91D7E2A /* DDBaseTableViewCell.m */; }; - 1112AADD470DD6BB1410B7C32A0EA334 /* IQInvocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = C51DCD033EC4E5306D57EFE8A9875BB9 /* IQInvocation.swift */; }; - 117B71126AAF80FFE5D5DB8F8D787132 /* AsSingle.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1742FDCF0050E56F79D6F64221112F0 /* AsSingle.swift */; }; - 119A65AD7B8F6C7C39DD19128A7B2DA9 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = F3DACF596760B3927F2A87F4525E869F /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11CDFB1A43FE6D23D2F8463B142537CC /* NSControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E8E12E076DE37165D6768298B761E78 /* NSControl+Rx.swift */; }; - 11CF696DFF5D545524A892F94B283945 /* SessionDataTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69CA75EE729B8CA939077B808C8C64EC /* SessionDataTask.swift */; }; - 11EAAA60DB73219EFC8B0CF1722D9C1D /* UITableView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 741E78F844F2A9C483529D5DEEDB2FFF /* UITableView+Rx.swift */; }; - 127BB0831E7F383B0F7DE209003032B9 /* JXCategoryIndicatorRainbowLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CD0D764119E17C6F7EF48E8D95A4101 /* JXCategoryIndicatorRainbowLineView.m */; }; - 129C1964A364166530F529A390760D71 /* JXCategoryTitleVerticalZoomCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 7601532A59A8000731085A66E9F9F56C /* JXCategoryTitleVerticalZoomCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1379145EE1CE455EBC27791628DABACA /* JXCategoryBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9375E2CF150DCDC067F3831BFB3E4317 /* JXCategoryBaseView.m */; }; - 14006084B55ECBF580E396E89C097D64 /* ZLEditToolCells.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8837B693936861F78E22A144F7CE9245 /* ZLEditToolCells.swift */; }; - 141FFFBB94FD368572C68D08981B1086 /* Merge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BCED856B5FE108236C228D98674A5B8 /* Merge.swift */; }; - 1437BB3F5BFA3F0EEF784975F7CA2970 /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = C120D78DD89D582A5405DA3F63D5932E /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 144B55A9628A2AD6B54F8BBACAB7BCFD /* WKWebView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DC323E839BF784EB9C9F36F4A2E2734 /* WKWebView+Rx.swift */; }; - 145BBF6F393882C968D5A99AC80004E1 /* ZLLanguageDefine.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2128C02D27F0F82C309D006D82574219 /* ZLLanguageDefine.swift */; }; - 147A9850A856D92DE71E4105291FFE48 /* NSMutableParagraphStyle+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = B80E897D71688C0FC11FEFB6C23A171D /* NSMutableParagraphStyle+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14A07FB54656F5EFD62FD80EABCB4D08 /* RxSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 80E26B07204EE4590E6D6A284FAE9971 /* RxSwift-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14C821B748B65A96E6D91708B70C0A93 /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BEE02510443289CC465BEEA27A176F7 /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14DB446D107E027E0C24684EBDB0731E /* UINavigationItem+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 985CB67B7ACF5BA01E446A84379ADB01 /* UINavigationItem+DDCategory.m */; }; - 1533C22500FA6467942E955EB154A0A8 /* SynchronizedUnsubscribeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 488531DD11CF79657474262DEA09C8C6 /* SynchronizedUnsubscribeType.swift */; }; - 153E3F2914D2FB875F3443930FEB5035 /* Range.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C1E2E66C8F47CC09FD29744360BDA5E /* Range.swift */; }; - 154C244100E806342F1CF418A5C69FE7 /* UITableView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = A2B32F0FBA845545E001CDEC8EB8EE3E /* UITableView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 158121D0531F97C7CACAC3C96C1C9445 /* ConstraintOffsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7875619CA78736446C19C99FD76D9087 /* ConstraintOffsetTarget.swift */; }; - 159BBC585A2C51D44D40DE88B5B18AAF /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 67D23FAC7919CE8AE69FB0F18A621FCE /* NSBundle+MJRefresh.m */; }; - 15D38081B9302FBAF9A361BAD7E5B05F /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = B416E3336128DEAD10FCDEC9C98D5DD0 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1660E2FBDA4323E7357179056B4B0E65 /* JXCategoryDotView.h in Headers */ = {isa = PBXBuildFile; fileRef = E0E3C2428DDE22E0D42A4EDD8A65BE40 /* JXCategoryDotView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 168F32A6ABFCE1B9110D5C266D36988A /* UIColor+Hue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E7BD7C686CF13C3C55090FDCFD388C1 /* UIColor+Hue.swift */; }; - 17844989D0D971156822DDB22181F456 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9293EE51E0287851A010D0AAF85A6B3C /* Filter.swift */; }; - 17A3CCD15448B61E7EDCD7636CBB6F2A /* VirtualTimeScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5107931B7E0FC729534E626863AC9BB2 /* VirtualTimeScheduler.swift */; }; - 17C901067A0CC336075ABAC7A279589B /* BRPickerStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = BAE15B51CE41A8E6F222EF552783DB5C /* BRPickerStyle.m */; }; - 17DA0483F109F5BA66CF5DD7366E36FF /* UISearchController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED944B712524B9218887B7B2A4E4C80D /* UISearchController+Rx.swift */; }; - 1828512CAB450BD1353714B2EB323DD9 /* LockOwnerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C6A80B78774980C70F8CB643F437DA7 /* LockOwnerType.swift */; }; - 184D3A203605E4AE7E69729F271C8574 /* CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0843ED4DF873D2CE831BC9352368804 /* CombineLatest+arity.swift */; }; - 1897843962F8119EEF09C165977F8025 /* AnonymousObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AB231A7381C8AA9B00BC107A2E23B9C /* AnonymousObserver.swift */; }; - 18EBCC2A133B26DF8B5D5754492F3214 /* EKSimpleMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55B582D91E35E4C6AED1B4FCCB977C20 /* EKSimpleMessageView.swift */; }; - 1906C4D8AC7C7C9109E94729E96187F9 /* DDCategoryKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B4BC63919A3E72038260D326E124013 /* DDCategoryKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 194D6F32A526649820D6B0AA03EEF12F /* RequestTaskMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAAEE5266B24A1F47CF5D571FDDF99F6 /* RequestTaskMap.swift */; }; - 1984D4549EEA55FB1812D99162C83E52 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BD1740FB29D1A3807461CA2C01462D7 /* Alamofire.swift */; }; - 19B69267A13B522D47259CF72C882725 /* BRPickerView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C4FA30701774D87202960971019C48C4 /* BRPickerView-dummy.m */; }; - 1A370F104A326B06BB5A7A623DC96920 /* NSError+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 170BBE76A34DB894858F4A1C6CBF9FB2 /* NSError+ZLPhotoBrowser.swift */; }; - 1A64F561597A70C28B3564007FF6D24C /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 768FD5E1C41C9DC0C47C2A4C9AC4B51F /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A7ADD63C2F158E10825F3FA38EC3639 /* BehaviorRelay+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8C49867A1B7DD27C702C0A687DCCE55 /* BehaviorRelay+Driver.swift */; }; - 1AD7C51CCF7E6204B37A504B68924F16 /* JXCategoryDotCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6884FC4C71BAB5068C043BCAB0E2EC37 /* JXCategoryDotCellModel.m */; }; - 1B2A260FFFFCB3D9E0AC958E83C57F4B /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 51B403317245F827E17CFFB5F193639A /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B66DE64CDDD635DBFCA06DADE240471 /* ConstraintAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D8211385C6B50829DFD7B6D81D2BCD3 /* ConstraintAttributes.swift */; }; - 1B7C34F58BDEA9A37638DCD0CFFF372E /* Zip.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA7279D9C6F9BD7E79B9FD439BF03B8B /* Zip.swift */; }; - 1B957CE26D7722E306F95886B5EDC013 /* RxTableViewDataSourcePrefetchingProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFE98D61E00FBF2F1AC83471FCC00012 /* RxTableViewDataSourcePrefetchingProxy.swift */; }; - 1BA88BD6149449B0EB04E4E7F2822237 /* _RX.m in Sources */ = {isa = PBXBuildFile; fileRef = 15592CAF3A93120CE0198A039024E10F /* _RX.m */; }; - 1BED5C40C873A14BD22FCC7A8BC11848 /* RxTableViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0ABDC43E9DA5EC3D5E8418AB59B6DC4 /* RxTableViewDataSourceType.swift */; }; - 1C0B22AA4E83F0C0C7E55FE842D3C1F9 /* NSDate+BRPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 10DC75BD948DEA4ED79A527B33D05B8E /* NSDate+BRPickerView.m */; }; - 1C33277D17F042B6BADC5BEFD04DC3E9 /* BRAddressPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 44FF7ADECB2E95216184CEC65C7538F6 /* BRAddressPickerView.m */; }; - 1C5E6AA4F88D15A08088B69889559FD2 /* DDBaseNavigationController.h in Headers */ = {isa = PBXBuildFile; fileRef = E8457101209DE2B5A13D5BEC8EDDB323 /* DDBaseNavigationController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C9653CE5BA95B8280803BA82EC70A26 /* DDFontKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C77EAD8BE8D24538219A854747B554D8 /* DDFontKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CAF7FCBD075678639BE65A029B4E56A /* JXCategoryBaseCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = A3B282A4B58052B382A0CF2218CD95A6 /* JXCategoryBaseCellModel.m */; }; - 1CC771654A12EEC8438805520AF1F7F7 /* UIView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 333FF0F744DCCC8F8DC31833B4ADA3BE /* UIView+DDCategory.m */; }; - 1CD029D4F48324168F0220D8213348D3 /* EKProcessingNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5D2643257262C300B029ED4BF866DAA /* EKProcessingNoteMessageView.swift */; }; - 1D6D63D61E41CDC8C9A95724CF0E75CC /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 926D0D7F98DDC85FA76727518C025EC0 /* Validation.swift */; }; - 1DAD1ABC0638C45123D6AA1E78167F56 /* StringEncoding+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7FC978BC1E8EF7BC06878A073EAEB09 /* StringEncoding+Alamofire.swift */; }; - 1E4A2E4EB128ED973EFAD8D0A76ECCAF /* ZLPhotoBrowser-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 37FF1B198B116FFE6A7C4E3FEE9969D1 /* ZLPhotoBrowser-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E708EE46A253702C0D576DE2158F7FC /* KingfisherError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AD77A5A95E9ABAA202BCDBEE365504B /* KingfisherError.swift */; }; - 1E99C8CF77A3B9D4FA62CD0F85ACDC87 /* StartWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B5C79740769FC13DE918AC35AD45E07 /* StartWith.swift */; }; - 1F601A8A4AE7C27226B893F8C4611E0E /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = FAD04027EA1BF1B8E53A56CC177F01A7 /* SDWeakProxy.m */; }; - 1FC870398A64B8565B90B11479B88B68 /* IQKeyboardManager+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24A468DAB9A7D9E988E0E9267BDAE322 /* IQKeyboardManager+Position.swift */; }; - 201DDBF5212C5562804A82B979CEF3B0 /* DispatchQueueConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C991CF2D3C6D6F087F1081D318A46D5 /* DispatchQueueConfiguration.swift */; }; - 20759C768F51054A64D6E2518B494190 /* DDMASearch.h in Headers */ = {isa = PBXBuildFile; fileRef = D5886F33EF778DF727B1D6EE738A61B5 /* DDMASearch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 208A97584D845254E986E9C707635B67 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 64E77274A02D17B69874E9ED632E6F36 /* MJRefreshBackStateFooter.m */; }; - 20DC5EFA536B064520E620C2ACAB766E /* CachedResponseHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE5DD252BA69434899C678B2483C0DD9 /* CachedResponseHandler.swift */; }; - 219624B2DB84EE52D0E4F6B1789954E1 /* ZFLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 683E843CD70E529C09C24CB3C1A1879A /* ZFLoadingView.m */; }; - 21D966E2F801F96E6E36D2C7BA73235B /* DDNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA85C09EA5AF001F5FF14B93BBC14082 /* DDNavigationController.swift */; }; - 21EA2ECEEFE94D739EE9276D46A3E57E /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6DDAF1A1ED7AAFC0172CF5F31EC2D4B /* Storage.swift */; }; - 21FA952E49A0EB77EB7825A78FEF6AA5 /* BRResultModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9921A7F023AA09D6C95F0D415E5CF4B4 /* BRResultModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21FADAA36F19612801A23CD9FC35BA98 /* EKAttributes+StatusBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB8259E65C7342319A9322E5E3A86C5B /* EKAttributes+StatusBar.swift */; }; - 224D5F6BA39BADAD19041AF6AD880C80 /* Bool+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 770D8D4C1F57C04DA1AA61A58FB419A9 /* Bool+ZLPhotoBrowser.swift */; }; - 226AE9954640E71AA69AC12F268C4B58 /* RxPickerViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6AF816381D84B741E8FD12AB73909B4E /* RxPickerViewDataSourceType.swift */; }; - 22A0EE3CF4D4D5DAF933A7871B6E47A9 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 39E388348852B7D5BCF7B5D0820E7305 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22CE10056B2DC6A993C8E3CE966A45D4 /* NSButton+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7841DECC6CD83F3386AE7335DD4AD9CC /* NSButton+Rx.swift */; }; - 23070072A95EC58547F751658BD10FB8 /* QLUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D58BECCF834BC7C0F2CAD00747A9431 /* QLUtils.swift */; }; - 233C15B48EE22F337D42F1899E8609CA /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE6A795BD6D757EA9E0FF2F23006ED62 /* Errors.swift */; }; - 2354A0786A1EBBC2298B9CB493F8C4FF /* URLRequest+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DAA2B2D5E9074D6A807CBD2587D6A12 /* URLRequest+Alamofire.swift */; }; - 235F5CA0FE85EC9C9BF77DDF796070C3 /* JXCategoryBaseCell.h in Headers */ = {isa = PBXBuildFile; fileRef = D4624618AC29973CA5CAC6A9D7005664 /* JXCategoryBaseCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 239036796DB886B9DA46D63F53273AA7 /* MATraceReplayOverlay+Addition.h in Headers */ = {isa = PBXBuildFile; fileRef = 53967F558253351AD028631FF3FFC250 /* MATraceReplayOverlay+Addition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23B683FB3262FAB104127CD59D29E34A /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 21E4511CFC5B86415FF903568EFE0E96 /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23E7FD08C3DF07540AD2118EA057AECA /* DeviceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31BC6730AB61CDCE8150E16A76F2B7D6 /* DeviceInfo.swift */; }; - 23EFAA45BE23C0F05AE3A5A892808639 /* UIView+Shadow.swift in Sources */ = {isa = PBXBuildFile; fileRef = E02DC36E54D7319048DAB95A9C962E25 /* UIView+Shadow.swift */; }; - 24488C0EC1CD3766AF3BA0C3361D2F05 /* KVORepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CDBEAC2DAD087C559400956814D4839 /* KVORepresentable.swift */; }; - 245D0E313372FC4F2297E8CDC17BFDF4 /* ZFPlayerGestureControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 635099AFDEE684DE3CF6FD640325795F /* ZFPlayerGestureControl.m */; }; - 254DB7DF69C8F0DA8BAC684099B27944 /* ZLAlbumListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = D901979501F432235C64E6AC4AB82EDB /* ZLAlbumListModel.swift */; }; - 254FC85A5869DC5E11712EB878B2BD92 /* DDBaseImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = E072741348185C3BC294AF1F31AB4987 /* DDBaseImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 259DD1BE69FB6C8030BCD5994B5E5B51 /* SwiftyRSA-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CAFC967A9D7EA0E7F13E290D08BCA82 /* SwiftyRSA-dummy.m */; }; - 25BF5D9FAE084BAE3824007EA8E0196C /* IQToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6E8AAA322B293EDCA1E1F57A1D9B21C /* IQToolbar.swift */; }; - 263E6DC0FCCF45948585AE8D649ADCE4 /* UICollectionView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5EABEFBD7CF387EA5363ACEB8798AF28 /* UICollectionView+Rx.swift */; }; - 26473D198EB45A2473124E6EA6613844 /* ConstraintMultiplierTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23F066A38F0BF399965EB84BC9A90B8D /* ConstraintMultiplierTarget.swift */; }; - 26477377CB3C1642B33BCFA030ADB59C /* ConcurrentDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FAD79C41B45B523A59B0002355A9946 /* ConcurrentDispatchQueueScheduler.swift */; }; - 2655C03CDF30A7690E43D892DDC95AB5 /* ZFPlayerLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C11C30399545FCCDA38C3426C95032C5 /* ZFPlayerLogManager.m */; }; - 27043FD4E15DBD03FD933A60109C3009 /* EKAttributes+HapticFeedback.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4E84B6EA2A74FDEC8600BE08CD2B986 /* EKAttributes+HapticFeedback.swift */; }; - 270ED905740AD9FEFB9A346AC527D53A /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = C63B20DD5CDF937F94ECB7D6B393EE91 /* SDAnimatedImageView.m */; }; - 276B6A8A1507153CF07CE4D49B4B6A6D /* UINavigationBar+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = D641644EF0296AE65C2F1D2249810365 /* UINavigationBar+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2776B3355D535E5A68E18C4C77B2D595 /* ZLPhotoConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1BD622ADB420FE6BCCB6A1E11CC3C4A /* ZLPhotoConfiguration.swift */; }; - 27770DF47A61DEEB841F3E977A6BE99B /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 3161DAA35E3B01FCA4D8B391F2FF0500 /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 279C4E09D6D4113942EB37DE5DD034B0 /* JXCategoryIndicatorBackgroundView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FF66C6BE62F32172CF049BC4D7920D6 /* JXCategoryIndicatorBackgroundView.m */; }; - 2852F14FA13748CAE8C0D6F59D5EACFF /* AsyncLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 706D7A963DE9BAE212F00D54C63D795C /* AsyncLock.swift */; }; - 28E3B45C51EB7B6711CC6AF6BBA4F32F /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C7179902FA25766C671B7B414D9D77D /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28E8453EBEAA5D3187A1FB686F807A07 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = F9A4E64DDD778A0078227DB2C2AB4EFB /* SDWebImageTransition.m */; }; - 290CC252DD7A79A8CD348210A4ECEF8F /* ZFPresentTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 99A12B850606BE38C96C6F5269E2817D /* ZFPresentTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 290F4F9FD155CC62A67A003730124207 /* Throttle.swift in Sources */ = {isa = PBXBuildFile; fileRef = F89DB792BF01C3EED008EB246E7776F8 /* Throttle.swift */; }; - 29429F6FE86B4D0C4EB810163F77A83A /* Delegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED812C5DAFE92E0FE4A1E67B683840C5 /* Delegate.swift */; }; - 29A94387DA04DE3CA441D0244ED3B6E0 /* ZFPlayerConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A191F40A63AD4FA76C8A1EABA01E054 /* ZFPlayerConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29ADDEB7070613224B9510A61E41A745 /* EKAttributes+WindowLevel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B0589635BD25BF46D13DA3F74A2322A /* EKAttributes+WindowLevel.swift */; }; - 29BDE26902A035FAEBCB2DC35DEE16F2 /* ControlTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4760783B09E40542C7873933BECCBFF1 /* ControlTarget.swift */; }; - 29C7B5B61EDB9B6010093123C95146D0 /* ZLCameraConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DFC25C5487E83F0CB3C599E076DAE3D /* ZLCameraConfiguration.swift */; }; - 29F4DFF55D0B18B9ACA5820B30481389 /* DDLogKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 947D279463B5B17482D9DF2C59B091DB /* DDLogKit_Private-dummy.m */; }; - 2A6423FCAB17960280B3035F79F4DD6F /* IQKeyboardManager+OrientationNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9CC98C7FBDCEC01C9FF69AF3AD399BF /* IQKeyboardManager+OrientationNotification.swift */; }; - 2A6516A21BC488E02185E80B8CE10CFB /* DDMASearch.m in Sources */ = {isa = PBXBuildFile; fileRef = 42A5F7B3DA5278625FEC28DD31FA1A0C /* DDMASearch.m */; }; - 2A85B7D163D77E4B211737D77E073FC5 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AC82AD522F7CA26F3D020316D2D9F13 /* Result.swift */; }; - 2A9587CB9E83DC818BC42AB6D3BA6C93 /* AlamofireExtended.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF68F83FA73BDDF45C3B02E3B3DBD0C /* AlamofireExtended.swift */; }; - 2AC50A41091AEE3ABDD75F734B40BFB8 /* ReplayRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D5BCD92C44C72931F824CC5A99B1E0A /* ReplayRelay.swift */; }; - 2ADB83C7CF04E14F632C39FABDDCDAC1 /* DDBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B2ACA13B00E5467166618284A6D4BCC0 /* DDBaseViewController.m */; }; - 2AF5544BA37B5DC3132223853D6AF9F1 /* RequestModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EDA71E4655ACBB46694E637A6E3BDCB /* RequestModifier.swift */; }; - 2B6E7E401FECF3BA6B6856DAFE81E233 /* UIControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27867E8B8A05DC2157DBFE83F620C286 /* UIControl+Rx.swift */; }; - 2B799593BA9EF6DAF478B5551D7E7A6D /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2334399E5D1C6D76014E4C3364A55748 /* SDImageCachesManager.m */; }; - 2BBD8EA6B3F3A8EA8F721498BE13D6C8 /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = BC9283DA686D39710258BDB7370A42A9 /* MJRefreshStateHeader.m */; }; - 2BF1A8E6F302964E4EA7E6B004474BF6 /* RxCocoa-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B960F6DA9DBDF17B3FE9FD1535098037 /* RxCocoa-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BF6AD4F75D3FFC369CCB82DCA4C730E /* MJRefreshStateTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9567D9D031702459E9D3BDC8711B125A /* MJRefreshStateTrailer.m */; }; - 2BF7BE1115AE5E63724A339701C1D7C3 /* ZFPortraitControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = F91CB345D47A1CBC63EFA5827EAAD079 /* ZFPortraitControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C0D806E4CC111F69F6DA1589BF4DE81 /* PublicKey.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAECA9F4959686F4679BAB6D36BC79D8 /* PublicKey.swift */; }; - 2C37F2D2D4CEAD643BD8D6212242A740 /* UIRefreshControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 512A7192BE9B597992A75FCC3D929D06 /* UIRefreshControl+Rx.swift */; }; - 2C6800A5F9C1D1678421E5BEF03AB8C9 /* MABaseOverlay+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B66138500F5FE5625B962EC540FFA08 /* MABaseOverlay+DDCategory.m */; }; - 2CC3AD3D3398B56CF9B85CC4A7F9F439 /* QLCompatibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = F87F28A1356F030F69EC94B4847BE7C4 /* QLCompatibility.swift */; }; - 2CFCF233E052F29452123E61CB274CFC /* UIImageView+ZFCache.h in Headers */ = {isa = PBXBuildFile; fileRef = D6DA38D57A840333E73BC2B72B5CD934 /* UIImageView+ZFCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D4A922D913D6FF29D89DB2348B2867D /* Generate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FA79894D6DDF3F2507D0CB7D0422651 /* Generate.swift */; }; - 2D83E793BB320606B62CFE1E10C2A490 /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CA86CC183A4AD9A4542DD8672A3D58B /* MJRefreshHeader.m */; }; - 2E3D2707E7E60BE010D3246CD02D6584 /* ESTabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A558292A0FA9F6DA3ED27C424AA45C5 /* ESTabBar.swift */; }; - 2E6E030B229443E964DBCE2C5D4D8B85 /* ImageFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 797042713E274AA76DF91C1EBFFA1320 /* ImageFormat.swift */; }; - 2E7F3CDAAF53377E46D82BA29C31E95C /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 23EAA9F6CCD8479449A971A22B0C2129 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E7FA4C58210383BF37D1DD377DB3D32 /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30F546E8BCAFA33862B493120D44F9FF /* Platform.Linux.swift */; }; - 2E8ACE2E6DBE1E4629D5B33C79182C82 /* ConstraintPriorityTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CD3A91D15618FC3C13994628FD21243 /* ConstraintPriorityTarget.swift */; }; - 2EB584B7820D5A65FE8F0C0BB5113946 /* ConnectableObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4EF2D12CB1D3D8939B1F712960F69414 /* ConnectableObservableType.swift */; }; - 2EDAF39A638BF0797DAC0C75226CE335 /* UIApplication+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2DAAA88BBCD7084DE97F2CE01EA9585 /* UIApplication+Rx.swift */; }; - 302832D4B7652F756A29A925F087C822 /* Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4501AB0D576E6AE3E09907423AD2BB24 /* Concurrency.swift */; }; - 303B93CF0EE553490F73F76D9C534C44 /* EKNotificationMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37D3D04490451704B11D7D43D18068B4 /* EKNotificationMessageView.swift */; }; - 3063BE33DA99913CC2E0FCC44B2CF19E /* Disposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8992DFC4BAC285FC6B2750477970437 /* Disposable.swift */; }; - 308503CCD3E28A3911BCC7004887D711 /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADF8EDE599BD19CA803994AC9838E8FE /* PriorityQueue.swift */; }; - 3088663B2B31153DD3995BB53A10045A /* ZFSliderView.m in Sources */ = {isa = PBXBuildFile; fileRef = AF157A60B23BCC2CFA7431BE130D3402 /* ZFSliderView.m */; }; - 30ACD1CAC78C8E43E1D890E24250037E /* Just.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74BB3D3F5C55C3FF6574478AD648B145 /* Just.swift */; }; - 30F03503C4D72FD83161AAD32FC45354 /* ImageProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C3EC2559E8A3B6A447C753B9D45CEC5 /* ImageProcessor.swift */; }; - 315565D4480169AC96069B97EE6BB0A9 /* UIButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6CCD4C2D194D0F35697C8664EFA7E56 /* UIButton+Kingfisher.swift */; }; - 315E6E32711371D1E923D202C5BDF0D4 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 09A2C0481DADD9F31D999C4EBA7FDECE /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31C23CF66BBB1520FFD4D8C8AFB510DF /* IQUIScrollView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8CC1E72BBBFF3D1EAD12744E05490AE /* IQUIScrollView+Additions.swift */; }; - 31CF6A9299E02044EA28735F99B19686 /* UIView+ZFFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = D30DF5A4E8DEB9FCDC93770CFEDA7938 /* UIView+ZFFrame.m */; }; - 32D2FA4F8AC6EBE83DDF786AF4629B28 /* DDAF.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD8F1F15CDE8CF670C950CF038DE1F90 /* DDAF.swift */; }; - 33043B5E0E8C4E2805481E6D692949AB /* JXCategoryIndicatorLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 062373D2B5395BB15D1631C91C264690 /* JXCategoryIndicatorLineView.m */; }; - 33206CE1C59D7666BDDE9E1465A610EE /* ZLEditImageConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AA8E757CC4DCDE407198A52DFB4BE86 /* ZLEditImageConfiguration.swift */; }; - 33859D3CB90E4ABDB24C9227DFE85E4A /* RetryPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08232915BE097677A51DB6928DFF4C8B /* RetryPolicy.swift */; }; - 348A2399833F70160F70ABBDCB980E2B /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = A21875CC8838BBECDE58272A9514F046 /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34982A37330D9AD32085314C583123E2 /* Debounce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6872B0B64D619D409B987338BE83225C /* Debounce.swift */; }; - 34C07B18252160C63FBD16003E845CFF /* JXCategoryNumberCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 34CDD1CE37AFFBCF7003739F05D75EA0 /* JXCategoryNumberCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34EE7B15E96B44F2F505FF8B47CA47BA /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 806B3B0C554073E0DB8B0668D9DDE96A /* Response.swift */; }; - 34F4C47DFD00CBF46312DFB03A6E8840 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BCB003D38E8C40D32D4D6D347BF563E /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3530FB5ECF1B91F9E3243BF34F446980 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = D377340625F32C54FD755E656C656D64 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3542BDC08CBCA8BB1951AB507AB42AA1 /* JXCategoryImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F9E0B0BE0D9CD1ADF71FD9BA9AE55704 /* JXCategoryImageCellModel.m */; }; - 3563535F257C8923038E5C66A70CD288 /* BRPickerStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 716203801373EFC5D8CF145D3D1E3AB5 /* BRPickerStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 356A09B4801D3710D98D6CAC09E9AF6F /* NSBundle+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = C060210364045E3C55FC24892C50B322 /* NSBundle+DDCategory.m */; }; - 357C743823312159B0278D1810A8A481 /* EKWrapperView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 626B37D6DBBAFD585FD1D4209C8733B4 /* EKWrapperView.swift */; }; - 35A75545A9493BBEC99CA5D8F436E5E3 /* KingfisherOptionsInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 217C866C59E4E876CAFEA4A8B18EED9A /* KingfisherOptionsInfo.swift */; }; - 35B124D386A8A344DB4E378136803251 /* ZFSmallFloatControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = F2350383A51553838E2F9C6F287D4094 /* ZFSmallFloatControlView.m */; }; - 35ED1671F8FD3A5108E1B917130980EE /* EKRatingMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 518D33F31F8D21142313CF1C22FDE058 /* EKRatingMessageView.swift */; }; - 361F5D03E21DFB0910B98350786B9CAD /* Materialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4851D82A3D7915BCD7AB79F3C678EA66 /* Materialize.swift */; }; - 36AB9414D82F70F6517E1948301B56E6 /* SDImageAWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 67D7B1447714127064AB639B3D33E96B /* SDImageAWebPCoder.m */; }; - 36B204B1822DC0BB1A37AADE7218B28C /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 532042ED19DEFC92300DD64C810B51C7 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36F40E8EBE86E294348DF7F319E98D8A /* AutoUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1EC1C2ED9EAB5FAB42E1362ECADE8C7 /* AutoUI.swift */; }; - 36FEB6DD53D08DB2164BEE84F3653BE7 /* Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = B506DA3C8289CBE81DDBAF24891B135F /* Driver.swift */; }; - 371357BFE566BB5AD5FCA41408BFDAF4 /* PublishSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = F72E68825DA49D12F442AC4EF0859F0F /* PublishSubject.swift */; }; - 372DFC5E474E6F5988D709EE7BAD99E6 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = EDAEE2D7D51698FCC869FC8D93A7B686 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 379EF14788368688008C6046091CBA72 /* ESTabBarItemContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F508EB41ABEA68EA374915014019AF1 /* ESTabBarItemContentView.swift */; }; - 37DA31E97761C9AD09DB9F3AD80AAA70 /* JXCategoryViewAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 7254EBAA62F272CBF1EEB5BA22B06E77 /* JXCategoryViewAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3808291BFCAA43687CA6EEEBA0A23A78 /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = B14C177DF0421F096BF87F6CD71F13E7 /* RecursiveLock.swift */; }; - 38113EA83CFE5B14B6BCFC96772A2BDE /* IQKeyboardManager+UIKeyboardNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9BD42BD673516F1481F3B0A1F54144A /* IQKeyboardManager+UIKeyboardNotification.swift */; }; - 388BBDF2D1096563AA5C9266E06AF151 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 234A9E46F3A62219A136813138A64ABD /* NSImage+Compatibility.m */; }; - 38B5C354CCEB18536DC8739368429DA9 /* UIGestureRecognizer+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = C16BCEBF8B14C05C1C168CF5066D490F /* UIGestureRecognizer+Rx.swift */; }; - 399BF4D667A42A277E91597E89A3CBF0 /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 712075C261C7E4FD8A48EF269F00C315 /* RedirectHandler.swift */; }; - 3A10B0AAD9F15B171EF41F035369BECB /* ZFNetworkSpeedMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FFFE787FDE9FF77F02B01967B7C7A35 /* ZFNetworkSpeedMonitor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A6E2C4AFDE24B27E1107FCF960F7927 /* MATraceReplayOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 8940E34A80FE731D6E6C878E255F6A67 /* MATraceReplayOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AAB1695C0F9AAE144A7E37E34966F45 /* IQTitleBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0CDD553F3C9F50C5FF0BC701343181D /* IQTitleBarButtonItem.swift */; }; - 3ACCD6DF1F9C7989B0BB3482AD01D786 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B589E8C9316D95F22F9385FD5443EEB /* SDImageCoder.m */; }; - 3ACFBA19004CE54466BBD8C6BEF1D27B /* JXCategoryTitleImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 76BE4167DFC20F1CB2B487BBC72288F9 /* JXCategoryTitleImageView.m */; }; - 3AE1763557FCC9AAB408164944AE7D77 /* SerialDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86C39B9E1ED8091431E51484A8EC4847 /* SerialDisposable.swift */; }; - 3B14941EB241AF1ED07CFF634860BE1E /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E0E4BEDFFDAE8979598322B432BFA24 /* RedirectHandler.swift */; }; - 3BA07D26BA7B31AD481DCF513B101864 /* ZFPlayerView.m in Sources */ = {isa = PBXBuildFile; fileRef = C5E6E3CA4A8E52A62926BBB0C348C335 /* ZFPlayerView.m */; }; - 3C11CB98AFEFBE7A201DA71292528A69 /* EKRatingSymbolView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CCDEC305D8C287F103BFB6BBF51CBB3 /* EKRatingSymbolView.swift */; }; - 3CA6371C85FE25DFE2889186676D041B /* PrivateKey.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E177604F0AA8AF2D9B5A390DCBD4E74 /* PrivateKey.swift */; }; - 3D1DB9B06A570F6243016C3FB3692C4C /* ZFPlayerController.h in Headers */ = {isa = PBXBuildFile; fileRef = D59C0C03644CD9FEB9AE0D8C65741CB3 /* ZFPlayerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D99594286ED1D20D88E0A86886224BA /* SwiftyRSA+ObjC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75B7B148702B0070DA3C265A01B6DDDD /* SwiftyRSA+ObjC.swift */; }; - 3DB9872080D437F2A851158F1F8F2693 /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 05259CD0832517649132AB0DB1A78B8D /* SDAnimatedImagePlayer.m */; }; - 3DFD9C3AA94590DEB57E60323D7493F8 /* DDBaseMutableAttributedString.h in Headers */ = {isa = PBXBuildFile; fileRef = FFCC805403C8886D7DE1892B7355F3A4 /* DDBaseMutableAttributedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EBC1473805AE2975380A13C46E9394E /* RxCollectionViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20422D1E4E74FD8DB3FB1E917DE53AC8 /* RxCollectionViewDelegateProxy.swift */; }; - 3ED0A4291D25D0638856D988C3ED44CB /* Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1ECD6B430CCCC5B4F68E166B0F782276 /* Create.swift */; }; - 3ED2486A34EFAD23ACEA160695EEEAD9 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 3521E43909548D5C449F95A3DB220912 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EE1F3D911A2EEFC8A9BC6503440FAA4 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = BEA8B765F481DC57F4732FDBF5EE36F9 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EEB15302467C142726D815653A92E15 /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = B570BA14A14CAAAD852EA4DAF5121084 /* SDImageGraphics.m */; }; - 3EFC804679D24748F1AE2B2ECC493751 /* ZFUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 759491B4FF8FB9E9A878BC209BFD4F7B /* ZFUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F04950F30488FB6AD475A0519B0B16F /* JXCategoryCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = C12E4B65F0F161EB8E92BA3F5B6D43E9 /* JXCategoryCollectionView.m */; }; - 3F67AD396C9B4D06116E69539EDE330C /* UITextView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = FC971A3A9EDA097ABE98F185983DB4CA /* UITextView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F7C7042BBE1B605BD0FA37056BB1D78 /* _RXKVOObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = C88E3188BA7AF942D1FA7C974083D95F /* _RXKVOObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FE17AA44DD3A1A5179103D3798D079F /* JXCategoryDotCell.m in Sources */ = {isa = PBXBuildFile; fileRef = ABD687ADEBACFF2F6ACF83DCF14BE1D2 /* JXCategoryDotCell.m */; }; - 40322DC308FB06758FB929D98C1FF167 /* DDBaseTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D522B239E95E125274CFAA3A5D14A78 /* DDBaseTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 406B70834D7638A4706184831DA1BA56 /* DDPersistenceKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C1C63D3300052B1D92A1FBB7216FCC29 /* DDPersistenceKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 408E77F6FB2A28181214F3571597C6E6 /* Signature.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53FE5C8F8EEEFBB9CE4058A6FBAEC2C4 /* Signature.swift */; }; - 40B1C6950FEF3F6580E7EA6DB58C191E /* ImageTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = F289594E61B9C3547D5D9FB34C5C1409 /* ImageTransition.swift */; }; - 40F0EC1B6B9648E6668E369AB598A876 /* BRResultModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D58E7DB5FC0169C68C47543EFBC12BC5 /* BRResultModel.m */; }; - 4139B49E8556C97A3D8FE0AB885CA1FD /* JXCategoryListContainerRTLCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EB9F950077FA14FEE9802FB20BC2E686 /* JXCategoryListContainerRTLCell.m */; }; - 415486C406B7F4398FDBBFCA7C6FAA8F /* DDBaseViewController.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C0CC88DEAD39E5F951966CC66C8E0D87 /* DDBaseViewController.xcassets */; }; - 417F88073D2B0203BC70C580CA9AACFF /* EKRootViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F9BCBB578AC64837E4C65D41B98530D /* EKRootViewController.swift */; }; - 4223E964C57E9A4588FA614FE769EBB1 /* Toast.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7397272192155E4857A772EBD8C46EE /* Toast.swift */; }; - 423A35F848C2ACF286C3733820576B57 /* DDMAMapView.h in Headers */ = {isa = PBXBuildFile; fileRef = 072E7AF6289749220B171AB2A5F0EAFE /* DDMAMapView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 429AC37278014388FB98EF000ABF9700 /* MAPointAnnotation+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 892F3F4CD250BF18FADDFC9726FD9963 /* MAPointAnnotation+DDCategory.m */; }; - 42ECA44A736B2290345EFDB19C3311D3 /* Box.swift in Sources */ = {isa = PBXBuildFile; fileRef = 391B2BDE22603532A69DA3183B9889A8 /* Box.swift */; }; - 42EFBF5C9BB24C7EA95085FE56E949BA /* UIButton+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 155DD87F7F232F6CE6A79AE12B725191 /* UIButton+DDCategory.m */; }; - 432CDB24FD1A51EC0E886D74F109EF4F /* MAPointAnnotation+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = EC53D7B46DBDAB7832BF075AED295D1B /* MAPointAnnotation+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43851601A073C31B1933352BEABD5BDA /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DB3B3078B263C93768051E31C556659 /* Constraint.swift */; }; - 4408CB04AFDA8CC998F4FD00910B4738 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FAE956FC25FB007617385715F75ABAE /* SDWebImageOperation.m */; }; - 441793180F0D4EFB3B71D6117EDFA872 /* ESTabBarController-swift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 24DB28A9C633662C130D493AC963ACBA /* ESTabBarController-swift-dummy.m */; }; - 441E5F3E3ED6811904F96207FFC3A681 /* ConstraintLayoutGuideDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76BE111FB993C38F2F5FF734B6967FFD /* ConstraintLayoutGuideDSL.swift */; }; - 4433D02EE9231F24E94E5FD44492907C /* UIViewController+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD47C7E094CE4B7D5DE6B3AC6B090994 /* UIViewController+ZLPhotoBrowser.swift */; }; - 445D52BA058B63171E1CFFA666131CFE /* KFImageRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01D0EA99062418CCAB1182100B3FFEFC /* KFImageRenderer.swift */; }; - 4482C25FB41CA449FB31D498FBC4C50C /* GradientView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4605AB20E780CEEBAB5915C8ABAFFE4 /* GradientView.swift */; }; - 44BDECE8B10C6DFB4BBFB8621A636FB9 /* ControlEvent+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = C40FF4E2E866ECD39362F72377471EB8 /* ControlEvent+Signal.swift */; }; - 453C775A0F9ACCD310681A1C49D051AF /* ZLCustomCamera.swift in Sources */ = {isa = PBXBuildFile; fileRef = 920F25B4E7A48C42C4BD05D8820CD675 /* ZLCustomCamera.swift */; }; - 456C758D7BE4EDCF597AD04A3D095711 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DA0819A2B8374D63CD40C9B248846D3 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 458F3F6A6624C1F3A7AB2ACCBA43C04E /* Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 193030B448D45A623A5D67C4437BD0E3 /* Debug.swift */; }; - 4591BA154B3F857C738AFDB9B28461B5 /* DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5155500DB4A4AAC9D6124FDC80CC351A /* DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45B5C890DFD9AE048E438D0D73698AD3 /* MainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 036CB30248C3E4844C34996061A14975 /* MainScheduler.swift */; }; - 45F2115D4EC21D89A899E9D969CA1810 /* NSTextView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBBD402D4B1A0F17CBF107CF4CCAFB85 /* NSTextView+Rx.swift */; }; - 460726FAEA72E21D26141E4A584E1EA9 /* NSAttributedString+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DA7D1FCAA7DCF748209F19B062A9016 /* NSAttributedString+DDCategory.m */; }; - 460CAF3FCDD140A11875B67D3124B8BC /* Combine.swift in Sources */ = {isa = PBXBuildFile; fileRef = 452399CF8D0225CB3D278F7746158C03 /* Combine.swift */; }; - 46150F571AB8B8C37ABD6D3A04BBE786 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68910D4570412D613971BE54661ABCAA /* Error.swift */; }; - 463859BF5F9D7AAD1F9216EA25687599 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 82D5CEB25905D652A61363E1BF3A8275 /* MBProgressHUD.m */; }; - 464C0BACBF2990B25DC1444413849288 /* Driver+Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02BF9C5967569BA29EAF7CFC6674992A /* Driver+Subscription.swift */; }; - 465DDC88E2B046AF9FBB74B1D3D3FECD /* DDAudioPlayerKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F66B1DB098C3DA48026D74A3F43CA39 /* DDAudioPlayerKit_Private-dummy.m */; }; - 466076161BAFA79E1EB9C034956DB0CB /* EKAccessoryNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9064B229A0C9BBF7710203F345112E0F /* EKAccessoryNoteMessageView.swift */; }; - 468F7993E475998F74D45D577A1A8079 /* ZFLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = E1B8068A6C541BB6AFE6687238DB16E7 /* ZFLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46C36454D8E82CEC47B95D6426063110 /* ZLPhotoBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D734A5F0B36242991448F3409A0D567 /* ZLPhotoBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4723320357D0EA504D83E69BBCF159D6 /* ZLPhotoConfiguration+Chaining.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3AAAD26A8FF316676A513010A48A759 /* ZLPhotoConfiguration+Chaining.swift */; }; - 474B94BF4B12B3168F0A330F9858BAD9 /* DDSwitch.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB5CEAF3844CDE954B6DECF9739454F6 /* DDSwitch.swift */; }; - 474F3D2608AA806A62D858B4D0D25CE1 /* UIBarButtonItem+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EC187E4E9767E7D3DEC80E5FD12876F /* UIBarButtonItem+DDCategory.m */; }; - 475A2347C2C908A8DDEACC4C98C0C388 /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 228670185E76FB0C1D655D0C6B53DD63 /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 477BADEE897F3C0AA214683C37B50980 /* DDFontKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F222BA6E4D09D7FB5E244FFC860E95B7 /* DDFontKit_Private-dummy.m */; }; - 479C9D4AE8D55A53F9AA78A89E8F6BF1 /* GIFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = D01D009193A941A003AC0517D76DE454 /* GIFAnimatedImage.swift */; }; - 479D3FA9117A1388E094BEE1B11F5A00 /* InvocableScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 649FBF53BF9B5ADD1F9DBF131DE3EED3 /* InvocableScheduledItem.swift */; }; - 47ABDC62006F547E265B058A1D70E8BA /* RequestCompression.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA0A74178538170BF7A45834883DDEF7 /* RequestCompression.swift */; }; - 484940673D2B49420F4CA31D609A52F3 /* RxTabBarControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A893797B0F1B377CFA94E91DF9AECF7 /* RxTabBarControllerDelegateProxy.swift */; }; - 485764B5F9286604D6A98F746CAA326C /* UILabel+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B1E8288ADDE2F4142A6C7152BB42C76 /* UILabel+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 489908D8944C17F469CB8F014D017737 /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = D69B86109108D36D6C03F6928633BA0A /* Map.swift */; }; - 489EF834E28E8BE7EEE1EF4092BAE0EC /* ImageDownloaderDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4A23E63B70F4027F910FF9823B0A5CA /* ImageDownloaderDelegate.swift */; }; - 48A713B2366964DAF4D1B0D628C95A81 /* NSMutableAttributedString+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = D161CC3876E5C0136B9B88CE4F5A805F /* NSMutableAttributedString+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48C8179391555746A729FA6483B7EAB0 /* JXCategoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 771F6EA238053C8C0E8B89BB2E8EF73B /* JXCategoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48F03D8014ED5A233AFB385173FADA7D /* SchedulerServices+Emulation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19FBC541AA06F373125EE9F7B4D1203A /* SchedulerServices+Emulation.swift */; }; - 4980DADD831068300F504E6010C54A08 /* DDAutoUIKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F58D86E6745A5AB6737569C4B03F99FD /* DDAutoUIKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49B34E046084601F4A21F26D84FE832B /* _RXObjCRuntime.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A3A303562921D64DF80A79B6C1D7FCF /* _RXObjCRuntime.m */; }; - 4A48E82F99ED27665CF929386AB1FFC6 /* ZFPortraitViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0436294A00804FAE3E7C9243FB523E7D /* ZFPortraitViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A5855A5E58F24A944BA6D1CEBDC5BBC /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 74B338DC5F440910769E39B703F756F7 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A73E66A0348DE3EB7FACE0F8FD7DA61 /* ZLPhotoUIConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = BEE633116376F346AF7F8F6CA982F22D /* ZLPhotoUIConfiguration.swift */; }; - 4A8438BA1927768B5ABF3C58D9B8E25C /* DDToastKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 103D674CFB66E101CAC882F6747C5733 /* DDToastKit_Private-dummy.m */; }; - 4AEEFC52D4F0E173563EF56901855257 /* ZLClipImageDismissAnimatedTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6783AB064D437BD7A412067C99B4DF37 /* ZLClipImageDismissAnimatedTransition.swift */; }; - 4B541C41E90C260270E635F42EDC9B7F /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 2009FB64C9E51FAA7F1C661FBE926B1F /* UIImage+ForceDecode.m */; }; - 4B717036F93677425DDB9682C705B644 /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E6024DCFBB4524B1AC53A2B94C3B5AFF /* Alamofire-dummy.m */; }; - 4BB281256AF4C43F5356440D9BCA56AA /* JXCategoryIndicatorCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = CB7E977B6E943E626C7977D2A1745257 /* JXCategoryIndicatorCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C12DE85147AE7B743C1FBF85A6B4304 /* JXCategoryIndicatorRainbowLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = 22FC17AF43D343B080C6CA75FDBBDD57 /* JXCategoryIndicatorRainbowLineView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C1F598F2D3B0EF1A1A20C16A5D0454B /* DDViewControllerAnimatedTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BD14E8FA1A6F6595A796FABF0E1A2B0 /* DDViewControllerAnimatedTransition.m */; }; - 4C2D78F95C25A31C60C9B523DEFA2D17 /* DDBaseNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 116BB0872C9EBB9F68AAF275261CBE2D /* DDBaseNavigationController.m */; }; - 4C83474F88E637BABA6D0FC1ABBD36BD /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38F344FEA99B81836A0E8C25B2A98111 /* Bag.swift */; }; - 4D80EADCF5A1430DC70053CE31046259 /* ObservableType+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D3EE162F3792639946D2A530C5CBC39 /* ObservableType+Extensions.swift */; }; - 4DD86C40D4F594076831DF90DFAF5961 /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AC70FFE362EF3AB3FF0ACD35A4CE3E6 /* MultipartFormData.swift */; }; - 4E1B724F70879610E56C69765A0E2938 /* UIScrollView+ZFPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 883D0D7B956CCB8AEACB177E034415AC /* UIScrollView+ZFPlayer.m */; }; - 4E2E95B4812870A973F2D0FCECF307AA /* NSData+SHA.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F76FBE05D9EE9EA28687892BF629DFF /* NSData+SHA.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EE30E33D02A0D59F317A9CFA0009B01 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D379821807920A04BDA1B9C4AAE05A2 /* SDImageIOAnimatedCoder.m */; }; - 4EEB05C55B66338EEC5261DDC2B1A341 /* ZLPhotoPreviewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43BCDBABD77CC7F5297BD82BB819F04D /* ZLPhotoPreviewCell.swift */; }; - 4F338A6C52C35B05E8A873571A9815D7 /* IQKeyboardManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17B24D9588F2DF70F55E988A1A6CB2A0 /* IQKeyboardManager+Internal.swift */; }; - 4F50E550117789F0699F8F37CFA9BA6E /* JXCategoryNumberCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F04B1853928E65D1147C54AA9AA215B /* JXCategoryNumberCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F59B6CC1D4B3EFAA25F42D96C22FF40 /* _RXDelegateProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 1068152D2EF51248E7CC22802E41CBCC /* _RXDelegateProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FA542506516B8922F8AADE85C136E1C /* JXCategoryIndicatorImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = B8B4E170B30220ED1ABFC02EA22F60C7 /* JXCategoryIndicatorImageView.m */; }; - 4FB78B49FEF2C50EAD5A5F7761001E02 /* Runtime.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E23994B38823A2C0B09406E96E37D71 /* Runtime.swift */; }; - 50073679A8A48F3B3D270E46271A96A7 /* AVAssetImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08E46A417F995AC6613569AB8A4ECF93 /* AVAssetImageDataProvider.swift */; }; - 502EA6DB92E0383603F215C479FA7D67 /* UIImageView+DDWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = B6BBAE085040BC9BC785838BCA07D8EE /* UIImageView+DDWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50520A6CAB33DD6A5F11562B65CA78A3 /* JXCategoryTitleImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A1531875C67B4ABB5AAEF9A33DD2FC5 /* JXCategoryTitleImageCell.m */; }; - 506E948BE690B49ADCEA9A3EE5A043E1 /* SkipUntil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 378042B17205B4AF9E31C1411F3392E0 /* SkipUntil.swift */; }; - 50CE790313543FF62160F5B881C45E52 /* Concat.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9B379106427F4ABA14026A5C879745A /* Concat.swift */; }; - 50DD8666AF1EAA8E711927A3EBC87508 /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = A9256D3714F10A90DA1BA7212A695000 /* MJRefreshConst.m */; }; - 511B522F19916DD68AF4EFED285AF968 /* IQUIView+Hierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 286FEC52CAA80C8D342492E81E89B954 /* IQUIView+Hierarchy.swift */; }; - 513CADFB7F193445B353B7320A624FBD /* JXCategoryIndicatorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 60314A6B6456E8A6441E5AAC53399452 /* JXCategoryIndicatorCell.m */; }; - 51460A037F3BD4D23EB161ED5D9F279F /* JXCategoryListContainerRTLCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 7609FEE06A1D3532D1C50F784992CA35 /* JXCategoryListContainerRTLCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 514C90A8CEB16B4435C31EFE4FA0C025 /* ObserveOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = E26786300E7990BA147EAC57C853A1D8 /* ObserveOn.swift */; }; - 5150F8B34780E4E3DD7CF2219EDCC4C2 /* DDKeychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = F48B31330181A6CEA6285D68D1930D47 /* DDKeychain.swift */; }; - 516E3095B8774B6FA0FC6C672ABE4B57 /* UrlLinks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A908A546FB59017676F0C931DB3792D /* UrlLinks.swift */; }; - 51734B077F9900737E1E59F4E5D6CAFE /* JXCategoryIndicatorParamsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D0EEC141105B6EE53CEDC1EDF464374C /* JXCategoryIndicatorParamsModel.m */; }; - 51A04091CC13E866AB53A68044B26D47 /* UISwitch+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = BD0143D4AE7CE50611E13A74E9CA36D2 /* UISwitch+DDCategory.m */; }; - 51A44A46753219CB3E0996BEE54907F8 /* ConstraintConstantTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 982ECA931A70E8CA08E11F2A9403EAFD /* ConstraintConstantTarget.swift */; }; - 5206731CF4B978F91579C81477B4FEBA /* SwiftSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D0F309CE1BDDDC0EA78E3E70432E00D /* SwiftSupport.swift */; }; - 5230D1C53ACB224C4C1063D79629F995 /* UIScrollView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = C80B46B81E9F8AD4793199E559EA439E /* UIScrollView+DDCategory.m */; }; - 523D1B0BB7DE56448B35661435267EC0 /* ZLInputTextViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12518713B31AC6922131E90E7B9777E0 /* ZLInputTextViewController.swift */; }; - 523D1B7E3260356560241D0C2A66A49E /* JXCategoryIndicatorImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = E70CE3782A5F0EA3093963B09A8F7BA0 /* JXCategoryIndicatorImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52563FEE66AB6AC291788E02FEE56DFF /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B17520F1937523A7BEB4CC81A1D91D7 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52E7EA351B5EA7DE9BD235418C0484E4 /* EKPopUpMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26C10877BAE09CF271CA0D8362D7A023 /* EKPopUpMessage.swift */; }; - 530C1E6E8D8210BD44D1C17B9A089BDF /* UIImageView+ZFCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C7EF984EF3EFD2C897952681BC7E4BB /* UIImageView+ZFCache.m */; }; - 53136C9E69D0BA58AD108FF73345FB79 /* RxPickerViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0F39A19B87F0AADE9A36F8C092E68A9 /* RxPickerViewDelegateProxy.swift */; }; - 53693C4A79EC833BC3BA47F4CAAC9E44 /* ClearMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5BD125244CCD4A25E8260D6DC26CC5D /* ClearMessage.swift */; }; - 53B0764704EEAFB1F1AB85BCA26D7324 /* UINavigationController+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2855E06F9F10691B595A8F17B10255C7 /* UINavigationController+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5434354C379A1C85A849409F278C7BC0 /* DDMutableAttributedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = F31EFDE70D0EBCBD2BE3D0CCF09DEA93 /* DDMutableAttributedString.swift */; }; - 544ECC3E14638E1FDD60FDED6E71A5C0 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AADA96E2E0642032A7525A05A35E83B5 /* SessionDelegate.swift */; }; - 54BFDD82C3BBC603F1BA81AA8E103EAD /* ZFPlayerControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = C1DD28DA6F2BDBEE79793A9713DD757B /* ZFPlayerControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54C7634794172F98C306F0B3597D5F8B /* ZFPortraitControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = B57AC1DD2D20C0444F00D97E064EA74C /* ZFPortraitControlView.m */; }; - 54E7ACA4C129B78296C039BFE5E61BC6 /* ZLGeneralDefine.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BD51C9DAF8DF4365E17BA2C13CCA14F /* ZLGeneralDefine.swift */; }; - 5551815A96AC2006ED7008C9DD3F8F56 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 164D33F7625E9F75A71B0CE124AEB18E /* UIImage+MemoryCacheCost.m */; }; - 55681689216EC4EE381D1373452F586C /* Catch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 848BA543148270E52815E8A9B9CAE339 /* Catch.swift */; }; - 55736FD6531A0F1C3B1FDB92244D02EF /* Array+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5BBC4067CA81BBAA4EBFEDA598AC2D9 /* Array+ZLPhotoBrowser.swift */; }; - 5596737D158F381E5905237CAE4C049B /* TailRecursiveSink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62CA17BE2901DB71E2E07C045BCF74D6 /* TailRecursiveSink.swift */; }; - 559C39AC9FE303F8E073EC5C205F3C58 /* DDAlamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F985D8E9B815F9E4A7232388ECC0EC1 /* DDAlamofire.swift */; }; - 5619747115BC45D8EF9E0AFBFB7754AC /* Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86DC26E1C0701A192C2804300A80F339 /* Signal.swift */; }; - 564F74F04646D901439FA92F30873B9E /* SharedSequence+Operators+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32EAB44870B9BE5FF389C54AF303C863 /* SharedSequence+Operators+arity.swift */; }; - 5664FEDF3A5F6FBD52B9B19B2EE7360C /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 13ABA4D5A71236BB7E6AC1A51A1C1A7A /* SDWebImageDownloaderConfig.m */; }; - 568DF1ED8C470080C126EA9D00448949 /* DDAttributedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95B5C791F3B2A408B2E8C5912A3FD12A /* DDAttributedString.swift */; }; - 568F1FAE5DAE25264020340462FC6DFF /* NSObject+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = EB6DD9CCDEAE8345E77F307ACE94A2C3 /* NSObject+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 569DE30FC8737CD824BD33F9EEA60221 /* UITextField+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B4135DD76E0E5DDCC281D0EC00561E9 /* UITextField+DDCategory.m */; }; - 56D33A6E86B978BD0A7C66442E2D8B52 /* IQKeyboardManagerConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = A2B6BE45956FD5C733D827442732FB6C /* IQKeyboardManagerConstants.swift */; }; - 56E6249ACC30A676C07E28C381EA77C0 /* ZFVolumeBrightnessView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7893697D299A72F8BA75B67B7CE2F89E /* ZFVolumeBrightnessView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57096ADF117830FDA4E842AEFAD07BDD /* EKAlertMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 766332A5D5F2206BC1B60B631765F5CD /* EKAlertMessageView.swift */; }; - 5794353EC66FF75CD75D93DAADA787F1 /* VirtualTimeConverterType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 803E944794202982B6BF71FA78D3E934 /* VirtualTimeConverterType.swift */; }; - 57B80CE67B76B0DFBD48E90021B939B5 /* Infallible+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4784DA17975837AC6A1260AC753942D /* Infallible+Bind.swift */; }; - 57F7B5336A1A7C7C0255D92BD569122D /* DDMANaviManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EF2E47916B8F5D713ABA226E6EA4F2C /* DDMANaviManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57FC45421D90ECEC4BFDD97D2F19FB9E /* Kingfisher-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A909C475F40117A76DBC80DE48CEB80B /* Kingfisher-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58236AA8C078BA049D0224B773054304 /* JXCategoryTitleVerticalZoomCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 45477B3077E56B158D2A0B3597158935 /* JXCategoryTitleVerticalZoomCell.m */; }; - 58B65275D1D71CAD6F90C31279B6FCC6 /* DDCategoryKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A0C8CD78464DDFAC6AAB40D06B87B19C /* DDCategoryKit_Private-dummy.m */; }; - 58FBC07F1AB57EE09E9E2283BAEC5C71 /* DDFileManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = D98B3D2F58132F743364A7A04A7B5CB5 /* DDFileManager.swift */; }; - 5939C34E4D2E9A26E09C2334A50D4D39 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = EAD1AD83369B604327F955FBA37553C6 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5943D1EA324ADEC89AA918C05AAF5FC2 /* ApplicationInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3BD0964A6F8D1D6F6A8DDC56EEC9402 /* ApplicationInfo.swift */; }; - 594D1D762E97E1B91F0320C9CDC53E89 /* DDMALocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 55F4A82B1EB96939FFC17F35A1249465 /* DDMALocationManager.m */; }; - 5992938E905947DC3FAFDB7602E383E8 /* UIBarButtonItem+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = C151E9609F3F8263902C2A465EE7AAF8 /* UIBarButtonItem+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 599A18B882F08DE626F2B4BC6FF8388C /* SwiftToast.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8670F6A3BB697C3A2217A3C2C82C1F0 /* SwiftToast.swift */; }; - 59D42B6A518B9EA16194171DBE454F94 /* RxCocoa.h in Headers */ = {isa = PBXBuildFile; fileRef = B355B796317567F12CB7DA54B807B9A2 /* RxCocoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A18E4F1E797987FD46675D6E1A9232E /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = C0DD7AF9A83D7CE2F42E45E586A80822 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B5ABF4903443EAE2989376F637B411E /* First.swift in Sources */ = {isa = PBXBuildFile; fileRef = 152A805B7E968298AC27A46F277C1B8D /* First.swift */; }; - 5B6B5857AC119BDFE58F748F6A19BB1B /* ConstraintMakerRelatable+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0BD2BEEDF911D1C192487DDFA65BCBD /* ConstraintMakerRelatable+Extensions.swift */; }; - 5B9B3869CE36800618F1D641E9B002F5 /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 432F362B416AB2A0E3095E57C7DA1939 /* MJRefreshFooter.m */; }; - 5BB847676A6F2EC8B5A779AEBC5EEBD8 /* RxWKNavigationDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5133A03F61B7459A68E50BDB209BF64 /* RxWKNavigationDelegateProxy.swift */; }; - 5BC3B430288A8F5ECFFE9444C8323A95 /* NSBundle+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 29432EDCCC5432693311FB3A1E4390F0 /* NSBundle+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BE1573FD25A25AF030B0BF733677457 /* Cell+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E3116B641BD896DCE20A1EF136462F7 /* Cell+ZLPhotoBrowser.swift */; }; - 5BEB2A988FCD05A226349FD9C4BC4619 /* JXCategoryView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A2DAB0E486C16636AB9638A94C2C7537 /* JXCategoryView-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C8D180662E74F979FE9FA3DC5BEC582 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE53DC88755CA53BD5211B8C2D625CD /* ParameterEncoding.swift */; }; - 5CFCDC35057A3E9FD4B24DD4CBB161AE /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4145F91C15D126896258C26700097C7F /* UIImageView+WebCache.m */; }; - 5D3023A3FDDAEC5C7D316E3C88815548 /* RxTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EDE67DAD4A3F72D4A31CD81DD02F8B3 /* RxTarget.swift */; }; - 5D630D2F33419B7500AF2D51E0F6E3FC /* UIScreen+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 836B70AF1902E529A0FECE121B18AB1C /* UIScreen+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DA9D5D4FE27BA93CE470741D4A1D202 /* IQKeyboardManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0D07D99309044AA88637A2C416C0875 /* IQKeyboardManager.swift */; }; - 5DAFE0A94768A4F2964685DC73115CB4 /* Timer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11E135200DF2568A9B210DBB3C1F2DEB /* Timer.swift */; }; - 5DC4E3C2A738F07C2943D5C49C79BDA4 /* EKImageNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25D5B0EC7853FA1611F5ECF6F9051834 /* EKImageNoteMessageView.swift */; }; - 5E228FEF4C8DAD374328D4560B129417 /* DDDateKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6870A4D22EE9BC7784841FA6BFE77CE3 /* DDDateKit_Private-dummy.m */; }; - 5E2A86C5FEC548B0CB94184D17AA0198 /* SubjectType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84E85387348999D8B79FB268ECD4CF0D /* SubjectType.swift */; }; - 5E72F5BCF8F32B1B613D8D1045780B87 /* DDBaseButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E10BAD04178D8BC9A360ACB84AC6AAD /* DDBaseButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EFB9B488300A7396D40C60E2ABB5CEB /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F52EB185809D3DCD8D68EA8EFA2DC65 /* SDWebImageOptionsProcessor.m */; }; - 5F178DC2C4D71599481251FAC75742E2 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C205040D1E5A8BCE3926353BCD81A03B /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F41ADDEE1A3170476DADD035BFF8DAB /* ZFReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CD0710BE17B7076DE0C5064A4556B118 /* ZFReachabilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F73068079D791AB651DA5F0563C5EB9 /* IQBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74462DD94E8BEAE1E01733BE2145FE7B /* IQBarButtonItem.swift */; }; - 5FEB0A58659C60C0B299319EEB72E290 /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 09992FAE0A936CC4D45EB725F658957A /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6003B1CC1641FF8CD97FB90F9889260C /* ObservableConvertibleType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E281636A5A977262D61E9DB96F60A0A /* ObservableConvertibleType.swift */; }; - 602CC4A58ED9B538AFD8A04290F44C75 /* BRPickerView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A774B057A711719B7985ECF2457F71 /* BRPickerView-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 604F48C40E1846040D8B9599AA8DDAE3 /* PrimitiveSequence+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC504023A4CF8712E65954019EF54CC8 /* PrimitiveSequence+Concurrency.swift */; }; - 6050BC07183BC67B607892D4570AD0DC /* SingleAssignmentDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5684E68822F1D3E342ACBEE8770608F2 /* SingleAssignmentDisposable.swift */; }; - 60718E42CA3558C8BDFE26DF1E15BFE8 /* Single.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C7D57191F468BDA2B52987E7DF12195 /* Single.swift */; }; - 608E5CD7CA96A3E486C33D9F312FC900 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 670412B890CE30F8631D3DBF68EB4B97 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60EF2DF520F1164BB293FB035B4F965E /* UIView+Responder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0EE30168F12596011B0BB7565F9C67C2 /* UIView+Responder.swift */; }; - 619BD8E82F2F43F5D3D8D6A3496CE9BB /* NSThread+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = D7AA1041950AA3B048BA78D87D0FF176 /* NSThread+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61B5D7DACF71FABBA2A23BC96030639D /* DDPersistenceKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 56B65EA3C14DE5A8F995B9E16CDD2FCA /* DDPersistenceKit_Private-dummy.m */; }; - 61D255732EDAC6C0AAFE209C90F346FC /* ImageDrawing.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6043EB364EE370D3951635830DCE78A4 /* ImageDrawing.swift */; }; - 6210A5E8C94D9610DD9326F3F053E236 /* EKTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = D603E61638C5D8B6B4577880F43440FD /* EKTextField.swift */; }; - 62205927FF7EEB992A9BE9BBC3A00EF2 /* UITabBarController+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D457398AD0A36F0DDD72B046A387B2C /* UITabBarController+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62643C2B0784DD59DA7827A6E98164E4 /* RxTextViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FD669CF3EA8DE0C2942DD07C16B30E9 /* RxTextViewDelegateProxy.swift */; }; - 62645F034EC4123B63B4EF816CA13844 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = D181FBBAC748BB8057E08172D4F3831D /* SDWebImageIndicator.m */; }; - 62AA511D566BEA64B2DF7CEF1AF91B9E /* RxRelay-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EDF5720A320880B0D51D92B4E3903737 /* RxRelay-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62E03A7C90AC5E5B1D0112A6CC78F131 /* NSBundle+BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 428BB213BB5CB7CF5DD1520FAD9BC61D /* NSBundle+BRPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 638AD6074B37A0C82745B41ABB520CEF /* DDMANaviManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CEC4DCA63675BD6DB49032ED12D2426 /* DDMANaviManager.m */; }; - 639859131F5B6B971A6D5F13570E2E5D /* EKAttributes+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7231A1CEC3FD30E18906AFFBE289E2F6 /* EKAttributes+Position.swift */; }; - 63FFF49598498CF8C2ED679A60632466 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23F812061A0FADB75F57187E35DD1A70 /* Request.swift */; }; - 6405B88F00699FB27D556521FA391E9B /* ZLThumbnailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01122F2913AAEB4DE71A78D263C4FA14 /* ZLThumbnailViewController.swift */; }; - 6494347F049B7EC6FC61F86A4E757BED /* ConstraintViewDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DD865475CC7F8FA72B9919D6A1D6FBA /* ConstraintViewDSL.swift */; }; - 64C3041F08A2B870F8EE53C9DCF2A5AE /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = DB97BDF86E26A2A217026453B39D02A5 /* UIButton+WebCache.m */; }; - 64E217B3FE62EEA10B5EB992A7B2435D /* UIActivityIndicatorView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CB96FC1D8DEECCCAC04C3A2285F2807 /* UIActivityIndicatorView+Rx.swift */; }; - 65393DFEDA642FBE76283D75C070E00B /* ColorUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1E5B89FE2BD8A0B0D3B2D9A4B27068C /* ColorUtil.swift */; }; - 653CDA931425BC102ACA70C32819CD11 /* AsyncSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = C842FDBBDB7AC6BB51DD45499CB83DFD /* AsyncSubject.swift */; }; - 659075391B642E87AA542B9F3EC30173 /* SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E5E79F05719FA8B3FB969608F509571 /* SharedSequence.swift */; }; - 65FBF2652959C0C03F5BEB1A97949DCF /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49BC6C5577BF8216BBB56CC43A0F28ED /* Protected.swift */; }; - 662D8B722CE76FE956E05768FD3ED3B0 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6074F691DB9F268B99C5B70A7ACF4B9E /* MJRefreshComponent.m */; }; - 6643E151818434BBCB5D20BF508EB03A /* DDBasicControlsKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 45B0433A65006C9585B4DDDF463F1C62 /* DDBasicControlsKit_Private-dummy.m */; }; - 668C9B800095794E5D00090BB2E3CECE /* ShareReplayScope.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70D91EEB7F91167D35E862FFE0649EC9 /* ShareReplayScope.swift */; }; - 669426523C46BED22DB96FFC90045F60 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B6DE6BDB74F27E5D2A2963CF80E901B /* SDAnimatedImage.m */; }; - 66A4D5DEBBA734D31FC0052BC438A63C /* EKAttributes+Animation.swift in Sources */ = {isa = PBXBuildFile; fileRef = D319C5607ED9AC195CC83D1F272DA64C /* EKAttributes+Animation.swift */; }; - 66A90DE49D5D62A6B8B93B1BEB6BB0E6 /* JXCategoryImageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 0860D31ABF0729C6270013AEF0C938E7 /* JXCategoryImageCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66B230DF4FD3A8ED74F8876F6F347D5B /* MemoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24AB60430C88BAE9A51BB73EDF64E5B7 /* MemoryStorage.swift */; }; - 66B8B64583388FBE6401760C7858A1D2 /* PrimitiveSequence+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 319A6DEF8780E66CED6DA98807DAF3D6 /* PrimitiveSequence+Zip+arity.swift */; }; - 66EBF250FBDF17D3ECF9D4727650C6FE /* ImageView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8ED51CB709A5C22E282B9EA5A763792 /* ImageView+Kingfisher.swift */; }; - 67361CCD8BA6B13F5AFA500684267561 /* JXCategoryViewAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 7600AA3E434EC03D93F059A0B28A028B /* JXCategoryViewAnimator.m */; }; - 67613012FC19662F5A1A452C9DFD7AF3 /* EventMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51FCF11C1D9AF01314CAC5DFDD70C064 /* EventMonitor.swift */; }; - 678E3ECA55B06B72144E0F1FCB7792D7 /* IQKeyboardManager+UITextFieldViewNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C298E694BE1435C44BD309B7BF4845B /* IQKeyboardManager+UITextFieldViewNotification.swift */; }; - 67F2E90F42B5116F653D1FCC9C2E9D4A /* PHAsset+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84522570DAD672D58AA4E389329D7CEA /* PHAsset+ZLPhotoBrowser.swift */; }; - 6819E936EDDC5F64E03965DDA16F6EA2 /* ZLProgressHUD.swift in Sources */ = {isa = PBXBuildFile; fileRef = A363A011B34262196863671FE274C8DD /* ZLProgressHUD.swift */; }; - 685297AE4AE28A8EA07BECA639E313E9 /* DDView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B253B4FDE95315E78B76766F4CE6E773 /* DDView.swift */; }; - 68B4FCC1E1A2735532B81982ECC9BE5B /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BBF6D50AA0248F251212A85BDF83338 /* SessionDelegate.swift */; }; - 68C20F65E3110735F394C2D1E0E60AC5 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 5375A076009E1019AE686602332C2A5D /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68E3BB3C139447BA9A82E53CF485909F /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 33131CB1B44363868718F6FE67AC609A /* SDImageCachesManagerOperation.m */; }; - 69628B06AF6EDF37ABECD410CCFF53D7 /* SwiftEntryKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 975DCF119919FD799B4096722F0FC6A0 /* SwiftEntryKit.swift */; }; - 698D4BC94388BEEF0696C5F30A549DAB /* RTLManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 96A63E634069584FCCD26090DA876DE5 /* RTLManager.m */; }; - 69EC7466EB3C133CE0D82257EF336100 /* ServerTrustEvaluation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 961AE890FBEFCD5604AC60F804211247 /* ServerTrustEvaluation.swift */; }; - 6A6383D19FF985A850154722F2BAC12E /* UIApplication+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = A75E39D1AE5EA909AAFFDA481B1C86B4 /* UIApplication+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A6F48CBEC40D32D1FED610A00C2CB8F /* ZFPresentTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 450EDB90DA887F1591A7E3715563CE5F /* ZFPresentTransition.m */; }; - 6B243EEB7444D034A045EB712ECBF436 /* DriveRouteCustomAnnotationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B248BB25D78BD36E1A612EE1BFAFC7C /* DriveRouteCustomAnnotationView.m */; }; - 6B354D42839B601C9DEFD984415411EF /* DDControlsKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D90494C68EB284EC36FEDDBD7B48491 /* DDControlsKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B553F2B3704D9BD7FF7FCE04E403CC1 /* UIFont+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = CABD0292800696BF629AE9D17BEF0C66 /* UIFont+ZLPhotoBrowser.swift */; }; - 6B5DA39E14AFA54BF0994DB3AC694772 /* LayoutConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = AAA982518F09F8225962D06C2F751884 /* LayoutConstraintItem.swift */; }; - 6B66FA28308AAD03CF48491A2156DBDE /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 43A7CD4FD0ABE5E6DC4CBB2A311F14F0 /* SDImageHEICCoder.m */; }; - 6BCEC0DE81E072E922CE82BF2C10D0D1 /* BRDatePickerView+BR.m in Sources */ = {isa = PBXBuildFile; fileRef = AE073D46601660CA896FC55F0616725F /* BRDatePickerView+BR.m */; }; - 6BD973EF2D9AEAAA897F19ABE6ADB442 /* ZFLandscapeWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = E5E4A96A72027ADC8D7A969D1D99B6BB /* ZFLandscapeWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C2F2ECFF4586C9C630A06CA7245268A /* Deferred.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E091CB31E02C49432290E464888C472 /* Deferred.swift */; }; - 6C3B575651FF6BCDC6907608E2F89583 /* ZFLandScapeControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0603369D29C08BBD4B780229EB57C5F2 /* ZFLandScapeControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C850BF5602E027A876A27784A160519 /* EKRatingSymbolsContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4654F192727322A5B6B3618A117EC3E /* EKRatingSymbolsContainerView.swift */; }; - 6CBB8A0459051E23B564D2D128E4B219 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E61804F5B643F8F44E1B885B206DE28 /* UIImage+GIF.m */; }; - 6CCDD8BBD40821514AC48F42628D4D7A /* JXCategoryTitleCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = A1FAE616ACA192AC2B4835DE33A95F75 /* JXCategoryTitleCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CEA6FC42B1EBFB8EB263DDD2295BA1B /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 17EBBEE913E72CA4F1A7C775F7547836 /* SDAnimatedImageView+WebCache.m */; }; - 6D04BB428ED55D57D68354552C043A49 /* JXCategoryViewDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 227D5C20DAC5A6882624BCFF84BFCF3D /* JXCategoryViewDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D1295F002B144E1731C38BEDF62855E /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 90A46F094CA9CD51721A8E611D7A265D /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D8A1EAC97E1ABC816801F06E11AEF2A /* EKFormMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4A9A9C6F6984BEB9944D2A5B90DC0D1 /* EKFormMessageView.swift */; }; - 6D9162F60E7975B61948B1E253941FB8 /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 55545D86A38C88E25036285F6E656D77 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DBCD383C164E5ACF1DAD34C9E2FCE34 /* DDMATrackManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 10BB65D216F0A89EF3DDE22B631B39C0 /* DDMATrackManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E79B8E1DBB132B9953B5F37A743CB43 /* JXCategoryIndicatorComponentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 00762648F87378B421D9E8CDFE71A057 /* JXCategoryIndicatorComponentView.m */; }; - 6E9CFF84A4911D0010CF676FCC5F81A3 /* DDBaseTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D0E7E5057462F655D8F4E52508E671F /* DDBaseTextView.m */; }; - 6EE3CE5E6C7683F30D2D59D0ADAC6FDA /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E9C710CED84DF53EC139FD905FE9AAD /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F1697BC66902A6089A108DFE1E31B00 /* DDTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29A451DB1577B4AA8431FE05F486FAAB /* DDTableViewCell.swift */; }; - 6F1EC7D7C6057783745CD6C5C41EE5EF /* ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35450C3C90041047307AFA530B4FB58B /* ZLPhotoBrowser.swift */; }; - 6F46408B20EA653BE535660788D44444 /* ZFLandscapeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B8DE2F25DFD6D28B2B1A4E5A91CA4D7 /* ZFLandscapeViewController.m */; }; - 6F6324778DAEAC9A6B9C1E5EFEBBA492 /* Signal+Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB0E4FB4D6900EC78ACBA96F5E96A2F7 /* Signal+Subscription.swift */; }; - 6FAFD661B194069BCA77883FB488E50A /* ConstraintMaker.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9569643BAC1BFEE9C781C30A603ACF2 /* ConstraintMaker.swift */; }; - 6FCCBD397D9B887B427DD63D118DE589 /* DDMAMapKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E48CC4D8CFE991113EDF2724EFFEDACF /* DDMAMapKit_Private-dummy.m */; }; - 701681C35B325B45CD0E46CF0D5471F1 /* ZFKVOController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F67A3F6383872630B0AE5225DBEE2FE /* ZFKVOController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 709711B731CC35DA65084FE1C1A2F73C /* X509Certificate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C139AE58D7913987FB4420842FA7DE6A /* X509Certificate.swift */; }; - 70AC10609FB1A12D49AAF643F6DB6799 /* UISwitch+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21C35D978DC1A48371A558E2F5FD5458 /* UISwitch+Rx.swift */; }; - 70AED23C9E4B7C54A57E04BB493B1632 /* DDColorKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7126C236B3D3ED1FE9DA844C3F8BA19E /* DDColorKit_Private-dummy.m */; }; - 70CB725EC2D3E4977E8C55CE9EAC4D0A /* ZFPlayerGestureControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 0595A2C45A2C807F199AE3CE85C23090 /* ZFPlayerGestureControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 712C6602ED4B0CE3766C7B1D0364D0D1 /* Buffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41F1115AC7B6E578068DBF01F1D2B305 /* Buffer.swift */; }; - 714B1CA2AD44049A52267BE368CD4C8E /* SwiftEntryKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D2D99684924B37D6D10017B50BCCF47E /* SwiftEntryKit-dummy.m */; }; - 71BACD458EFE7CF21260654449513C75 /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 43077E18310DC4A0F50CC96A0DE2B0E9 /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71E369AC039524E2F13AC548B3B043EA /* DDColorKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AF102BB030DB51979C8828A4CCFB60C6 /* DDColorKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 721A97ACFEC77E36D1023E41BB0AE1AC /* EKAttributes+BackgroundStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C89DDCB6B76E6E74991155BDD7417BF /* EKAttributes+BackgroundStyle.swift */; }; - 72B0A8793C1F38AA19A0CD865BEE8BE7 /* EKAttributes+Validations.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1C0DFBEB1656E5775769E9DD7592F4C /* EKAttributes+Validations.swift */; }; - 731BC8F0B05F16D9E44C9EA00B22F4C9 /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = F913AEF4BC19217524BA7CE744FAAB90 /* Session.swift */; }; - 73A9E4170A91F0F715E9E7C1F069FA45 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B5CB62C7E9BE649E374D62A82B71616 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73E288FCEA27F5DEB683B074F96D0846 /* SharedSequence+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EC63266F1A25D8738A3BB41782AFC91 /* SharedSequence+Concurrency.swift */; }; - 73FFFD550E5D834616601E46F7468513 /* RxSearchBarDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 339C2A6152F51EA6AF9CA57D40E54E6A /* RxSearchBarDelegateProxy.swift */; }; - 7409FFC5269708E4F4606C21C9DF1B97 /* DDNetworkingOfAlamofireKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D4370EB0527F8951315CFCDF2B136F01 /* DDNetworkingOfAlamofireKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 745D1703E1D29FD12340402A7F6B71D5 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CB41D91E24D72CA5B2E07042707B022 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7539BFBC46E1BB8AE022CB250A405582 /* HTTPHeaders.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA00C2EF2C8729C7835C0FBBD468E5EB /* HTTPHeaders.swift */; }; - 756BF9B8FB680C8BB0B5FC56CD9E0831 /* ImageBinder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A5C5ED621289AE94E383AA5F3845B8E /* ImageBinder.swift */; }; - 757DAD9E812317B7B8FECFBD78953286 /* DDOCLog.h in Headers */ = {isa = PBXBuildFile; fileRef = E4389A79A98D82D099859D31900A8A41 /* DDOCLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75838A964C379AB1214F4BBCED359F7B /* SubscribeOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65C7DD4A867385D60261DB360F2009D9 /* SubscribeOn.swift */; }; - 75962201E03EB435C7FDDA34DB38C82D /* UIFont+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = F90289338102C1712A8CE1AE5B0CB534 /* UIFont+DDCategory.m */; }; - 75A2E216A17F4AF6B23758F0F5188647 /* ConstraintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5335B99B27D3308852CEEB5161ACA4C2 /* ConstraintView.swift */; }; - 75C045B811885FBDF3FCB78F77326FDF /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 83DBDF33C10915BC1F6E6306C566B254 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75CD78F516227CC85280513E37D97F75 /* ScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D422E0445C0E667A8DDCAB237B98C88 /* ScheduledItem.swift */; }; - 760D7A5A2409555F4B6A8100ED8A5528 /* Observable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D3379D26F54ACFD9C0723474C82A4B3 /* Observable.swift */; }; - 7615AD04C15B5C1E8A259A80825D68FC /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A3D0ECDFAA25FAEDA60F0D077758A5F /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7656BBC9EAB46594929535E30A03C54A /* Optional.swift in Sources */ = {isa = PBXBuildFile; fileRef = D533FADDA301CD753353068193F72777 /* Optional.swift */; }; - 76A190B0F869A4BA61AFA27C1EB92F4B /* ZFOrientationObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = AC1D2CC1B5DCDB8318B494F34D130A4B /* ZFOrientationObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76BCD01DEA5DFB76E7975B68591D4235 /* _RX.h in Headers */ = {isa = PBXBuildFile; fileRef = 42AFF5E4167F1AAB0C38B6D04AF48FF0 /* _RX.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76C7D273C6E5D59AE6B46FABD80F529B /* NSThread+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BF902A56BF760BDD12158187207FBAB /* NSThread+DDCategory.m */; }; - 76FFD8BBEBFDA70717385A5C74DFDEA1 /* DDUtilsSwiftKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C12CC8F474373055969C07D3A3C3EB /* DDUtilsSwiftKit_Private-dummy.m */; }; - 7700D571BD960334CD5930A8580BE217 /* UIImage+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 63D0CE3DC397FB3F291FA4A78C327CA8 /* UIImage+DDCategory.m */; }; - 774CFF5DF8BB0D8AF40C421AC4E7427C /* SwiftyRSA.h in Headers */ = {isa = PBXBuildFile; fileRef = CA341672AD12C91E1D680EEACB407F91 /* SwiftyRSA.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7772F0679B865D3D92C4271257716D11 /* GroupedObservable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7516546B31F35DBB7EA065BBF00BE1ED /* GroupedObservable.swift */; }; - 77D340EE702D19DE31FA1A1E99F3FD52 /* DDNavigationControllerDelegateReceiver.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C56D6FE2C0E1B0D503196DF09C7A12 /* DDNavigationControllerDelegateReceiver.m */; }; - 7800433CAE99BDC6FDAE734B7BCB4889 /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B9CAB0DE89C0BFCBEDDE2F08E332CF7 /* ConstraintRelation.swift */; }; - 780B82DCFDBD9C2D7E5C92DF80FF1630 /* JXCategoryFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = FCAB0AA2CD7584C71B227EFE07A72652 /* JXCategoryFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7867E2730114828625D52A47C43CCD2B /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = EB904B920A37349D37017E816F5C1D99 /* SDImageCache.m */; }; - 7899DDE84093B31ED54B226BB1F518BE /* Bag+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65A34A5314F1C2F5E39877CDD4C23111 /* Bag+Rx.swift */; }; - 78F19D9EAA15F4779D096963F790CF62 /* JXCategoryTitleCell.h in Headers */ = {isa = PBXBuildFile; fileRef = E401ECF7473809EDA233D3291AA24643 /* JXCategoryTitleCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78F42347772C57AEB0CE35F118F14AD5 /* JXCategoryIndicatorTriangleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 55A4F48C4DD1485D12FAAA496C0967A8 /* JXCategoryIndicatorTriangleView.m */; }; - 791629CECDE0D6A5445563A3E0025ACF /* ZFPlayerMediaPlayback.h in Headers */ = {isa = PBXBuildFile; fileRef = D78ED7FF50379F1FE6D24BA5A1A6A5DF /* ZFPlayerMediaPlayback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 792129D5856B65A190DD61ECDA18F45D /* Scan.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6D675079940CFE6C6B1495B5312FEF0 /* Scan.swift */; }; - 7927E6770872983115C36150EAD11B8D /* MATraceReplayOverlayRender.h in Headers */ = {isa = PBXBuildFile; fileRef = 03C1CDFBC2D3D029A3ECB0017E938D8D /* MATraceReplayOverlayRender.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 793F19320DBE5EBACB9D67FA411F720A /* ObservableConvertibleType+SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BE4D837B0B86270E94A66C6621DD744 /* ObservableConvertibleType+SharedSequence.swift */; }; - 794C8686B1DFD5AA5216F9165ABD8EE3 /* JXCategoryListContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E04AF4D03DE53ED30E33004A282BDDD /* JXCategoryListContainerView.m */; }; - 79D547FB7599B9D84A5F5697924BC58B /* JXCategoryTitleView.h in Headers */ = {isa = PBXBuildFile; fileRef = B743BD461CDD7E3B19621C9A8BC31DED /* JXCategoryTitleView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79F7344C573425769AF35D858AD4A67E /* UICollectionViewLayout+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D88E96BD30113C71AD4225F185AD871 /* UICollectionViewLayout+MJRefresh.m */; }; - 7A6935099F0BE481D9827079C0BAD4D6 /* ImageContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FB7ADB70FD266CCCE0EEF823CBD32F0 /* ImageContext.swift */; }; - 7A852F0AF1F3E1693579BFB0EE3DFEAA /* IQUIView+IQKeyboardToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A54C2EA0B08D1D886963C8F6FD3E503 /* IQUIView+IQKeyboardToolbar.swift */; }; - 7ABFC8DDB94ABE4C0687BC981E98A2BE /* ZLPhotoPreviewSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA25A894AF5692143BA3754D55BAE255 /* ZLPhotoPreviewSheet.swift */; }; - 7B0B8A575C497874E971408584743E02 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = AF80C7D34857FF6762E02B8A16D658F6 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B11736F617525245D4679CD2782FB11 /* NSAttributedString+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9089747D09C54D518BEC18FE8D514F09 /* NSAttributedString+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B45550C7795D7B29E6E558F00864D1E /* UIImage+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 050B017433C17B15A5712EE1BECB5E53 /* UIImage+ZLPhotoBrowser.swift */; }; - 7BB4A07C23154788374B2921EC730161 /* UIScreen+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 94383346701CE943B058EEFE516C3F76 /* UIScreen+DDCategory.m */; }; - 7C372E51120A6B4C8839D5B67723E7F6 /* DelaySubscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = C17A699C03E45BB7F13E926A3DFAC928 /* DelaySubscription.swift */; }; - 7C4555B4F80F91CE5F03F39C2D64D86D /* IQKeyboardManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27A0DE390500D96C03B183EF0D429F0F /* IQKeyboardManager+Debug.swift */; }; - 7C6612D6212B9BCA43CEA708B1989C23 /* UIImageView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = E31BDF49F2926FF02EF1A202926188F9 /* UIImageView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CAD2C0EC229A92286D2C1383D25F28A /* Binder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07292771F5B6BFDAEEF7BB781539B2C9 /* Binder.swift */; }; - 7CC298CB85BBB9C814F22B8AAEF94281 /* IQPreviousNextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 879388E287309EC5B6B9E14083EB9A58 /* IQPreviousNextView.swift */; }; - 7CDD4BF0209AA2F717C7546D5B6BF979 /* ZFPersentInteractiveTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E0907190CC9C4233E019988DFAD5A53 /* ZFPersentInteractiveTransition.m */; }; - 7D11B4B771600E6995E87D41605BFAFF /* Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CB7DBF821CDB12D47CD37DD36020D26 /* Kingfisher.swift */; }; - 7D23A05408E0E17BB56E5909C983386D /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E8EB4D9D80DED315FCCCD54A22BFF90 /* Notifications.swift */; }; - 7D2B3960EAADF509725141DC9EB3FD37 /* UIWindow+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 306D8D12ACFB3F1875A3E3A4A66EA5E7 /* UIWindow+DDCategory.m */; }; - 7D5AC16F195967267DAD36F198E0A5F0 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 23CB2A5AB8A31970200D390366725669 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DF26FE5A9AF886EEA362BD9C81678E7 /* SwiftyRSAError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6959B08360F4836FB29BBF9324533557 /* SwiftyRSAError.swift */; }; - 7E77F7A02B348F2B136DC0548A0AADB1 /* RxPickerViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4117C597DE1692CE8789DB702543828 /* RxPickerViewDataSourceProxy.swift */; }; - 7E89E3B38E4ACBC2954D330AB4FF0293 /* ZLClipImageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCBEFE7EFDBF5BA4C9D550781394D569 /* ZLClipImageViewController.swift */; }; - 7E9CB89FA3B14991D8C31254F7594BAF /* JXCategoryIndicatorComponentView.h in Headers */ = {isa = PBXBuildFile; fileRef = ABE9CBDE3FC3DB8B17CA2F4DF35287AD /* JXCategoryIndicatorComponentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EB3D7C00B056C2849220D2E6DCCCDC6 /* TakeLast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 866E3993D4D20D92AE6CA6566F505597 /* TakeLast.swift */; }; - 7F646201C11F75FEB2701844D49DF702 /* JXCategoryCollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = AA0C9FC33E3E3EC10BD4C13CD647DB76 /* JXCategoryCollectionView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F71AD73F7405C6B59591FFC96EFCD46 /* KFImageOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF5C841B7C33D8103A0A0F9FF3BA67B0 /* KFImageOptions.swift */; }; - 7F9C36B013D01F2188457E0D3A7AEF07 /* ZFLandscapeViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 484ED9278AFBB03768FC180C42EF6D50 /* ZFLandscapeViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FD541C37F57A49DA86354FB0AC6CB72 /* HTTPMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4542046C28F3D70E296E394B873C6719 /* HTTPMethod.swift */; }; - 7FD5933A76D02D235B287A8133624209 /* InvocableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE5E8C3CB6962907C20F39684AC6B5F2 /* InvocableType.swift */; }; - 80474D488D0DE9EEB589E4B5F9EE1256 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7B78F698810A0591022F198B0486335 /* DispatchQueue+Extensions.swift */; }; - 80707A9E832C8EEAC361896B59A1DE19 /* IQUIViewController+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C11F0E7FF4B809B75108D36C30AD2FC /* IQUIViewController+Additions.swift */; }; - 809174478F55FCD93B0706148F6D9B72 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 53701FA4E2C325041ED02E45E02DEBFB /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80BC7581EDC7EF248D8E56A3AB986B53 /* RxTabBarDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3861B49B9CDC8661EAD6383D750FB37 /* RxTabBarDelegateProxy.swift */; }; - 813567124B996AD29CCAF98621B4D917 /* DDUtilsSwiftKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 79060EA6FB966A86AA091D84DC765597 /* DDUtilsSwiftKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81452427ADF1E98E642A1233E6B650B0 /* UIScrollView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F5C9A218E5415CFA35CA923E6EC4496 /* UIScrollView+Rx.swift */; }; - 81495AC63688C3355033D5BA9CCFC035 /* BRAddressModel.h in Headers */ = {isa = PBXBuildFile; fileRef = BF6C0E62E3204699D57A676102058BEC /* BRAddressModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 814AA2BB51B51E467391D717BF24FAE5 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = D8DBD4A19BC9CE26D2D0656B2303DA0D /* SDWebImageDownloaderRequestModifier.m */; }; - 815275DCB23E972B3FD5979BBE77CB0F /* Completable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13B84C97A0658E5BF9785ED3D7F2382B /* Completable.swift */; }; - 81A3D9DB1BECA7DD9A94142824783DD8 /* ZLFetchImageOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68B600BC7AC1EFF4E70A36A0A7CE2118 /* ZLFetchImageOperation.swift */; }; - 81AF1CC864FAA4F183F389DF45E31B77 /* CompactMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F6E6F5701A4F4670E0F79103B1E00FC /* CompactMap.swift */; }; - 81E52185084B76A2BE6C49F315FCDB62 /* Amb.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FD2FCF8484F129C862C7733EF997F21 /* Amb.swift */; }; - 81FD4731F5CE69DB93A7845FF2BFE6A7 /* TVMonogramView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = D10392DBBF45DE4D23794FCCB748DE71 /* TVMonogramView+Kingfisher.swift */; }; - 82300175606EA43BE4BF57888C4A77E8 /* BRDatePickerView+BR.h in Headers */ = {isa = PBXBuildFile; fileRef = A45AEB2DFFCE8057206B2DE8ECBE25D4 /* BRDatePickerView+BR.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82F6C49CD5442529B117D4B77ECD8518 /* EKStyleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D123B4BE07B72930183427DA4699782C /* EKStyleView.swift */; }; - 831254EFC2C2C803504469336A8C716C /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05692E2644C9553991BB866D88887C35 /* Image.swift */; }; - 835173C7877CC2512FC25FC6EBBA0350 /* RxCollectionViewDataSourcePrefetchingProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00D20C4C1F970E3E4CFF73E4F37008D6 /* RxCollectionViewDataSourcePrefetchingProxy.swift */; }; - 83888A11B0701E2D4EE236DFA1E56800 /* Result+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 756071B94EA9B9D34DCD2BEE85E39996 /* Result+Alamofire.swift */; }; - 83938D5CBB19BD3E148DA8E030218776 /* MATraceReplayOverlay.m in Sources */ = {isa = PBXBuildFile; fileRef = D681619D94082F8FBAD3CFC95DF2C8FC /* MATraceReplayOverlay.m */; }; - 83C8F1C636B757CB5FB662326BC3BEF1 /* Infallible+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43F05E04C13FEA025791F0C90AF64A3A /* Infallible+Create.swift */; }; - 83E6942D599D10B74AA8457BACDC9C0F /* ConstraintInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEF61169EFB951016571C2CC1E329D47 /* ConstraintInsets.swift */; }; - 83FB80448888FC123E9A45527EEC1C92 /* MABaseOverlay+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = B4CB308A06446D2A73A68F930B5D04D8 /* MABaseOverlay+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 841447C2E526E658EC8102873B77A9C9 /* DDTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE9CABB0B007DC5E6F3D70E33F52F4F7 /* DDTableView.swift */; }; - 841CBECFA7ACFAE2626EC33AF8D12DA3 /* Maybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 275B2489357F6B943066C4950DD73452 /* Maybe.swift */; }; - 84505063AEBCB40D30A5BFCC93539C8E /* NSObject+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 76C08DAB6DEE753696AB2BC4C281A99B /* NSObject+DDCategory.m */; }; - 8467E270758278816859E50FB4E3DC73 /* Observable+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB8B286BE1DB87F3BA9D2EC9ED194D2A /* Observable+Bind.swift */; }; - 84CBB8B38762FD16B0BF7B4BA778228E /* EntryCachingHeuristic.swift in Sources */ = {isa = PBXBuildFile; fileRef = D93DC5FA6C8CE42E9948BD0360B325CB /* EntryCachingHeuristic.swift */; }; - 84DC0626D65FE608EACE77EE19BCF92F /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A3D62E5032EF1C933E09EAE1E95CDB6 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 855818B53CDD3E3102ED4CEDC16FF11F /* UIImage+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8401B25624A44A362A28E544C9474B18 /* UIImage+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 856298055AD0D85195CB2A081508EA87 /* Do.swift in Sources */ = {isa = PBXBuildFile; fileRef = 057F7456D5D387EC14E07A6B1800E0E5 /* Do.swift */; }; - 8585EE2B4CFC73211A2D8D08ACCD9646 /* ConstraintLayoutGuide.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A3EC880FE2B8C0BDB59287FB1C6D1B4 /* ConstraintLayoutGuide.swift */; }; - 8620470517C811FD4767A6DD0371D0D5 /* IQKeyboardManagerSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D466EFBC5B2AFEBE9A18E17D09AAF7E /* IQKeyboardManagerSwift-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86997C2E83106153831376DF4CB88084 /* ZLWeakProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = F73A64E4521EDBD1AAE1CC1963BEEE5F /* ZLWeakProxy.swift */; }; - 86EFDCFB015C812E2695EA28F9F3B88F /* JXCategoryImageCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 918BFF266753E88CD5590614F7B8509B /* JXCategoryImageCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87470AF75922B5A56B07AB5F3873F468 /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 464ADB2A55FAC4862428B1C0F3830314 /* Queue.swift */; }; - 87557570DC30F0D36B82F72429D25366 /* CPListItem+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54672C2A5C209836AADD03D2D892E9E5 /* CPListItem+Kingfisher.swift */; }; - 87604C2B9F5FB788F26D7D2AF954710E /* UITableViewCell+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = A0DF86A8859EA3632FA00A9B5AA19945 /* UITableViewCell+DDCategory.m */; }; - 876F0A0ED17438D064D6255B031ED91B /* UIViewController+ZFPlayerRotation.m in Sources */ = {isa = PBXBuildFile; fileRef = B79DF7DF2251EF8A9A4DD8BBDB32B5D9 /* UIViewController+ZFPlayerRotation.m */; }; - 8772F32DE15FC5E2426A36349DE9E7C8 /* JXCategoryTitleVerticalZoomCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = FD7AD4C562A08C6A2483BF35A7988CA7 /* JXCategoryTitleVerticalZoomCellModel.m */; }; - 878B6B1A4C24B3D46773E79E0294CC89 /* PublishRelay+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = BECAAD109009CA7B14C5C3F17516B80E /* PublishRelay+Signal.swift */; }; - 87E790F289BC43498505B6D68AD37C12 /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 2592CA66B11529AEE021D8C5D77FF70E /* UIColor+SDHexString.m */; }; - 87E876627F3BB158FD39966792B76B65 /* ZLVideoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE60A6156D03AE9D1899CC6F69CF7591 /* ZLVideoManager.swift */; }; - 887595F20B78C5473EA5B93D699737A6 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 67B495B473AAE4CF688A79AE388BA049 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88B17205B2AAB6D5631D3B0454523190 /* NSMutableParagraphStyle+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 6956C1C13B6F483A31127FA1E738D13A /* NSMutableParagraphStyle+DDCategory.m */; }; - 88E67755F51F1CA22343EAA1CFBD41E7 /* DDProgressHUD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FF65D4365CF9586949F3D50AB35420C /* DDProgressHUD.swift */; }; - 88E8C4E6532C1885DE243488021CF2D2 /* AuthenticationInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1DE7891489E9D59D79DCE22AF66F9D9 /* AuthenticationInterceptor.swift */; }; - 8963A3DAF031290FC09A2188831C63B5 /* DDBaseViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A502205308EE0FC9C10E22A31CE6F71E /* DDBaseViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A0B21E6BF5B2E44B79BB9546EF7F27F /* DDBaseImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 57C36663553EE3FC62867CC6565A39B3 /* DDBaseImageView.m */; }; - 8A3E8C9849B1E73D113589B8F007E566 /* JXCategoryTitleCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7172FA29C95820A6FDE07CF7CE98CA1D /* JXCategoryTitleCellModel.m */; }; - 8A5D7CFB78278C7861D3061D212B189D /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4837DDCE0CBD6C03E891FA0582C82A4A /* SDWebImageCacheKeyFilter.m */; }; - 8A6158438F3B894DE7F91DE5FE93C795 /* Message.swift in Sources */ = {isa = PBXBuildFile; fileRef = 612BB6376A463CF2A7D20836998C7AC9 /* Message.swift */; }; - 8A64ED4C758DC20F9F638F956789182F /* UIView+QuickLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F731D3A2045EA7A0F28A26D17305C70 /* UIView+QuickLayout.swift */; }; - 8A76F9D3DC5645754BDAA8CAE5A2E993 /* UIImageView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = E1806B7AE8E26CE08653BA97DD634BE2 /* UIImageView+DDCategory.m */; }; - 8A93BFC4ECE061648BEDA3A17DF34B7D /* JXCategoryImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E3A8D9246FDEB24724530F52E840D0D1 /* JXCategoryImageCell.m */; }; - 8AD2950E96CAF68E45461D5BA86964FE /* NSURL+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B588A780D34490594CE6B22B5237702 /* NSURL+DDCategory.m */; }; - 8AE63F25EF4DF96919B34F6200CC091D /* Observable+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99EC91A075178B7FF5097610ED48DC20 /* Observable+Concurrency.swift */; }; - 8B1A402F74B6E4E6F42C395DDE64169C /* KVORepresentable+CoreGraphics.swift in Sources */ = {isa = PBXBuildFile; fileRef = 404CEB52EF15A5EAF66C8A5C26A2189E /* KVORepresentable+CoreGraphics.swift */; }; - 8B3145567FD389F30FCBB34C08F60CB0 /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C883774E369C0F5862125ECD434BC24 /* Platform.Linux.swift */; }; - 8B5C7472AB1189940F2C7A38AB4E5D57 /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 062DDB33C6E18D36A77C4A3EAAEC87C0 /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B753F9A4427257D3732F4AE2E2EDCCD /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = BE0947970D0446B4AA354037997C2E18 /* SDWebImageDownloaderResponseModifier.m */; }; + 00149C338A154F7A90372D9D111E890D /* UIScrollView+ZFPlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = E23690602F1F2488B74ED123C0F50923 /* UIScrollView+ZFPlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00AD8C7B30995B68AC53AFF16867A44E /* ScheduledDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB1BCE3AC517287CE470EFD855396EF3 /* ScheduledDisposable.swift */; }; + 011A1EBE3B8FEAEC24BA46DA5217CA60 /* DDBaseButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AD026EC53A99795D22A2F4D9151029B /* DDBaseButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01256FB5954BAF7C164BABA7AE997A5D /* ObserverType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 109DEBF28F16126F32DDDCE9500BF311 /* ObserverType.swift */; }; + 012C3348FDB9BD307BC866EC0B5D23A3 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141078F3B6E34C10F24EDAC1DF45276 /* SDImageCacheDefine.m */; }; + 014CC37B1AE6B3C4274F5B6F58956CA8 /* CombineLatest+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FB1E26331EFCCFD6350B17A064756EC /* CombineLatest+Collection.swift */; }; + 016EFECE55C27B0D75CA24E03D4979CF /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EDA3613935AF40D8DB29CDE75D50025 /* Platform.Linux.swift */; }; + 01B815BD97E0BA94CF89C42FE41254A8 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = DB4FCD3FC94B3DF92D64C7E6DF7BC4B3 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01C132EB3605024492C96C11F1094D0B /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DCA1D5196E0C449181AE06F962959AB /* InfiniteSequence.swift */; }; + 01D8AE321F1FA71F2D43127EAC90559D /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B0F5C1B77C4DFBC89FCC0D6F1B649AA4 /* NSButton+WebCache.m */; }; + 0249EC29123B5E4461C419AA9BE0E2C4 /* WithLatestFrom.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9816E7B4E8EC58385B4CBC42517ADB10 /* WithLatestFrom.swift */; }; + 02780D132E8AA44865FEF53E4D5155E6 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = FA8D42323BA231450F57A9C8F53795CE /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02A601E285D59BDFE8B45EB5AC46824B /* ObservableConvertibleType.swift in Sources */ = {isa = PBXBuildFile; fileRef = A438275CD02B434CCA172C62742F143A /* ObservableConvertibleType.swift */; }; + 02C5131798FF28B7D851F0DB13D67C00 /* UISlider+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 745324BFC876CE97033B3DC956709856 /* UISlider+Rx.swift */; }; + 02D531FA1E9A19A134ED8BD68C5E04C0 /* JXCategoryBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BCA64E31F25B756265588AD099F6D0A /* JXCategoryBaseCell.m */; }; + 02EDCC0E7DA24D63CD39E7D6326F5A56 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = BA919820C7DC7DC7A3EF3AF5DA84CD93 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0325FC0D4CE47D33E675D5F9546D482C /* BRStringPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 02782A46E1E62D1A0ECBA5FEBD511E0C /* BRStringPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0328E2D27FBE6EE399FC37D913E2290F /* EKRatingMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0228724F2A8AB4A8F8561106985D58F /* EKRatingMessage.swift */; }; + 03AA859D9A2A10D803C64E13BC3D9291 /* ObserveOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = E07FE5BB474F004DA115A4CBA2ADEDDD /* ObserveOn.swift */; }; + 04131C0EECA33AD45AD1E07CF500E344 /* RTLManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AC15D5FB3C69C246019033A6888F1939 /* RTLManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0420316FC1BCB2037CC6E8FB3E80816F /* DiskStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA3F4F32285B3D7988F8318EFC6F8DBF /* DiskStorage.swift */; }; + 042DE4E784D5CCB4FA7F73F4D6F46367 /* NSThread+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ECBE6D55B860A623894EE89ECA6D497 /* NSThread+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 044C9F746F7E39BA1B482B553386CA48 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 19377254733005E955657128E33E1A6F /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04C0033DE2A1FD3EB256E41523A8F0E0 /* ZLEditVideoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FE0EAB85043C11DEFD666CF542EEBF0 /* ZLEditVideoViewController.swift */; }; + 04C95DB4DD1BD71AAF5FD233628A6C6D /* NotificationCenter+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96611FB30B33CA7B989BD4F9ACE90FAC /* NotificationCenter+Rx.swift */; }; + 054C5D3D52D113CC9A7AC9F7115A26A4 /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 106058C76A549394D008ABF56DCD29C8 /* Platform.Darwin.swift */; }; + 055FD13CE509E194412FE8E424649053 /* ZLFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = A34E17DDAE76CFB7A1F4CCB0504F5879 /* ZLFilter.swift */; }; + 0580AC71554104A1FF119F08D8012115 /* SwitchIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA9DCE00A1CC7C0A1E8963EC44BC3F0C /* SwitchIfEmpty.swift */; }; + 0591B0EE71308251E0E53C6D3EDB3D4C /* ESTabBarItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8C25B177A2D21BBC6095F9C9455DA74 /* ESTabBarItem.swift */; }; + 059DE39D2D7414DD88A410B406D3AD8F /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 766B6947AAFF5ABDA10B93CDB391BC72 /* SDImageTransformer.m */; }; + 05A27819D0B99E20C63060A28C9BA058 /* ReplayRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DB545FA70E55DCB2EEA485007A5B046 /* ReplayRelay.swift */; }; + 0605E2513549327B19854B3FED759B44 /* ControlEvent+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEE9361B2BA7FAA41C595FC2582601D9 /* ControlEvent+Driver.swift */; }; + 065E058B7EFAEF60F0FE94916FBF3CFF /* DDBaseModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 621849EEF1C1322DA52276BEC1403F0D /* DDBaseModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0669AADF8ED5F40238C02652ACD4A597 /* Source.swift in Sources */ = {isa = PBXBuildFile; fileRef = 095C772CA9D287E8F32E25742AC62AF2 /* Source.swift */; }; + 06A20EF6BA10D63870C3AB7C0E1BA53E /* ZLPhotoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F87D99FFD0149592DC523734EB78D68 /* ZLPhotoModel.swift */; }; + 06B371D4F95E8184613EDABA69676D5A /* DDMAGeometry.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CF20CD29054C5545336588BB54FD196 /* DDMAGeometry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06CAAF93BD603D965DFFCBF40352F83E /* RxSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 29C345A668B64C44B7B0A74B0206470F /* RxSwift-dummy.m */; }; + 070AC1A560FD65090FD38168F6F8E8C4 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A93C52AF91D91D00889A4AAB0B4D433 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0811BB981A2EF4E3C78C193E8AE1A4BA /* DDCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5DC0DDE990C0A7033E161AA7E899E94 /* DDCollectionViewCell.swift */; }; + 08CC4F2CF084EB4C21FD37F7D5C1728A /* ItemEvents.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2618B28A7F9A7728D42E28F08EC3888 /* ItemEvents.swift */; }; + 09B9E5FB7E73F28A4E1F581917EF868A /* JXCategoryNumberCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8183B206803DE53281F25BC255C285A5 /* JXCategoryNumberCellModel.m */; }; + 09B9FCDAD0A714411513728549B3F33A /* SessionDataTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7851F5F987DC2A5FBCBB3196F3E607A2 /* SessionDataTask.swift */; }; + 09CB072529CD8E230649CBA428E3550F /* MJRefreshConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 38B4BE3790A38C9083BABC50AA41A6B9 /* MJRefreshConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A0138FC6C218F4367637FE7B44D1C97 /* AsyncSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6C8D677B166F29318F8622DE9A027D8 /* AsyncSubject.swift */; }; + 0A762FAE78A91ABC899CB431FE10B9FD /* ESTabBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 103D13B1AC5D7F9F135AA9B5F778A1FA /* ESTabBarController.swift */; }; + 0B3FC7F246E8FE5D8463D709020BF65B /* AsSingle.swift in Sources */ = {isa = PBXBuildFile; fileRef = B401C5BDB0EE0FDF670F962EC5A6FB42 /* AsSingle.swift */; }; + 0B4577864274CE4EB338A238A241AA0C /* EKAttributes+Precedence.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0003A02B2F8BE1997210982CB46721C /* EKAttributes+Precedence.swift */; }; + 0B52A423F3F9E6C5A42612A06BCEEEF8 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C35B805FA8F697BD5BF39C8B592CA1A4 /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B5B8EB020F39AD312D8C7A32FAF741A /* EncryptedMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D2D112EE9A2BD1D293927FC373343D /* EncryptedMessage.swift */; }; + 0B5F5BB8089C5C1DE7CB260F02C404FF /* Skip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10963CD3644E0716EE62F49301E46B79 /* Skip.swift */; }; + 0BCF8CB00A9A52600E24370C7144693F /* EKNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8B6185261C4A1F47B8494904765E50B /* EKNoteMessageView.swift */; }; + 0BF8984AC682006C663664DC7038EE8A /* SizeExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F152A8D92F8C71DD5186AC3D836B0091 /* SizeExtensions.swift */; }; + 0C33BA4D018FE8CC8F3DF7FA0E8DB521 /* HistoricalSchedulerTimeConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFCD7365B39C984D4DD7614F53B3369B /* HistoricalSchedulerTimeConverter.swift */; }; + 0C7A81B76F81FFAA7AFD437D61831C77 /* DelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E316776F77F45F6F00C395E01C3D553 /* DelegateProxy.swift */; }; + 0C833DB2294851CFBE098DF5BCEBADF3 /* _RXKVOObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 88E4D80B0F0D44BD66BCF685DD9C462D /* _RXKVOObserver.m */; }; + 0C83C845A20F4CDC656714E4DBABC116 /* ZFSpeedLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5603E0CFF3F7DF05577A5EE1AD67FAF2 /* ZFSpeedLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CBD3A2BF41E73A3CA377911EAAF7332 /* CALayer+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F223836A638414EEE091A54C5A888F2 /* CALayer+DDCategory.m */; }; + 0CF0A87B87DF71F838545FC4B0161A8B /* ZLResultModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CD34B8BB386448EF5A713B15600AC32 /* ZLResultModel.swift */; }; + 0CFFEE63D0C2385B1AF6401BB07A9316 /* Generate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCC0513B7BC3798F7F3017E3F5F1F884 /* Generate.swift */; }; + 0D444C6AD7BA8B3307579F9FCA9F43FB /* EKAttributes+Shadow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60C5117E9A2AC8F2838D694CCA233CEA /* EKAttributes+Shadow.swift */; }; + 0D536CBD733C8354E24D5753892BB371 /* DDBaseTextField.h in Headers */ = {isa = PBXBuildFile; fileRef = CA29CA7B6160A23E956BC4624FCA6B9D /* DDBaseTextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E84EA21B0858EDC04A53458A7F8DBDD /* HapticFeedbackGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = B09E06C6E541D2403D9AC00B9F025E50 /* HapticFeedbackGenerator.swift */; }; + 0EC5EC45F806F2DC7B68E6727227E49E /* ZFLandScapeControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6897DBC92981878E162A165FF3041A8C /* ZFLandScapeControlView.m */; }; + 0F2AAE2334C409128ADD57B132E767F6 /* JXCategoryTitleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6026A99C028D75FBF7009B0469C857B8 /* JXCategoryTitleCell.m */; }; + 0FDE6D82E70CD1A99D4D4A053A59DB92 /* RetryWhen.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8D9026E6AD733D4F82F478DF11DF6FD /* RetryWhen.swift */; }; + 100D4D5DD199A11B072C196D149244BB /* Concat.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE54042610CD5021652EE0303692E65D /* Concat.swift */; }; + 10BE789B6AB216E4B26F0F8A120B2BBD /* UINavigationItem+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D42EB94319CCB58A1A442711C58125B /* UINavigationItem+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1112AADD470DD6BB1410B7C32A0EA334 /* IQInvocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E1391D520465478F73A4158A48FCE25 /* IQInvocation.swift */; }; + 119A65AD7B8F6C7C39DD19128A7B2DA9 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CF16EB9FB2C62DF04298E680DB7FBF6 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 119C1F092A68BC14DBFD507EC5A7557F /* ObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DF9904B080AB593E51305111BF571A5 /* ObservableType.swift */; }; + 11CDFB1A43FE6D23D2F8463B142537CC /* NSControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CF4CA085924366252B4AC04BE382C92 /* NSControl+Rx.swift */; }; + 11EAAA60DB73219EFC8B0CF1722D9C1D /* UITableView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAEF301C32F7A78E006E5B503606BA42 /* UITableView+Rx.swift */; }; + 127BB0831E7F383B0F7DE209003032B9 /* JXCategoryIndicatorRainbowLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BE7A6E28653DB83FB06019822EFCBD9 /* JXCategoryIndicatorRainbowLineView.m */; }; + 129C1964A364166530F529A390760D71 /* JXCategoryTitleVerticalZoomCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C19B79BA1E1908A3D166D0BE9A9078A /* JXCategoryTitleVerticalZoomCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1379145EE1CE455EBC27791628DABACA /* JXCategoryBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 34DC138CDF8598CC0A058B3CB89AEB00 /* JXCategoryBaseView.m */; }; + 13F2EF9E6B1AD3D1F0F4323697568E34 /* Indicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37365AF186EE02D7D1EAB44D1CC09F9F /* Indicator.swift */; }; + 14006084B55ECBF580E396E89C097D64 /* ZLEditToolCells.swift in Sources */ = {isa = PBXBuildFile; fileRef = A50025A48B4C30B28A6D2B6E4BCD2811 /* ZLEditToolCells.swift */; }; + 14288F0FD409721FB5D20B8AB4BBD86E /* AnimatedImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 876C9DC116F3E1CB0AD71A6143D7F925 /* AnimatedImageView.swift */; }; + 1437BB3F5BFA3F0EEF784975F7CA2970 /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 607E1F16251FD639A870F32E79FC5335 /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 144B55A9628A2AD6B54F8BBACAB7BCFD /* WKWebView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D482B38E3F1BA8F457443686D6B5AB0 /* WKWebView+Rx.swift */; }; + 145BBF6F393882C968D5A99AC80004E1 /* ZLLanguageDefine.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B03B8CA3DA0A458182DF4A0D7E9E776 /* ZLLanguageDefine.swift */; }; + 14A1F63D6AF3028EE2422629C911C4EF /* Do.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63419DC0BF3A8E6707B28DD5DEC2804F /* Do.swift */; }; + 14C821B748B65A96E6D91708B70C0A93 /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 081E5C402ACBD0B56D7B56AB8E8F3A00 /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14ED3E71A7F88D7262A77C54D7989308 /* ObserverBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6A19355B7723280626F510E715EE27E /* ObserverBase.swift */; }; + 15359884053591D622EB8F7F551607FE /* ObservableType+PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = B93C321456BC9DB8999A599AA84293D6 /* ObservableType+PrimitiveSequence.swift */; }; + 159BBC585A2C51D44D40DE88B5B18AAF /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = FAB77DBD2EAA9186B4C583AE22CF34A3 /* NSBundle+MJRefresh.m */; }; + 15CAF31F4E57277B940CB57848322520 /* Disposables.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0A4B773F3497967CA6047F3BBE64C8 /* Disposables.swift */; }; + 15D38081B9302FBAF9A361BAD7E5B05F /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 19C56CF2A70806FCBCD97D965F5DC0E2 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16211381F6F3B3DBB7A193AC000A4224 /* UICollectionView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 172C51BE1DD73A6B9E6FBCDF85F07222 /* UICollectionView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1660E2FBDA4323E7357179056B4B0E65 /* JXCategoryDotView.h in Headers */ = {isa = PBXBuildFile; fileRef = A920796B53C3C1A442DFFE7A3FEB76EC /* JXCategoryDotView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 168F32A6ABFCE1B9110D5C266D36988A /* UIColor+Hue.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE65C9E6950662503F0751D9A21A4A82 /* UIColor+Hue.swift */; }; + 1701E97192C2915A909E0D09BF789635 /* UINavigationController+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = B3118754C00DC5A18C3E5C511E5F8F49 /* UINavigationController+DDCategory.m */; }; + 1707C8BBA7169C290322CF62C7B7DFAA /* UIScreen+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = D34026654A2BB5E123BB5CEAC708A17E /* UIScreen+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17C901067A0CC336075ABAC7A279589B /* BRPickerStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = FBE9BB952D4ECCE48077BB3240E04B16 /* BRPickerStyle.m */; }; + 17DA0483F109F5BA66CF5DD7366E36FF /* UISearchController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = A292BD1DA40FF7CD44D5F6FCF9DB47C0 /* UISearchController+Rx.swift */; }; + 1874DC3D934C7225FFDF0965A4EDC46E /* DDBaseImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C2D7260426F88BA7D0B8F13FFCE24BE /* DDBaseImageView.m */; }; + 188B295D067C3671C67D691335D71365 /* UIImage+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = B63FC9B6DA49EF325814122062E72D8F /* UIImage+DDCategory.m */; }; + 18EBCC2A133B26DF8B5D5754492F3214 /* EKSimpleMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3B77B658E96012D96CA4E10ED05ABF2 /* EKSimpleMessageView.swift */; }; + 194D6F32A526649820D6B0AA03EEF12F /* RequestTaskMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9114E7A2461BC0D4CD70D5504A8973F8 /* RequestTaskMap.swift */; }; + 1984D4549EEA55FB1812D99162C83E52 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08C4E00CBE0B1151594901A3D003F685 /* Alamofire.swift */; }; + 199F8E1DC0E051C080DDE80B724F5BB6 /* Debounce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B420DC9E7E878F705D9118F5CE92256 /* Debounce.swift */; }; + 19B69267A13B522D47259CF72C882725 /* BRPickerView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CD59367B27600004E8CC3E36A4116E35 /* BRPickerView-dummy.m */; }; + 1A370F104A326B06BB5A7A623DC96920 /* NSError+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ABC26AD107EA608298CD0E03190C034 /* NSError+ZLPhotoBrowser.swift */; }; + 1A64F561597A70C28B3564007FF6D24C /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C59BB130807F6D550642F3D750E40AA /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A7ADD63C2F158E10825F3FA38EC3639 /* BehaviorRelay+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = A788760BE0D2EF4CFE65B330573CDE01 /* BehaviorRelay+Driver.swift */; }; + 1AD7C51CCF7E6204B37A504B68924F16 /* JXCategoryDotCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B9DE725566B49263553A93A12785279 /* JXCategoryDotCellModel.m */; }; + 1B1F44C59F29D08B990B0369C15794E0 /* ImmediateSchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37823DB9A4881236466DB30127339D61 /* ImmediateSchedulerType.swift */; }; + 1B2A260FFFFCB3D9E0AC958E83C57F4B /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 09F7D2E7C9DB8F796D68D5765F3F9431 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B6FE64B6F14CEAF4B34421A1820AE56 /* KFImageProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88AC54D1B177174E77B56FBB8FDA3C65 /* KFImageProtocol.swift */; }; + 1B957CE26D7722E306F95886B5EDC013 /* RxTableViewDataSourcePrefetchingProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3E10375E5768292EEC184DFEB9301F3 /* RxTableViewDataSourcePrefetchingProxy.swift */; }; + 1B97BB0FB3AD904FD5931485914AD868 /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3A506D4AE4A293357B49D9AD000A532 /* ConstraintRelation.swift */; }; + 1BA88BD6149449B0EB04E4E7F2822237 /* _RX.m in Sources */ = {isa = PBXBuildFile; fileRef = 7373A506072C533C303FBDB01375DAAC /* _RX.m */; }; + 1BED5C40C873A14BD22FCC7A8BC11848 /* RxTableViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C666B74A169FA98F3FFC12AF54248FD /* RxTableViewDataSourceType.swift */; }; + 1C0B22AA4E83F0C0C7E55FE842D3C1F9 /* NSDate+BRPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = A20B398A6CC241B39BCA9C2F2BDB08A9 /* NSDate+BRPickerView.m */; }; + 1C33277D17F042B6BADC5BEFD04DC3E9 /* BRAddressPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B43E9C15A4E70FA5A32A182E1948DB6 /* BRAddressPickerView.m */; }; + 1C9653CE5BA95B8280803BA82EC70A26 /* DDFontKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DBD21FD126437077D0B354EDE7FE2318 /* DDFontKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CAF7FCBD075678639BE65A029B4E56A /* JXCategoryBaseCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 77413D6A5B61595D5226C52CAC7583E3 /* JXCategoryBaseCellModel.m */; }; + 1CD029D4F48324168F0220D8213348D3 /* EKProcessingNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9726C761207036EF206C6CEC6EEB0116 /* EKProcessingNoteMessageView.swift */; }; + 1CFEFC2175C9F8BDC9DF06F143AA2747 /* ConstraintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0B456A7535ADF8CD38B5EC1D33A1029 /* ConstraintView.swift */; }; + 1D6D63D61E41CDC8C9A95724CF0E75CC /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = B93041A630990C6AC415ED34106D1D1A /* Validation.swift */; }; + 1D824F2FD6B24A7CD4461775F29515CD /* UITextField+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 304994798CCDFA55DBD2260E3A7C0B30 /* UITextField+DDCategory.m */; }; + 1DAD1ABC0638C45123D6AA1E78167F56 /* StringEncoding+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF6A987FBC1DCE05DA16BA51DDFC41B7 /* StringEncoding+Alamofire.swift */; }; + 1DB58F33DBD7AB68CF77BB0B040E7BC4 /* Materialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 253569B5607BC7CDC1692A171D3F00C5 /* Materialize.swift */; }; + 1DF58F80AC0A6C167AFCF76ABE39A9D2 /* DDBaseMutableAttributedString.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F659E622FF5611F55167C9B569ABE18 /* DDBaseMutableAttributedString.m */; }; + 1E4A2E4EB128ED973EFAD8D0A76ECCAF /* ZLPhotoBrowser-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F2D87110AC2D64F74ECD8AC9CDEF0C1 /* ZLPhotoBrowser-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F601A8A4AE7C27226B893F8C4611E0E /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 55839B1F12E9A7641E179EF55A520DE0 /* SDWeakProxy.m */; }; + 1FC870398A64B8565B90B11479B88B68 /* IQKeyboardManager+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E1D11043291F9B266581EBA47576CF /* IQKeyboardManager+Position.swift */; }; + 20759C768F51054A64D6E2518B494190 /* DDMASearch.h in Headers */ = {isa = PBXBuildFile; fileRef = 0364DE9DE9160B4FA7D6B950AA386194 /* DDMASearch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 208A97584D845254E986E9C707635B67 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = A8810F442A427B55C7AE10B8984544E2 /* MJRefreshBackStateFooter.m */; }; + 20D33B8ABD8753D217D9D19DC0F55F48 /* SchedulerServices+Emulation.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFBD3DE3DBE50C35DC8C125936E8C594 /* SchedulerServices+Emulation.swift */; }; + 20DC5EFA536B064520E620C2ACAB766E /* CachedResponseHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = A65948E74F7149FE3E49C2025975F504 /* CachedResponseHandler.swift */; }; + 21293E13564D594A09B92A24489E0D53 /* Sample.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5BABAD0DB889E399D6337FF47931FC4 /* Sample.swift */; }; + 212E24D0326544B2078F7A8975C72D9C /* UIApplication+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E445AAD498A96C299DEDA2895DE9FA6 /* UIApplication+DDCategory.m */; }; + 218A594F4B538DBFF56BDDBFA62906B3 /* DDBaseAttributedString.m in Sources */ = {isa = PBXBuildFile; fileRef = 5501A87BC8511F2B9E203B0E5146C52D /* DDBaseAttributedString.m */; }; + 219624B2DB84EE52D0E4F6B1789954E1 /* ZFLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = D8660D7EC237F514C3300C4A1753A4F5 /* ZFLoadingView.m */; }; + 21D966E2F801F96E6E36D2C7BA73235B /* DDNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE8155B9BA8C237438676C3367DBA8BD /* DDNavigationController.swift */; }; + 21FA952E49A0EB77EB7825A78FEF6AA5 /* BRResultModel.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F06F4E5B677529EA469005518F6F78 /* BRResultModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21FADAA36F19612801A23CD9FC35BA98 /* EKAttributes+StatusBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52E789E1BED7EB09865D103AF4B85373 /* EKAttributes+StatusBar.swift */; }; + 224D5F6BA39BADAD19041AF6AD880C80 /* Bool+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA94C2A2A118659F66527DC1D594A44D /* Bool+ZLPhotoBrowser.swift */; }; + 226AE9954640E71AA69AC12F268C4B58 /* RxPickerViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F4DF89C004F58AAB1A8DE49587F3B49 /* RxPickerViewDataSourceType.swift */; }; + 22A0EE3CF4D4D5DAF933A7871B6E47A9 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = EF3571AB946075130C467D7B52E57B27 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22CE10056B2DC6A993C8E3CE966A45D4 /* NSButton+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F00EBA0CC49C54513B299B4D73663EF /* NSButton+Rx.swift */; }; + 23070072A95EC58547F751658BD10FB8 /* QLUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87195BAC3EFE744189DAC86EEC887725 /* QLUtils.swift */; }; + 2354A0786A1EBBC2298B9CB493F8C4FF /* URLRequest+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F7EC85EECC1423B374FC5BCC31766F2 /* URLRequest+Alamofire.swift */; }; + 23595E83E510E3CDD5C5856DD3458FE9 /* NSMutableParagraphStyle+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = ADF45E6317803019457A5EA8BFE1500B /* NSMutableParagraphStyle+DDCategory.m */; }; + 235F5CA0FE85EC9C9BF77DDF796070C3 /* JXCategoryBaseCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 02FEDAD1C01965FBD955DF32016D6989 /* JXCategoryBaseCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 239036796DB886B9DA46D63F53273AA7 /* MATraceReplayOverlay+Addition.h in Headers */ = {isa = PBXBuildFile; fileRef = C30127D60AA841A915A8039BB99FD886 /* MATraceReplayOverlay+Addition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23B683FB3262FAB104127CD59D29E34A /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 5118EEA7FBCE09CB70C52A5122825D1B /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23E7FD08C3DF07540AD2118EA057AECA /* DeviceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE7AB58F3BAED9A18850DC937778E4FE /* DeviceInfo.swift */; }; + 23EFAA45BE23C0F05AE3A5A892808639 /* UIView+Shadow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 559996B42B8700271D39002B0C7DD24E /* UIView+Shadow.swift */; }; + 24488C0EC1CD3766AF3BA0C3361D2F05 /* KVORepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD6A00003DCF476B5B5C7CD84A4FF86D /* KVORepresentable.swift */; }; + 245D0E313372FC4F2297E8CDC17BFDF4 /* ZFPlayerGestureControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 50A490EAFAEC4DE19BACFBC6105EA0D0 /* ZFPlayerGestureControl.m */; }; + 24E92B843F6FA24594FB1963D297E1C1 /* DDViewControllerAnimatedTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 728495767F7F2BD321DD997F5508009E /* DDViewControllerAnimatedTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2508C13A6D783495CAA9FEF848ED3408 /* DDBaseButton.m in Sources */ = {isa = PBXBuildFile; fileRef = DDA33FAEAD96DC6BD523DAE59DEA6E00 /* DDBaseButton.m */; }; + 254DB7DF69C8F0DA8BAC684099B27944 /* ZLAlbumListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AF3DB056FF768A884948A7AC1886EBC /* ZLAlbumListModel.swift */; }; + 259DD1BE69FB6C8030BCD5994B5E5B51 /* SwiftyRSA-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FD81226AD6B428809B3690452F1589A /* SwiftyRSA-dummy.m */; }; + 25BF5D9FAE084BAE3824007EA8E0196C /* IQToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D9D4682AF261209380FE4393488D114 /* IQToolbar.swift */; }; + 263E6DC0FCCF45948585AE8D649ADCE4 /* UICollectionView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04E04463C5F453870A53A7E2F5492ED6 /* UICollectionView+Rx.swift */; }; + 2655C03CDF30A7690E43D892DDC95AB5 /* ZFPlayerLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FEEECA72C1BB5566120AF0EA7AEC1BC3 /* ZFPlayerLogManager.m */; }; + 267AAADE4AF59BA04B0CBCA0B52AE81A /* WithUnretained.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0598E7DDE673DDF7484F63904625B4DE /* WithUnretained.swift */; }; + 26A272A17525A4C031B070E5E5BC1C07 /* Using.swift in Sources */ = {isa = PBXBuildFile; fileRef = 806B5B56C01097586DC8023B631BBE14 /* Using.swift */; }; + 27043FD4E15DBD03FD933A60109C3009 /* EKAttributes+HapticFeedback.swift in Sources */ = {isa = PBXBuildFile; fileRef = 648439220BF470106FF166857E9AEE95 /* EKAttributes+HapticFeedback.swift */; }; + 270ED905740AD9FEFB9A346AC527D53A /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 12A4A336045BC0B40DB025D6F491EE26 /* SDAnimatedImageView.m */; }; + 271784DB8C33D2BFA5BF7DD92D9F4669 /* ConstraintConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0ECCEAE57EDDB8B2A3E8AC0E0F20AE1B /* ConstraintConfig.swift */; }; + 2776B3355D535E5A68E18C4C77B2D595 /* ZLPhotoConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75FF75042778B1F2D5B5419A53AC1CBA /* ZLPhotoConfiguration.swift */; }; + 27770DF47A61DEEB841F3E977A6BE99B /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = CDC1E06BD99C0082E2E7169902D8A03B /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 279C4E09D6D4113942EB37DE5DD034B0 /* JXCategoryIndicatorBackgroundView.m in Sources */ = {isa = PBXBuildFile; fileRef = CEB3D4C291A99DA937CEDF324A6C2E85 /* JXCategoryIndicatorBackgroundView.m */; }; + 2800025CA8C3B73D8B0442A4D5941634 /* ConstraintConstantTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F183400195575164CDEFA521081774A /* ConstraintConstantTarget.swift */; }; + 287C56709F84B9F1CD23DD269BAF47E5 /* ConstraintLayoutSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E7DDD5F13C6D43D6067B784F42EA5B8 /* ConstraintLayoutSupport.swift */; }; + 28A535FACB6249A704339D22C8C65CE9 /* Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 400211ECF73A18F5EF80A57BF4FAC8E6 /* Infallible.swift */; }; + 28AAB38EDCA038502AF2FB61B64DF993 /* ScheduledItemType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D57D19629CE260314DE6E8DB370E35D /* ScheduledItemType.swift */; }; + 28E3B45C51EB7B6711CC6AF6BBA4F32F /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = FF92EACA368FAB1532C0EC79209A48A7 /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28E8453EBEAA5D3187A1FB686F807A07 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 787C2921957C0B7F9445C0D727AFFF01 /* SDWebImageTransition.m */; }; + 2904F4C9146DCD317E8FB54337D18675 /* AsMaybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3667D48D78F4EB9E9A9A8982E3A1F6BA /* AsMaybe.swift */; }; + 290CC252DD7A79A8CD348210A4ECEF8F /* ZFPresentTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = E73CE92DD4FE7D7478F6FBDF487927F2 /* ZFPresentTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 294FD6DF96151AA1518E9562127E81A0 /* SchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FE35758BD8F68C0937204A63AD8C001 /* SchedulerType.swift */; }; + 29A94387DA04DE3CA441D0244ED3B6E0 /* ZFPlayerConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 07E3AE01D1547BF2F1CFD22F207B2F5D /* ZFPlayerConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29ADDEB7070613224B9510A61E41A745 /* EKAttributes+WindowLevel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27E4356DDCEF88BD5CD7BB072F6550C9 /* EKAttributes+WindowLevel.swift */; }; + 29B1535C08EB32851E714DF7746B0B1E /* UIFont+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 06848B23C75BA91EF719A27ECEE5150D /* UIFont+DDCategory.m */; }; + 29BDE26902A035FAEBCB2DC35DEE16F2 /* ControlTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C1B1A69BE4480B37E9CCCFC00E5FE56 /* ControlTarget.swift */; }; + 29C7B5B61EDB9B6010093123C95146D0 /* ZLCameraConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9D1E64F705B9EE7B1190E071B22C188 /* ZLCameraConfiguration.swift */; }; + 29F4DFF55D0B18B9ACA5820B30481389 /* DDLogKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ADA9C4F15A3ACF6BD93A95B4E72343BA /* DDLogKit_Private-dummy.m */; }; + 2A6423FCAB17960280B3035F79F4DD6F /* IQKeyboardManager+OrientationNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44D19B06332287C07BA06568BD4D7EF6 /* IQKeyboardManager+OrientationNotification.swift */; }; + 2A6516A21BC488E02185E80B8CE10CFB /* DDMASearch.m in Sources */ = {isa = PBXBuildFile; fileRef = 9497B3B2C8BBA7CB89EF01382C75DDCE /* DDMASearch.m */; }; + 2A9587CB9E83DC818BC42AB6D3BA6C93 /* AlamofireExtended.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60986D96B4E186692402A1E5A9991405 /* AlamofireExtended.swift */; }; + 2B4481AD1565823F8A7EC0FF2E9C0C34 /* PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A3F3F200A8F91B60E91D136A96A72AC /* PrimitiveSequence.swift */; }; + 2B6E7E401FECF3BA6B6856DAFE81E233 /* UIControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AE8B7F8D62D93BC27053C5698F252FF /* UIControl+Rx.swift */; }; + 2B799593BA9EF6DAF478B5551D7E7A6D /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 40B6E1DB42A71F22EB136A5C69D993E6 /* SDImageCachesManager.m */; }; + 2BA709D312C8AB728557631E34DC3A02 /* CompactMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = C34D216497732A44544F47481406400C /* CompactMap.swift */; }; + 2BBD8EA6B3F3A8EA8F721498BE13D6C8 /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = CB3908E3273D37090384F2B128AD30F2 /* MJRefreshStateHeader.m */; }; + 2BEB49D6D0DC6C31AF375F78CC8CF4F7 /* UISwitch+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = DA7C542A8A0FEF11F40CAD6B4B783081 /* UISwitch+DDCategory.m */; }; + 2BF1A8E6F302964E4EA7E6B004474BF6 /* RxCocoa-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 0613FE7A99BDEDD322F3D8DE00061E1B /* RxCocoa-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BF6AD4F75D3FFC369CCB82DCA4C730E /* MJRefreshStateTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E627D5B1A7FB24C484CE8EFFD56AAFF /* MJRefreshStateTrailer.m */; }; + 2BF7BE1115AE5E63724A339701C1D7C3 /* ZFPortraitControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = 401C887AD28468D21FC95529F3966CEC /* ZFPortraitControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C0D806E4CC111F69F6DA1589BF4DE81 /* PublicKey.swift in Sources */ = {isa = PBXBuildFile; fileRef = A435184CEFCE5107680EF9EBBFA6CD97 /* PublicKey.swift */; }; + 2C37F2D2D4CEAD643BD8D6212242A740 /* UIRefreshControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98E6927F5F9CA3F5029AFE8A90231918 /* UIRefreshControl+Rx.swift */; }; + 2C6800A5F9C1D1678421E5BEF03AB8C9 /* MABaseOverlay+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = C3EB24F4485698DF0313E5B14C03D447 /* MABaseOverlay+DDCategory.m */; }; + 2C6ACA8B1C2D0E6B32FADB46A25F2291 /* ConstraintLayoutGuideDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95415F271C47020156F876B9F8DB738C /* ConstraintLayoutGuideDSL.swift */; }; + 2CC3AD3D3398B56CF9B85CC4A7F9F439 /* QLCompatibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B62B6C47135CEF2CEB76E9BED44680B /* QLCompatibility.swift */; }; + 2CEC2407C7ADAA7A599DA21A267E0339 /* InvocableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51AD81CDD5814ACB79200B169B425A0A /* InvocableType.swift */; }; + 2CFCF233E052F29452123E61CB274CFC /* UIImageView+ZFCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F64E1B390C0BFA057ACB5BB56E9C6EBF /* UIImageView+ZFCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D2CDCF93A57C458A459F5A968528E34 /* DDNavigationControllerDelegateReceiver.h in Headers */ = {isa = PBXBuildFile; fileRef = 4582A9D4C8AE8FBC80AE2A4C09EE181D /* DDNavigationControllerDelegateReceiver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D82A39ED64BC8D7B70ECB904C0457B8 /* AsyncLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFF73BF54B3E9B8EBA2ECD20D3D7CF55 /* AsyncLock.swift */; }; + 2D83E793BB320606B62CFE1E10C2A490 /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E0C37DE99D9731B1B1A4C331F9E1300 /* MJRefreshHeader.m */; }; + 2E3D2707E7E60BE010D3246CD02D6584 /* ESTabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 787A6743C297666C5B4D984E75D2CDF7 /* ESTabBar.swift */; }; + 2E7F3CDAAF53377E46D82BA29C31E95C /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = CD6C5B5712F24543E9686ACF3F7180E0 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EDAF39A638BF0797DAC0C75226CE335 /* UIApplication+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFA0B4ADBA7A655A623B55A77AB3F393 /* UIApplication+Rx.swift */; }; + 2F9DCE2C9BF85DC544AB534C22861D2B /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = 539024D7747DFC60ACCE3627871052CB /* Debugging.swift */; }; + 2FB9C222D3F9831919DD7F1FC0AB6877 /* Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 176CA123F6C4804576C556235D98057E /* Kingfisher.swift */; }; + 302832D4B7652F756A29A925F087C822 /* Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25AB617439A133C50AD2EA048343F2F7 /* Concurrency.swift */; }; + 303B93CF0EE553490F73F76D9C534C44 /* EKNotificationMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0349A346D47724A1023509E89D07E8E7 /* EKNotificationMessageView.swift */; }; + 305E3021931A0012C905074FD6EC9693 /* ImageTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = E387B9595875534C9E33B3C0DF8D95C0 /* ImageTransition.swift */; }; + 3080EA61B99D41BDC271BC34BFB221EF /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 974FA2645992FB57B2251A6B656D45AB /* PriorityQueue.swift */; }; + 308503CCD3E28A3911BCC7004887D711 /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04EE0EBD02463316BE1F289617518D8E /* PriorityQueue.swift */; }; + 3088663B2B31153DD3995BB53A10045A /* ZFSliderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 85AE5D42F04D6B691672E9ECE4FFDF56 /* ZFSliderView.m */; }; + 30AFD9ED03F8A92DD14DBBEC46FA03FA /* CPListItem+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8942D68167FF5EADAD9D52CBE09A1566 /* CPListItem+Kingfisher.swift */; }; + 30C0B4658AC7B7E2E39B7663F458ED84 /* UIView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = AC591307EA0056B03A18106EE9AA4EB4 /* UIView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 315E6E32711371D1E923D202C5BDF0D4 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = DC420F976245C2E3022F83DC7B4D3881 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 316ECCB1FEC71196E803E0DDCED7C651 /* DDBaseScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3FDEBB3AEBC446882DCBE9DA2B10A3 /* DDBaseScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31C23CF66BBB1520FFD4D8C8AFB510DF /* IQUIScrollView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14ED87EA32575BCF5C15E9871F5DE178 /* IQUIScrollView+Additions.swift */; }; + 31CF6A9299E02044EA28735F99B19686 /* UIView+ZFFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = A36A2265D106FF33C57F187EE4A41467 /* UIView+ZFFrame.m */; }; + 3221C0E1F84D9933346539DC210EA33E /* ImageDrawing.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29FDB4081ED8501C10FD8223CC672335 /* ImageDrawing.swift */; }; + 32D2FA4F8AC6EBE83DDF786AF4629B28 /* DDAF.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98CB7238F9A57FDE98F1C618823FBD5C /* DDAF.swift */; }; + 32E95A874664AF103BB1075B97BCB00C /* DDBasicControlsKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AB9DE2689151037721EDC5252A2D035 /* DDBasicControlsKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32E9AA9359679CAF7325414EBB2433D9 /* ConstraintPriorityTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7029C52AFA58A03BECCD586864EC830 /* ConstraintPriorityTarget.swift */; }; + 32EF653078062D745876A8D6114B360B /* ConstraintDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C665BD596A5079363EB7617BE4EDDF3 /* ConstraintDSL.swift */; }; + 33043B5E0E8C4E2805481E6D692949AB /* JXCategoryIndicatorLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B91C070B5B833ABCE6DBA6261E0539B /* JXCategoryIndicatorLineView.m */; }; + 33206CE1C59D7666BDDE9E1465A610EE /* ZLEditImageConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61A1AAA8E6195266F5597F86DFED1636 /* ZLEditImageConfiguration.swift */; }; + 335B3E39E54362354732A309234F35CA /* ImageDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43F124E4FEF45D1428666FF58ED02874 /* ImageDownloader.swift */; }; + 33859D3CB90E4ABDB24C9227DFE85E4A /* RetryPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6341B3EAD98B6AB9285FA974E49C2DC4 /* RetryPolicy.swift */; }; + 3390AF4C23AD240C91F53A3A21699910 /* NSMutableAttributedString+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = A37A3D322A680778C4A85EBBB3DDDDDA /* NSMutableAttributedString+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33E6C702602A0ABE4B9FF00731487E49 /* DDBaseTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = F92DC3831B43F4503392BB08C47EEC31 /* DDBaseTextField.m */; }; + 348A2399833F70160F70ABBDCB980E2B /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = C0620E30D560801C592DCBDEE95B78BE /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 348B741A384874D6B657CCDEEFA5D29E /* NSMutableAttributedString+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CD6C27BA7A7C0372094BB0F987EA2AA /* NSMutableAttributedString+DDCategory.m */; }; + 34C07B18252160C63FBD16003E845CFF /* JXCategoryNumberCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 49AFBB6C8C21BE36ECBBAF7B762DC558 /* JXCategoryNumberCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34EE7B15E96B44F2F505FF8B47CA47BA /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1F0060E75A220C59F54F416CA6B27E0 /* Response.swift */; }; + 34F4C47DFD00CBF46312DFB03A6E8840 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 56227AE775CD6E1B379A7746CF01131A /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3530FB5ECF1B91F9E3243BF34F446980 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D692E191D5A31E9F9F5176425ED7090 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3542BDC08CBCA8BB1951AB507AB42AA1 /* JXCategoryImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 29336668B4EF47445FF254CF2AFA0390 /* JXCategoryImageCellModel.m */; }; + 3563535F257C8923038E5C66A70CD288 /* BRPickerStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 29AD65CB230B1E0FB98002F011CF7879 /* BRPickerStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 357C743823312159B0278D1810A8A481 /* EKWrapperView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BA0A8E171B17AF0BBC5812309AC75AE /* EKWrapperView.swift */; }; + 3598D5C2996C3171FE99FA07BDFEE3AD /* Cancelable.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF6E8F7D25ECF33B09FA952CE6EEDE59 /* Cancelable.swift */; }; + 35B124D386A8A344DB4E378136803251 /* ZFSmallFloatControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = F58E4C3FDF308B6C5E1472A27C83EE9C /* ZFSmallFloatControlView.m */; }; + 35ED1671F8FD3A5108E1B917130980EE /* EKRatingMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B5C0B9769308527090C7360F61F0C50 /* EKRatingMessageView.swift */; }; + 36097F1137828C245FBFDC054C8E9ECC /* Multicast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52675871FE5D8FD60A740327292ACABC /* Multicast.swift */; }; + 365DE3259C4106D8E3AC066DAEEB4720 /* DDBaseSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 535ED29470EA89A1CB2DCA32ECF39E69 /* DDBaseSwitch.m */; }; + 36699973AC3B381C11068CAD5226A147 /* UIImageView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F22983D02B664189D884F954DC89577 /* UIImageView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36778CF0D79CC8D72482B0FCF6DA5D97 /* NopDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43EEEE384195CEBADB7B3EA9107DCA45 /* NopDisposable.swift */; }; + 36AB9414D82F70F6517E1948301B56E6 /* SDImageAWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 57549EBD6346758EB39174143BD235B7 /* SDImageAWebPCoder.m */; }; + 36B204B1822DC0BB1A37AADE7218B28C /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = CDB7E7BE996331DFE30986CEAD96F9E9 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36F40E8EBE86E294348DF7F319E98D8A /* AutoUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C058BCFE672D5791D938C8E04CD9BA55 /* AutoUI.swift */; }; + 36FEB6DD53D08DB2164BEE84F3653BE7 /* Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 217353BBD997FEDD07AC1E006782A2EE /* Driver.swift */; }; + 372DFC5E474E6F5988D709EE7BAD99E6 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = B7B349E830B45ADB89E33A896487E04F /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 379EF14788368688008C6046091CBA72 /* ESTabBarItemContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A7DA3FDF3D09A72803F1ED68CACD997 /* ESTabBarItemContentView.swift */; }; + 37B1639C015AC196E48F0E0643A3E52A /* UIView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 130427CD684A106C0D0EE642A156C063 /* UIView+DDCategory.m */; }; + 37DA31E97761C9AD09DB9F3AD80AAA70 /* JXCategoryViewAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = EA06349BE41A269BCA57E429E2D65D32 /* JXCategoryViewAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3808291BFCAA43687CA6EEEBA0A23A78 /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D1ACD67FC90851792AFDB29EAEF27CE /* RecursiveLock.swift */; }; + 38113EA83CFE5B14B6BCFC96772A2BDE /* IQKeyboardManager+UIKeyboardNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1936F0C9B55EAD2F03BBAB6DA1A31AD /* IQKeyboardManager+UIKeyboardNotification.swift */; }; + 387869C0143B9C53D8BFD20B3CB5A284 /* KFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7633FA2DCAF01B51453AA097D12BC7DB /* KFAnimatedImage.swift */; }; + 388BBDF2D1096563AA5C9266E06AF151 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 12329F74B8F5ED5590CC69C6AEB393AA /* NSImage+Compatibility.m */; }; + 38B5C354CCEB18536DC8739368429DA9 /* UIGestureRecognizer+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25C18D2ED6904B58299AE0D9D68D1827 /* UIGestureRecognizer+Rx.swift */; }; + 38F97424C7943C32EBF2D74EC75B1C6B /* Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A902D49CF099405F20016D58DE2DED3 /* Zip+arity.swift */; }; + 3A10B0AAD9F15B171EF41F035369BECB /* ZFNetworkSpeedMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = 775E9F99932457EB38E1830414C07C59 /* ZFNetworkSpeedMonitor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A486A9A0353C0C9DDFFAFD58E1A46B8 /* DisposeBag.swift in Sources */ = {isa = PBXBuildFile; fileRef = C121B61163D889285F9E307ADE5EAFA8 /* DisposeBag.swift */; }; + 3A6E2C4AFDE24B27E1107FCF960F7927 /* MATraceReplayOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F4CD2F1AE5673BEBFDF3BE76563A870 /* MATraceReplayOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AAB1695C0F9AAE144A7E37E34966F45 /* IQTitleBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22EE85281F54BFC5F4671A79A568D09B /* IQTitleBarButtonItem.swift */; }; + 3ABEB528021F3C74188935D8DC28C1BA /* RetryStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A9B13FCEF59922F87375AC9A6F110E6 /* RetryStrategy.swift */; }; + 3ACCD6DF1F9C7989B0BB3482AD01D786 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E5E3382F3E9A1F4EBB361EA51F90D5 /* SDImageCoder.m */; }; + 3ACFBA19004CE54466BBD8C6BEF1D27B /* JXCategoryTitleImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E8FB0F6C04ACF36B16F90D9ECC56E7E /* JXCategoryTitleImageView.m */; }; + 3B14941EB241AF1ED07CFF634860BE1E /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = D15DA1770C29D7F3B1440F9B3B3ED1B3 /* RedirectHandler.swift */; }; + 3B36018B578AF6022C312C158910AF1B /* SingleAssignmentDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81497325EC740F6F6E8CF05DA8DB27B2 /* SingleAssignmentDisposable.swift */; }; + 3B46EA5C8F709515518D2DD372F672F6 /* HistoricalScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 290E927FC45FEC741770263CB43552BC /* HistoricalScheduler.swift */; }; + 3BA07D26BA7B31AD481DCF513B101864 /* ZFPlayerView.m in Sources */ = {isa = PBXBuildFile; fileRef = A0075F18943CBD04D78DFC48361C17F5 /* ZFPlayerView.m */; }; + 3C11CB98AFEFBE7A201DA71292528A69 /* EKRatingSymbolView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28A9933BD3E7F403EB5ED19E803A74C2 /* EKRatingSymbolView.swift */; }; + 3CA6371C85FE25DFE2889186676D041B /* PrivateKey.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74F8FEA5A910644F177B1663C04516EC /* PrivateKey.swift */; }; + 3CD4C48A125B7181256A279656B4C0C2 /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C7FF04AD0134D864551BDA6014A3525 /* Image.swift */; }; + 3D1DB9B06A570F6243016C3FB3692C4C /* ZFPlayerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AE38A3F9708F4BF8E26C436B4013776 /* ZFPlayerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D5EFD0501E6B4316F1F1C49695D2D15 /* UITabBarController+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = D9E7D9EE698F5F05F581FDF728B6836A /* UITabBarController+DDCategory.m */; }; + 3D99594286ED1D20D88E0A86886224BA /* SwiftyRSA+ObjC.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEFB7C567B170E54023DD9E3C7C9E6EB /* SwiftyRSA+ObjC.swift */; }; + 3DAD1B7119391968F39EA23187C22506 /* ConstraintMultiplierTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 117F315C434C3863D42FD21EB781CA98 /* ConstraintMultiplierTarget.swift */; }; + 3DB9872080D437F2A851158F1F8F2693 /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = BA2F69C3200D9F1B94E8644DAAFA3758 /* SDAnimatedImagePlayer.m */; }; + 3EBC1473805AE2975380A13C46E9394E /* RxCollectionViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B225AA8AA8FCAA7D49D7E3E6A7F4A4F /* RxCollectionViewDelegateProxy.swift */; }; + 3ED2486A34EFAD23ACEA160695EEEAD9 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E3AF6E52FF4E796B60018BCAF921F14 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EE1F3D911A2EEFC8A9BC6503440FAA4 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = AD82D375FA48F410FCE1A8103D22A9C9 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EEB15302467C142726D815653A92E15 /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CD808051F30303382AE76758822EB7E /* SDImageGraphics.m */; }; + 3EFC804679D24748F1AE2B2ECC493751 /* ZFUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B76E2FE549CB4865142D5E14A38069A /* ZFUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F04950F30488FB6AD475A0519B0B16F /* JXCategoryCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 40FFC8A40D03A307B5CCBE11F93D1B12 /* JXCategoryCollectionView.m */; }; + 3F7C7042BBE1B605BD0FA37056BB1D78 /* _RXKVOObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = D62C83D50BFED5A4B6B6351ABE1536C8 /* _RXKVOObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FBEBAB3B7DC948385FE1E1A40A91E5F /* KFOptionsSetter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50BFD4E41EC70A76600A4D2BD756249C /* KFOptionsSetter.swift */; }; + 3FE17AA44DD3A1A5179103D3798D079F /* JXCategoryDotCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EEEE057AEC3F23421B6EA9039FDB2856 /* JXCategoryDotCell.m */; }; + 4039879CF20E4A8D49410A9C869EF078 /* UIFont+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4443E5360C55550FA7EA871AAD12EA2B /* UIFont+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 406B70834D7638A4706184831DA1BA56 /* DDPersistenceKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E08931E968870781ECD67D8DC25B85F4 /* DDPersistenceKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 408E77F6FB2A28181214F3571597C6E6 /* Signature.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84995150EDADD2A687D315A58D072317 /* Signature.swift */; }; + 40F0EC1B6B9648E6668E369AB598A876 /* BRResultModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 29F460B5E3AEFB6C7975B90E4F750ED4 /* BRResultModel.m */; }; + 4108B798335CF1676AD8A70E3881D4CD /* DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = ADE3ED788C900A0031D6FD43F3C5C8F4 /* DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41259A7B973C283E3F4E3BBF14B0F78F /* NSBundle+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 98B8534159943A5AE3BE4E7F14B3EB6E /* NSBundle+DDCategory.m */; }; + 4135C25FE2CF12EA8109A063FE9142FC /* NSThread+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = C9589DB5D2D94EE3C30777E55FE0137D /* NSThread+DDCategory.m */; }; + 4139B49E8556C97A3D8FE0AB885CA1FD /* JXCategoryListContainerRTLCell.m in Sources */ = {isa = PBXBuildFile; fileRef = ECF55172DABBA580348BAC9B753BD5AC /* JXCategoryListContainerRTLCell.m */; }; + 4158B3008489630CBB4D4B2074E52DFC /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04ADAC8C01EA757A396D3761DCD700BD /* RecursiveLock.swift */; }; + 417F88073D2B0203BC70C580CA9AACFF /* EKRootViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9F99F41CE9BBA098B5CA0619B11EF16 /* EKRootViewController.swift */; }; + 4186F0298C3AB7690171B1F6A08DFA6D /* AnonymousObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CB5971F9ED2AAEB23FD6EFE689A4BE4 /* AnonymousObserver.swift */; }; + 4223E964C57E9A4588FA614FE769EBB1 /* Toast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80F6990D25520C9527311757E4DFE886 /* Toast.swift */; }; + 423A35F848C2ACF286C3733820576B57 /* DDMAMapView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8167D5C063A75E87C93E22879E010180 /* DDMAMapView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42440FF6192AC7453BF47A3EE8BCB441 /* PrimitiveSequence+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A1AB87A7484DFD8846AA2132C2A1C52 /* PrimitiveSequence+Concurrency.swift */; }; + 429AC37278014388FB98EF000ABF9700 /* MAPointAnnotation+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = FB4414A9248D03B8B7104D1E67CBC979 /* MAPointAnnotation+DDCategory.m */; }; + 429E0C154771D9967586AAC6C27396F1 /* LockOwnerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 821A51399AA8014383227F9EF07762E8 /* LockOwnerType.swift */; }; + 42B160E9A29EA57557E4B89EBBAC3B28 /* SkipWhile.swift in Sources */ = {isa = PBXBuildFile; fileRef = D87D38F8DCD8D3B5BEF78D23FDD2E7B0 /* SkipWhile.swift */; }; + 42BE318AB9A1CD8EBEDD357FD1087E74 /* SubscribeOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AB8E151032EACAC5DF0370A209F5024 /* SubscribeOn.swift */; }; + 432CDB24FD1A51EC0E886D74F109EF4F /* MAPointAnnotation+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 43626F977713AEAF0E58929CE8CDB3CA /* MAPointAnnotation+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 432F9B4E6023BA249378CAF9EDBB5CCA /* DDBaseAttributedString.h in Headers */ = {isa = PBXBuildFile; fileRef = A2611215DA2487C56F63E5ECC7F5E761 /* DDBaseAttributedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43BFF9EABBEDACBC120AAA0D0A1F8171 /* Switch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58218155F660EF1DBF61626281ED8C79 /* Switch.swift */; }; + 43CBE2BC22C61B5E447F3C68184C3012 /* ImageFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9DAC7A00E6908FD3CE179B6FF564AA5 /* ImageFormat.swift */; }; + 4408CB04AFDA8CC998F4FD00910B4738 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D52676D7FF93EADA44F726BF34B13A02 /* SDWebImageOperation.m */; }; + 441793180F0D4EFB3B71D6117EDFA872 /* ESTabBarController-swift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 32401D1F033150760A66639F648D97DD /* ESTabBarController-swift-dummy.m */; }; + 44249E35075C9A99ED0B179EDFF7FAF6 /* UITableViewCell+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = E098D99A76CC9954A6BE37F5635FC9A8 /* UITableViewCell+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4433D02EE9231F24E94E5FD44492907C /* UIViewController+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F39DFB50C0CEE5C07570D1F53966326 /* UIViewController+ZLPhotoBrowser.swift */; }; + 4456B3A0C0C906DB5380BD70DB8072A8 /* ConstraintRelatableTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBD33BE475D8487B542491727DBBD29B /* ConstraintRelatableTarget.swift */; }; + 4482C25FB41CA449FB31D498FBC4C50C /* GradientView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC2BDD5A9F50BCD9C6D52D78D069DAF8 /* GradientView.swift */; }; + 44BDECE8B10C6DFB4BBFB8621A636FB9 /* ControlEvent+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54E1B14F3A004FC83C932AF31BF2AC09 /* ControlEvent+Signal.swift */; }; + 44C35B8EF128278FA7F9F22C82379DEC /* DDBaseTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A2B314FC086E2144380E4DFC9BBA902 /* DDBaseTextView.m */; }; + 453C775A0F9ACCD310681A1C49D051AF /* ZLCustomCamera.swift in Sources */ = {isa = PBXBuildFile; fileRef = F89F07C931C3F3BA8DAC00E945A7A5BE /* ZLCustomCamera.swift */; }; + 456C758D7BE4EDCF597AD04A3D095711 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 93195349FE16D7CBCBF5530FA8E207A1 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45A0BF093F35F5689FEF442D8033AAD0 /* ConstraintMakerExtendable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FC7F1B055C62C605A0893A4B4286548 /* ConstraintMakerExtendable.swift */; }; + 45F2115D4EC21D89A899E9D969CA1810 /* NSTextView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12FFF6F7F693F3BB234800879918D57A /* NSTextView+Rx.swift */; }; + 45F97BF0CECC1003C55AFF491DD3D05C /* DDCategoryKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E2EA1BC5C269D99913D34141456DB406 /* DDCategoryKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 460CAF3FCDD140A11875B67D3124B8BC /* Combine.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA1AE6DF6ABD2055C14B6AEC6FDCD0EB /* Combine.swift */; }; + 463859BF5F9D7AAD1F9216EA25687599 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = F1EAFDB8E6858275DFAF08E51C168093 /* MBProgressHUD.m */; }; + 464C0BACBF2990B25DC1444413849288 /* Driver+Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 684D01417759D26059765DBD103935E7 /* Driver+Subscription.swift */; }; + 465DDC88E2B046AF9FBB74B1D3D3FECD /* DDAudioPlayerKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 23667F434A1D0EDA99357240B9ACA071 /* DDAudioPlayerKit_Private-dummy.m */; }; + 466076161BAFA79E1EB9C034956DB0CB /* EKAccessoryNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83C495291C58F4DE5934A16DE7B77539 /* EKAccessoryNoteMessageView.swift */; }; + 468F7993E475998F74D45D577A1A8079 /* ZFLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = C3A3027F3A887D54F8A5D4C8DBEA80A1 /* ZFLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46C36454D8E82CEC47B95D6426063110 /* ZLPhotoBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B9E173A3B3BD8F758DF24A5F3C04B8F /* ZLPhotoBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4723320357D0EA504D83E69BBCF159D6 /* ZLPhotoConfiguration+Chaining.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE13D1D1E9D13E5DBC54FD150771D5E5 /* ZLPhotoConfiguration+Chaining.swift */; }; + 472E77518A69C81E5B6960A7FAC3A06C /* ConstraintDirectionalInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45A7ADF680DF48084013C21660919A71 /* ConstraintDirectionalInsets.swift */; }; + 4749128172D81D74CB561FDEA2CFE434 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED39E4E52F3FC602FFBCC85FF5C9F1E1 /* Result.swift */; }; + 474B94BF4B12B3168F0A330F9858BAD9 /* DDSwitch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D0FC67721BD9964D43BF569D58461A2 /* DDSwitch.swift */; }; + 475A2347C2C908A8DDEACC4C98C0C388 /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2746EBB01091E25AB7A6DC9257CAE0A5 /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4761FA80CF230CF8734D72E0440E9BF5 /* NSURL+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = A319958E73C98ACF9F54AC059009CC1B /* NSURL+DDCategory.m */; }; + 477BADEE897F3C0AA214683C37B50980 /* DDFontKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 68330B3B59229F935EB0700BFDAB1B97 /* DDFontKit_Private-dummy.m */; }; + 47ABDC62006F547E265B058A1D70E8BA /* RequestCompression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63B0FFECAE143495BFB04FA58C7188F5 /* RequestCompression.swift */; }; + 484940673D2B49420F4CA31D609A52F3 /* RxTabBarControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BAE1B51063D993A5EFCA256214FF97F /* RxTabBarControllerDelegateProxy.swift */; }; + 48C8179391555746A729FA6483B7EAB0 /* JXCategoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 51CAD9D3504DAE2E36CD3371AF8005C0 /* JXCategoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49518B9C7ECDF86DB0A650C8ED2694BC /* ConstraintView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67DCB1DB968582DA481C0778C3762179 /* ConstraintView+Extensions.swift */; }; + 496F048374EB9206466B405E01A777C1 /* RecursiveScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E17653FB4A421EDAD142B7FA280AD1EE /* RecursiveScheduler.swift */; }; + 4980DADD831068300F504E6010C54A08 /* DDAutoUIKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C4CF7E3F8F11577FB662D7839D4CEA2D /* DDAutoUIKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49B34E046084601F4A21F26D84FE832B /* _RXObjCRuntime.m in Sources */ = {isa = PBXBuildFile; fileRef = C99FE6BA7DFE2B09AFD87A8B9384095D /* _RXObjCRuntime.m */; }; + 4A48E82F99ED27665CF929386AB1FFC6 /* ZFPortraitViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EC0FD51086DADF03B4999AF9F7BAFA4 /* ZFPortraitViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A5855A5E58F24A944BA6D1CEBDC5BBC /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = A236D223D62C020CF0F1A1D5BA118FB1 /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A73E66A0348DE3EB7FACE0F8FD7DA61 /* ZLPhotoUIConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = C61B9725A7675018476602AD4FB847DE /* ZLPhotoUIConfiguration.swift */; }; + 4A8438BA1927768B5ABF3C58D9B8E25C /* DDToastKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D6A992E1F1418803802C7312E0330C28 /* DDToastKit_Private-dummy.m */; }; + 4AA246FF6A7BE3CDEDABB2438AE8C1E9 /* Window.swift in Sources */ = {isa = PBXBuildFile; fileRef = 599A7B590ACA6E4769E8DF5F97A0063E /* Window.swift */; }; + 4AEEFC52D4F0E173563EF56901855257 /* ZLClipImageDismissAnimatedTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59D19E9E35F2D88873495B9878271ACD /* ZLClipImageDismissAnimatedTransition.swift */; }; + 4B541C41E90C260270E635F42EDC9B7F /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E6850B62AE527DFF6DA66A3009D736D /* UIImage+ForceDecode.m */; }; + 4B679F955E4CAB26B5FE7368B2F99F1A /* UITextField+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = DD3B7CDE1ED4737841DC86337C34CB1A /* UITextField+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B717036F93677425DDB9682C705B644 /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FD011CA76BBA19162FB843AD9DD94A45 /* Alamofire-dummy.m */; }; + 4BB281256AF4C43F5356440D9BCA56AA /* JXCategoryIndicatorCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = FD16DB6C2CC6EB9E78110FFBDC017BD7 /* JXCategoryIndicatorCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C12DE85147AE7B743C1FBF85A6B4304 /* JXCategoryIndicatorRainbowLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = F4BC744570A21D7B0C7586688083259C /* JXCategoryIndicatorRainbowLineView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C7ECC85BAA34F98B6382EA2D8A5F922 /* ImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A04C5D4A4446DD2265AF171D126DBF9 /* ImageDataProvider.swift */; }; + 4C952DAC9CD44EFC7E2CA1A53D381341 /* Merge.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0440522426DB3AF3678746967417BAF /* Merge.swift */; }; + 4CFBCFBE0205E6688F8E47137BD45C15 /* DDBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = F78C1CC1793BC4D0195103A4600830E1 /* DDBaseView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D3398358467AAD494C169F5D5660FA7 /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63BE86A3E05D0A822812D3A6547E027A /* Storage.swift */; }; + 4D8BC7963996C34C270A8443971D5E9F /* VirtualTimeConverterType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C5DCF0D1CBE62281BD83194F96341BC /* VirtualTimeConverterType.swift */; }; + 4DD86C40D4F594076831DF90DFAF5961 /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 918C095C15E34F349696AE40A65F3DC4 /* MultipartFormData.swift */; }; + 4E1B724F70879610E56C69765A0E2938 /* UIScrollView+ZFPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = A262C4E426195A0B813E94A06318FA31 /* UIScrollView+ZFPlayer.m */; }; + 4E2E95B4812870A973F2D0FCECF307AA /* NSData+SHA.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B78915132AEA644B59A337C0C4FDC1E /* NSData+SHA.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EE30E33D02A0D59F317A9CFA0009B01 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C27224308E926D6CED76DDD40C340F0 /* SDImageIOAnimatedCoder.m */; }; + 4EEB05C55B66338EEC5261DDC2B1A341 /* ZLPhotoPreviewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 788A74ECF02240C72B584890E3D0A26D /* ZLPhotoPreviewCell.swift */; }; + 4F338A6C52C35B05E8A873571A9815D7 /* IQKeyboardManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95B7D58E61129EFE9A4FD903A4056967 /* IQKeyboardManager+Internal.swift */; }; + 4F50E550117789F0699F8F37CFA9BA6E /* JXCategoryNumberCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C5F0CC9752B9A98061E29A6B603DF15 /* JXCategoryNumberCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F59B6CC1D4B3EFAA25F42D96C22FF40 /* _RXDelegateProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 767BB055D159AF2A3A495E4C46FCC901 /* _RXDelegateProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FA542506516B8922F8AADE85C136E1C /* JXCategoryIndicatorImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FBF15C821B9A5AC746C891F7226C1B7 /* JXCategoryIndicatorImageView.m */; }; + 502EA6DB92E0383603F215C479FA7D67 /* UIImageView+DDWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 483A4CB2F18EC1491DF4C332D1029C6E /* UIImageView+DDWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50520A6CAB33DD6A5F11562B65CA78A3 /* JXCategoryTitleImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 47944CAB9A2E1CBFD3141E7BF595944A /* JXCategoryTitleImageCell.m */; }; + 50DD8666AF1EAA8E711927A3EBC87508 /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F9217E11B9FCAAEBB360EB617822611 /* MJRefreshConst.m */; }; + 511B522F19916DD68AF4EFED285AF968 /* IQUIView+Hierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9B0FCB9F422D0D1CC931B29ADC21625 /* IQUIView+Hierarchy.swift */; }; + 512135578BA3F99913265843C0638642 /* DDBaseScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F12FC247A6868A9906DB8E68E99A0CD9 /* DDBaseScrollView.m */; }; + 513CADFB7F193445B353B7320A624FBD /* JXCategoryIndicatorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EEE68C206377454090E8B7562573D2B /* JXCategoryIndicatorCell.m */; }; + 51460A037F3BD4D23EB161ED5D9F279F /* JXCategoryListContainerRTLCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B7B623E3E425F951E9D11B0C2DA8E44 /* JXCategoryListContainerRTLCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5150F8B34780E4E3DD7CF2219EDCC4C2 /* DDKeychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7782214C4958E9B77AA6CAF2D430F2ED /* DDKeychain.swift */; }; + 516E3095B8774B6FA0FC6C672ABE4B57 /* UrlLinks.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8F5ADB034A04A654B5D34FABDC5761E /* UrlLinks.swift */; }; + 51734B077F9900737E1E59F4E5D6CAFE /* JXCategoryIndicatorParamsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = B7B532F03C5F88DAE2C697DBADFBC6C5 /* JXCategoryIndicatorParamsModel.m */; }; + 51AF23F0A29C2AA7C4298FB3B7D96418 /* Runtime.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DE1AF0A0764A564599E003AFBDB50AC /* Runtime.swift */; }; + 523D1B0BB7DE56448B35661435267EC0 /* ZLInputTextViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ACD03AAD8EE8BDA4287CE876DF494B4 /* ZLInputTextViewController.swift */; }; + 523D1B7E3260356560241D0C2A66A49E /* JXCategoryIndicatorImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C013CC101671B41E09C1502EA77E4A7 /* JXCategoryIndicatorImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52563FEE66AB6AC291788E02FEE56DFF /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = E8CFEAF0FFA89ADD774F1AC90DDAC0E8 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52E0B9ED085280B6B8F67219F7EA366E /* DDBaseTableView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9828823C2BF2418D550CDBB193C104EA /* DDBaseTableView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52E7EA351B5EA7DE9BD235418C0484E4 /* EKPopUpMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = A77056F46320D38F0EC8EFA7A5AEC2DE /* EKPopUpMessage.swift */; }; + 530C1E6E8D8210BD44D1C17B9A089BDF /* UIImageView+ZFCache.m in Sources */ = {isa = PBXBuildFile; fileRef = CA786B47E39D1946459AB3336473EA7B /* UIImageView+ZFCache.m */; }; + 53136C9E69D0BA58AD108FF73345FB79 /* RxPickerViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71F61D591EFBBE0F4E5CD8FCDCAE47D1 /* RxPickerViewDelegateProxy.swift */; }; + 53693C4A79EC833BC3BA47F4CAAC9E44 /* ClearMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE42E9A9BCAECDCD62405C4D535D6B48 /* ClearMessage.swift */; }; + 53A8449A2AB1430B1001ED45223DCDCA /* DDBaseCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC7D35DE0658E1E65BD001B3AFA5702 /* DDBaseCollectionView.m */; }; + 53B907F77970AA31B73781B9667C3353 /* Binder.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDA62D90A6EF18A3A06FB0047BB4FBC2 /* Binder.swift */; }; + 54092003880B4FEA0C018A3ED9CE7F2F /* NSBundle+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 65FD06ADE19FC189779D2A632024BC2A /* NSBundle+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5434354C379A1C85A849409F278C7BC0 /* DDMutableAttributedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45599187E0E306D492961BB44A1110D3 /* DDMutableAttributedString.swift */; }; + 54BFDD82C3BBC603F1BA81AA8E103EAD /* ZFPlayerControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = 81A11D1530E8125E4DD942C1D1E9F833 /* ZFPlayerControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54C7634794172F98C306F0B3597D5F8B /* ZFPortraitControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = D2C62CE45E39BE434E4DC1A93063A884 /* ZFPortraitControlView.m */; }; + 54E7ACA4C129B78296C039BFE5E61BC6 /* ZLGeneralDefine.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CE230AB72519EDB823EF72848204C6C /* ZLGeneralDefine.swift */; }; + 5551815A96AC2006ED7008C9DD3F8F56 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F68F5BEDE99B5164FE9BDDB198A70B5 /* UIImage+MemoryCacheCost.m */; }; + 55736FD6531A0F1C3B1FDB92244D02EF /* Array+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6050424C3E0CEA0C1D6B5371BF4B350B /* Array+ZLPhotoBrowser.swift */; }; + 557760BF625731C3A7932278BB35FD44 /* UICollectionViewCell+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = ABE7E82F6A637D933B9A7E37477281B7 /* UICollectionViewCell+DDCategory.m */; }; + 559C39AC9FE303F8E073EC5C205F3C58 /* DDAlamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83AE347DC32BAC35F18EC1AB8EFDB289 /* DDAlamofire.swift */; }; + 5619747115BC45D8EF9E0AFBFB7754AC /* Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CA93006BC9E074E370A7DD13B1443B8 /* Signal.swift */; }; + 564F74F04646D901439FA92F30873B9E /* SharedSequence+Operators+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3AF905524A3B1FC4EDB46CF9D9FF1875 /* SharedSequence+Operators+arity.swift */; }; + 5664FEDF3A5F6FBD52B9B19B2EE7360C /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = C1131D66AFE877FB9229D8A0A587BB9C /* SDWebImageDownloaderConfig.m */; }; + 567C4B0C375327BC017CECC699117BC8 /* UINavigationBar+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = D096A66A7BEE99520FA331B561FDE88D /* UINavigationBar+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 568DF1ED8C470080C126EA9D00448949 /* DDAttributedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC7563FB49B3B7F0E4710216BC923FE3 /* DDAttributedString.swift */; }; + 5695D3952A71F68EC9405892A5DCF693 /* ImagePrefetcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E8BA8E66DB61DCD64911E5F2259AEDA /* ImagePrefetcher.swift */; }; + 56D33A6E86B978BD0A7C66442E2D8B52 /* IQKeyboardManagerConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5F0C2764A264E37BD41416288A31CEE /* IQKeyboardManagerConstants.swift */; }; + 56D6B0BDFECB3D87E2A6E86FDB6E75ED /* MainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A3DC87B2C6A39B7CEBC890582EAA58D /* MainScheduler.swift */; }; + 56E6249ACC30A676C07E28C381EA77C0 /* ZFVolumeBrightnessView.h in Headers */ = {isa = PBXBuildFile; fileRef = 30A1628A5729F85121E84E554EE77014 /* ZFVolumeBrightnessView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57096ADF117830FDA4E842AEFAD07BDD /* EKAlertMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 623FAF1E8041F262E2CDF9A23B6E7994 /* EKAlertMessageView.swift */; }; + 57A05078F118CD43899660FA25149375 /* UILabel+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CFF71A147395732903140C250F76BB7 /* UILabel+DDCategory.m */; }; + 57B80CE67B76B0DFBD48E90021B939B5 /* Infallible+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42379670954CB9100261148A12A2A754 /* Infallible+Bind.swift */; }; + 57F7B5336A1A7C7C0255D92BD569122D /* DDMANaviManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B4579EEEE8A2EC43D53BC2BF8C1FF0F9 /* DDMANaviManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58236AA8C078BA049D0224B773054304 /* JXCategoryTitleVerticalZoomCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 37520C2DA05C5C77F4D1CFD5DC48D787 /* JXCategoryTitleVerticalZoomCell.m */; }; + 58FBC07F1AB57EE09E9E2283BAEC5C71 /* DDFileManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E3354648DF22C24E7ED0FAE554417FE /* DDFileManager.swift */; }; + 5939C34E4D2E9A26E09C2334A50D4D39 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 29FB5B40453AF7C6CC5769DC995B0EDD /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5943D1EA324ADEC89AA918C05AAF5FC2 /* ApplicationInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = A531AD70769E1396BB66543117414125 /* ApplicationInfo.swift */; }; + 594D1D762E97E1B91F0320C9CDC53E89 /* DDMALocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 727A6C8BEB00BD2EACEC9F18CC10B9A1 /* DDMALocationManager.m */; }; + 596CCE3F586D024E0D5015C072FFCD5E /* ConstraintLayoutGuide.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C2DA1167FE33CA58E41E634B332A355 /* ConstraintLayoutGuide.swift */; }; + 599A18B882F08DE626F2B4BC6FF8388C /* SwiftToast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99F16FAC67F968BECFBC0427D7ADC2D6 /* SwiftToast.swift */; }; + 59D42B6A518B9EA16194171DBE454F94 /* RxCocoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 9025425A4177AF0D67BC5F5796447746 /* RxCocoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A1795752182FD6DB7740642C58B598D /* Resource.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7C14800F2DA5E3340E31A7113A9D6C1 /* Resource.swift */; }; + 5A18E4F1E797987FD46675D6E1A9232E /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 99FBC6A3FF72C9C93EC26EB55681A3F7 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A1AD56EBADCE881F1C0007367E45623 /* Infallible+CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F5C75F27D5781CEE260ED6440510EA8 /* Infallible+CombineLatest+arity.swift */; }; + 5A7829CB0CB6A5E22E3193BE0A9E2F10 /* CombineLatest.swift in Sources */ = {isa = PBXBuildFile; fileRef = F380C5D34907A0E2146FBEDD873DE75D /* CombineLatest.swift */; }; + 5B61B135DCE322C883A69872A356F596 /* DDBaseNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = B65734589527F52728F0446B9494C731 /* DDBaseNavigationController.m */; }; + 5B9B3869CE36800618F1D641E9B002F5 /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4EF6A538EA24604DE5D93A1D23854563 /* MJRefreshFooter.m */; }; + 5BB847676A6F2EC8B5A779AEBC5EEBD8 /* RxWKNavigationDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56D70808BD83201F066C36E48D2532A4 /* RxWKNavigationDelegateProxy.swift */; }; + 5BE1573FD25A25AF030B0BF733677457 /* Cell+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51F4A8D93FD6E62B4598B77314026CE8 /* Cell+ZLPhotoBrowser.swift */; }; + 5BEB2A988FCD05A226349FD9C4BC4619 /* JXCategoryView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 63841736A31C51A2258B117A611A3CAA /* JXCategoryView-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C8D180662E74F979FE9FA3DC5BEC582 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6796221B9F31EDE911E1B94FC451EBE /* ParameterEncoding.swift */; }; + 5CFCDC35057A3E9FD4B24DD4CBB161AE /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 614E7E4CA2E24BFAC369071F8431B717 /* UIImageView+WebCache.m */; }; + 5D3023A3FDDAEC5C7D316E3C88815548 /* RxTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0E88E1804BD36C799E5D7F8E7468B13 /* RxTarget.swift */; }; + 5D31FB31689E3394BDE2B17F603C4BE3 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C93DF9F137469B6087FF40ED2C39675 /* Error.swift */; }; + 5DA9D5D4FE27BA93CE470741D4A1D202 /* IQKeyboardManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 872A76A47CBF6D3B5F2613C8A2B20DB3 /* IQKeyboardManager.swift */; }; + 5DC4E3C2A738F07C2943D5C49C79BDA4 /* EKImageNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7E7F3416FA7B80F5E7E36934461C2DD /* EKImageNoteMessageView.swift */; }; + 5E228FEF4C8DAD374328D4560B129417 /* DDDateKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 35E8155188ECCFFCEBCE7AC43E612947 /* DDDateKit_Private-dummy.m */; }; + 5EC8454BAC9ADF00204DAF05E979AD23 /* SingleAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = D26F5BBECDC3294562AD41764B614AB6 /* SingleAsync.swift */; }; + 5EFB9B488300A7396D40C60E2ABB5CEB /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = C2F1D29858616113ACA6B53DAB94F499 /* SDWebImageOptionsProcessor.m */; }; + 5F178DC2C4D71599481251FAC75742E2 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D649A72A0FBB2BF64F58C6991FD1E4 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F41ADDEE1A3170476DADD035BFF8DAB /* ZFReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DEC6A7481BCE4C6F897933E7486DFCE6 /* ZFReachabilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F65CBF2CD17EB2B62728C688CBBEFDC /* UIScrollView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = DDE5A213E9E9BA7FD1BD441D0A1B69C6 /* UIScrollView+DDCategory.m */; }; + 5F73068079D791AB651DA5F0563C5EB9 /* IQBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44A0675187A0F57C3A2ECD0D4EBA682D /* IQBarButtonItem.swift */; }; + 5FE99EEDAD6DC2CB5DEDC85ABC4D7A54 /* Producer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 935A60179E482420807581C62CECC8B5 /* Producer.swift */; }; + 5FEB0A58659C60C0B299319EEB72E290 /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 9990A28564C2A1179E3ABD2D3D1AFC08 /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 602CC4A58ED9B538AFD8A04290F44C75 /* BRPickerView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 386871F6B44C76133AF3313A373A10F4 /* BRPickerView-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 608E5CD7CA96A3E486C33D9F312FC900 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FE6E76773837601F72CB86EA43A6D61 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60E168ADD79EEDE207D885639ADB1592 /* GraphicsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5E4EF4863936FF08D25C19F8C4247BE /* GraphicsContext.swift */; }; + 60EF2DF520F1164BB293FB035B4F965E /* UIView+Responder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AD0733D9FE75FC636F2208A06CEDD0A /* UIView+Responder.swift */; }; + 610539226754D7463554FEED862C6AEA /* ConstraintMakerFinalizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB14354CA0CB3F670EF99A2295D90BC3 /* ConstraintMakerFinalizable.swift */; }; + 61B5D7DACF71FABBA2A23BC96030639D /* DDPersistenceKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E82C182B3D851259E53CBC4E304D5314 /* DDPersistenceKit_Private-dummy.m */; }; + 6201040F493CAACC4B92F17AF09748CE /* SubscriptionDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 498408C41F764921B2B91F75343B37C0 /* SubscriptionDisposable.swift */; }; + 6210A5E8C94D9610DD9326F3F053E236 /* EKTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB7878FE8862F9BAF1CDFDEA492CFFB0 /* EKTextField.swift */; }; + 62643C2B0784DD59DA7827A6E98164E4 /* RxTextViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F17AA20CDC09FD8FBC3B61C56938FD3 /* RxTextViewDelegateProxy.swift */; }; + 62645F034EC4123B63B4EF816CA13844 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 2ADBB69FF1BE40BBFAA006BD803A3F2F /* SDWebImageIndicator.m */; }; + 62A7047E408CD75F56E689ACB33AF45D /* ImageDataProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13A5925CA69C7E17C422B691E2D692A6 /* ImageDataProcessor.swift */; }; + 62E03A7C90AC5E5B1D0112A6CC78F131 /* NSBundle+BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = D42473A68DA9A31A03103D6868ED2EB7 /* NSBundle+BRPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 630DB6CBB672E5EE2F1061A2845BC1CF /* Reactive.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5496498F906246971438B7605E35C37 /* Reactive.swift */; }; + 638AD6074B37A0C82745B41ABB520CEF /* DDMANaviManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8134BB2AA5305F578302AA8091E2FA82 /* DDMANaviManager.m */; }; + 639859131F5B6B971A6D5F13570E2E5D /* EKAttributes+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0450DC13CC441C0967176B8071579F56 /* EKAttributes+Position.swift */; }; + 63A77C21EFD53EA8A7E3B79ABF59E2F7 /* DDBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 813B31DDD073B067BC6D0DC097A0072C /* DDBaseView.m */; }; + 63FFF49598498CF8C2ED679A60632466 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51946AC57D296D98D6432284558DEB32 /* Request.swift */; }; + 6405B88F00699FB27D556521FA391E9B /* ZLThumbnailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F3E69CB942B27EDDF39B17D0250CD8E /* ZLThumbnailViewController.swift */; }; + 64B5F86CD158D3ACED10047935E65E7F /* KFImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9509045BB173ED128A8FD4BEA2C1169 /* KFImage.swift */; }; + 64C3041F08A2B870F8EE53C9DCF2A5AE /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 4196E0258D2495B44EB2C947F1F40EFB /* UIButton+WebCache.m */; }; + 64E217B3FE62EEA10B5EB992A7B2435D /* UIActivityIndicatorView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = D04829CC1B4D29D3E71931EB1F362EA6 /* UIActivityIndicatorView+Rx.swift */; }; + 64E2AFB7C52B6E7A9DDC5D04F0F8B853 /* UIWindow+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E637AD0363C979CEAEC2DDEDD522239 /* UIWindow+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6526EAD8B470F52119D2C453861C687D /* DDBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = FBD2A9F38E80A5B854035F6E481BA91C /* DDBaseViewController.m */; }; + 65393DFEDA642FBE76283D75C070E00B /* ColorUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2387FD481EB9A586057BBA4A9B5CD802 /* ColorUtil.swift */; }; + 659075391B642E87AA542B9F3EC30173 /* SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5CE3C7E1B5625A398DBB84016A72F64 /* SharedSequence.swift */; }; + 65FBF2652959C0C03F5BEB1A97949DCF /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00268894DDF3544121282102C01F415E /* Protected.swift */; }; + 6619B00BA8ACF7B427FE4270402A554D /* TakeLast.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA0A6C7B87A91E79A318418AE7E08F59 /* TakeLast.swift */; }; + 662D8B722CE76FE956E05768FD3ED3B0 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E491F032B37C7D205E0EE1094D35416 /* MJRefreshComponent.m */; }; + 663201DCD5FFBC4237089666A0ACC960 /* ReplaySubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AD83821B8BE69287642F1191B5C530F /* ReplaySubject.swift */; }; + 665C707285723F3A68DEDF48EB6117F7 /* DDBaseTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 07328B577DB8D183B9FE834B1E4D5F8B /* DDBaseTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 669426523C46BED22DB96FFC90045F60 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = FAAA4A6D4A5E73151C7CE5B52BA51F89 /* SDAnimatedImage.m */; }; + 669E3656A503EDF2977801C770778AAE /* UILabel+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 571449703C21E04DB0D3FE2092018A67 /* UILabel+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66A4D5DEBBA734D31FC0052BC438A63C /* EKAttributes+Animation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AAECDCE5C859A0FE0383D1EB2F5E8FA /* EKAttributes+Animation.swift */; }; + 66A90DE49D5D62A6B8B93B1BEB6BB0E6 /* JXCategoryImageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 358CE46A9949752CF428266851F93D2E /* JXCategoryImageCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66B21E8DA37615C63FB428F32B031DF4 /* RxMutableBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = A88FDEC296D66AC6FD5CE6DEC2002FCA /* RxMutableBox.swift */; }; + 67361CCD8BA6B13F5AFA500684267561 /* JXCategoryViewAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 62E5306970D9BA46CCECD33499D37743 /* JXCategoryViewAnimator.m */; }; + 67613012FC19662F5A1A452C9DFD7AF3 /* EventMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3D3D87C73EAE5BB6974D14F6EAF73BA /* EventMonitor.swift */; }; + 677C7ECF16B4E56A0BD0627B02BB4DEB /* Zip+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = D833F99829076C9F074DCD0531EFEAA8 /* Zip+Collection.swift */; }; + 678E3ECA55B06B72144E0F1FCB7792D7 /* IQKeyboardManager+UITextFieldViewNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05C288F5773FAA8DC4E25B88D7FB406C /* IQKeyboardManager+UITextFieldViewNotification.swift */; }; + 67BB989B3A4B3A8549F47944FC68A794 /* VirtualTimeScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A1ACA8A0153DF4092625A188EED2169 /* VirtualTimeScheduler.swift */; }; + 67F2E90F42B5116F653D1FCC9C2E9D4A /* PHAsset+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52FE898F6EA0967E01F113178A8098FE /* PHAsset+ZLPhotoBrowser.swift */; }; + 6819E936EDDC5F64E03965DDA16F6EA2 /* ZLProgressHUD.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0A373D8F84212DF591CBBA85E8E4EF7 /* ZLProgressHUD.swift */; }; + 685297AE4AE28A8EA07BECA639E313E9 /* DDView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9ECEDC5B8D579BEB835DFDEB9046C52 /* DDView.swift */; }; + 688B5DFB7B535B410BF0EC51F1F095F8 /* ShareReplayScope.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F81CC6D2F90366A5CEFD1D0CA455A37 /* ShareReplayScope.swift */; }; + 68B4FCC1E1A2735532B81982ECC9BE5B /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 167F100B148EB72ED6464CA9FDA1DB82 /* SessionDelegate.swift */; }; + 68C20F65E3110735F394C2D1E0E60AC5 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AF10A8C2B0D16227BD534F00A18EB04 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68E3BB3C139447BA9A82E53CF485909F /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D0551D44470D5A9C9044C6A992F8CB74 /* SDImageCachesManagerOperation.m */; }; + 69628B06AF6EDF37ABECD410CCFF53D7 /* SwiftEntryKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77B18F43846B0B8371F816E96FDD2B7C /* SwiftEntryKit.swift */; }; + 698D4BC94388BEEF0696C5F30A549DAB /* RTLManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 422A37EF2714EFE0B89DFEB631341555 /* RTLManager.m */; }; + 69C303549B8C8DC6586AC4D570FAD12C /* DDBaseImage.m in Sources */ = {isa = PBXBuildFile; fileRef = AD83B4509F3F1CD3C9E05C7C52414CE7 /* DDBaseImage.m */; }; + 69EC7466EB3C133CE0D82257EF336100 /* ServerTrustEvaluation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8255B663C7C175AF3CD61B93F9EFA011 /* ServerTrustEvaluation.swift */; }; + 6A6F48CBEC40D32D1FED610A00C2CB8F /* ZFPresentTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 62E17D58423F4FEF758BF860FAD8BB59 /* ZFPresentTransition.m */; }; + 6B243EEB7444D034A045EB712ECBF436 /* DriveRouteCustomAnnotationView.m in Sources */ = {isa = PBXBuildFile; fileRef = E47445009D064B225F8156AF7F347247 /* DriveRouteCustomAnnotationView.m */; }; + 6B354D42839B601C9DEFD984415411EF /* DDControlsKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EF022014DE530474C24326BAC5A6DB79 /* DDControlsKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B553F2B3704D9BD7FF7FCE04E403CC1 /* UIFont+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42583EE86A5BB9F9DC1D5D9AD849DDA3 /* UIFont+ZLPhotoBrowser.swift */; }; + 6B66FA28308AAD03CF48491A2156DBDE /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = F39C7DC5C8AEA909746794BE8A37DCF9 /* SDImageHEICCoder.m */; }; + 6BCEC0DE81E072E922CE82BF2C10D0D1 /* BRDatePickerView+BR.m in Sources */ = {isa = PBXBuildFile; fileRef = C81D53F63D09D4F31DA50B009D962D36 /* BRDatePickerView+BR.m */; }; + 6BD973EF2D9AEAAA897F19ABE6ADB442 /* ZFLandscapeWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = B32CB0D13462C2F2BD813A40A7C428EC /* ZFLandscapeWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C3B575651FF6BCDC6907608E2F89583 /* ZFLandScapeControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F0307915E8259B875EB53FE81A29EFC /* ZFLandScapeControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C850BF5602E027A876A27784A160519 /* EKRatingSymbolsContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1E4C81D90898DB5A4EA9B85F71A6964 /* EKRatingSymbolsContainerView.swift */; }; + 6CA97610990405B8D1988BC090CA70F5 /* Maybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE9F7B227F17F41307D3E31581F1072D /* Maybe.swift */; }; + 6CBB8A0459051E23B564D2D128E4B219 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 910C3C2B34CD96383D0909CCA35275A2 /* UIImage+GIF.m */; }; + 6CCDD8BBD40821514AC48F42628D4D7A /* JXCategoryTitleCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 7072C7432E86A6452CD15FDAC38EF5F2 /* JXCategoryTitleCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CEA6FC42B1EBFB8EB263DDD2295BA1B /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C5C5DF271E13762140E478E0B86A60E /* SDAnimatedImageView+WebCache.m */; }; + 6D04BB428ED55D57D68354552C043A49 /* JXCategoryViewDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ECFDDFEC4A2EF306AB134A328B8FFA3 /* JXCategoryViewDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D07EC8FE99599CE4E2D00E31BA91704 /* ConstraintPriority.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3423FA0A90F7A80595AC06FDB905ACA /* ConstraintPriority.swift */; }; + 6D1295F002B144E1731C38BEDF62855E /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A5283D5CDCF7F930F4EBD8F066BDA4D /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D8A1EAC97E1ABC816801F06E11AEF2A /* EKFormMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0534B13FCA2DFF43E09894EA05A05799 /* EKFormMessageView.swift */; }; + 6D9162F60E7975B61948B1E253941FB8 /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C74DE09F8408F94BA65FAA86FA7784A /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DBCD383C164E5ACF1DAD34C9E2FCE34 /* DDMATrackManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B73D0E3E5524D99DD115DB1865363FEA /* DDMATrackManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DF8E7C3E612645CB0F3523DAC8E1F33 /* DDBaseTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = A267D8D0FA052374EA48C1A73BAA325D /* DDBaseTabBarController.m */; }; + 6E79B8E1DBB132B9953B5F37A743CB43 /* JXCategoryIndicatorComponentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AB55D8C3A814E1459CBDF302E4F2D56 /* JXCategoryIndicatorComponentView.m */; }; + 6EE3CE5E6C7683F30D2D59D0ADAC6FDA /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D9996BD70338BDB9BF8703FAFFDBA70 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F1697BC66902A6089A108DFE1E31B00 /* DDTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D8C7DB024F10C1415AC8F55084A1F94 /* DDTableViewCell.swift */; }; + 6F1EC7D7C6057783745CD6C5C41EE5EF /* ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9B717FA80B8357845D70F278EE7C0E2 /* ZLPhotoBrowser.swift */; }; + 6F46408B20EA653BE535660788D44444 /* ZFLandscapeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E26C473C6BA89A685CE546EA10377C64 /* ZFLandscapeViewController.m */; }; + 6F6324778DAEAC9A6B9C1E5EFEBBA492 /* Signal+Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03AD58EE70814C745F8D212420ECA322 /* Signal+Subscription.swift */; }; + 6FA29C0A343CD009CAD5FBB50810D9D4 /* DDBaseTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 164CCF231070D9275F9846118DED7BF7 /* DDBaseTableViewCell.m */; }; + 6FCCBD397D9B887B427DD63D118DE589 /* DDMAMapKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 209A87D1B9BC2D6301BB2F2E7E07F885 /* DDMAMapKit_Private-dummy.m */; }; + 701681C35B325B45CD0E46CF0D5471F1 /* ZFKVOController.h in Headers */ = {isa = PBXBuildFile; fileRef = 83E6FA2568CBB703B0B60597E97F83B2 /* ZFKVOController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 701F943238020231726C391F87955533 /* CompositeDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7DB509EC577AF23023320DFBABB4DAA /* CompositeDisposable.swift */; }; + 7036E2938D8D94A307669AF551A5EC4D /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B7C4C7E7DFC21015CF8FC51298CC504 /* LayoutConstraint.swift */; }; + 708122038CA6D6697142EB3BD7A03014 /* DDBaseMutableAttributedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BC0D31C149E12F94631266A6C7FB16A /* DDBaseMutableAttributedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 709711B731CC35DA65084FE1C1A2F73C /* X509Certificate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E744216409B50DFF7310309A1789635 /* X509Certificate.swift */; }; + 70AC10609FB1A12D49AAF643F6DB6799 /* UISwitch+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C648F392A023CF7B9989C59E61DFB63 /* UISwitch+Rx.swift */; }; + 70AED23C9E4B7C54A57E04BB493B1632 /* DDColorKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E0AF86A226EE7B78FAF8A1A18C44F469 /* DDColorKit_Private-dummy.m */; }; + 70B86F1462DC649BB3358548B0597F0E /* BehaviorSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = B19F4E5342F19A3EDF819802D9F91F20 /* BehaviorSubject.swift */; }; + 70CB725EC2D3E4977E8C55CE9EAC4D0A /* ZFPlayerGestureControl.h in Headers */ = {isa = PBXBuildFile; fileRef = CC8E283F6E8225E91F6D44784460A8D5 /* ZFPlayerGestureControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 714B1CA2AD44049A52267BE368CD4C8E /* SwiftEntryKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BF835AF874C679A92945FD3680D97C6B /* SwiftEntryKit-dummy.m */; }; + 71BACD458EFE7CF21260654449513C75 /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B7E5D768C8222B510991A3930088747 /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71E369AC039524E2F13AC548B3B043EA /* DDColorKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BCEE8BAC139BD80F60365DAF802BF8AE /* DDColorKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 721A97ACFEC77E36D1023E41BB0AE1AC /* EKAttributes+BackgroundStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 479046BDB4B00800DA381713E13A2948 /* EKAttributes+BackgroundStyle.swift */; }; + 72B0A8793C1F38AA19A0CD865BEE8BE7 /* EKAttributes+Validations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 47E7F4EE2C1E5E63D67E05EACE0D7D7C /* EKAttributes+Validations.swift */; }; + 731BC8F0B05F16D9E44C9EA00B22F4C9 /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54DD010BACCB4EAA5A734F2D10E9497B /* Session.swift */; }; + 73A9E4170A91F0F715E9E7C1F069FA45 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = A006594DBE451C7B706148C14E740C98 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73E288FCEA27F5DEB683B074F96D0846 /* SharedSequence+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = A98545823367190E0273717AF190E554 /* SharedSequence+Concurrency.swift */; }; + 73FFFD550E5D834616601E46F7468513 /* RxSearchBarDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4350C29094821EFDC1B06A3C11183F2 /* RxSearchBarDelegateProxy.swift */; }; + 7409FFC5269708E4F4606C21C9DF1B97 /* DDNetworkingOfAlamofireKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BAF558CDB1ACF2F42CDD6F6141D187C /* DDNetworkingOfAlamofireKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 742661F9A04B9C63BAD4B4E018021289 /* ConstraintAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A32E70CB124358D5CECEE227AC887B2 /* ConstraintAttributes.swift */; }; + 745D1703E1D29FD12340402A7F6B71D5 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7161FD57350902AECABFE98E777A0DF2 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75168B2406BA2AB7869B34D28C0ECB92 /* ConstraintInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0B7922BC30B7BF1ED70AE760EAE9B8F /* ConstraintInsetTarget.swift */; }; + 7539BFBC46E1BB8AE022CB250A405582 /* HTTPHeaders.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AD0BE79D933DFDEB5DFAD79244E3BA8 /* HTTPHeaders.swift */; }; + 757DAD9E812317B7B8FECFBD78953286 /* DDOCLog.h in Headers */ = {isa = PBXBuildFile; fileRef = B4C0E6869F4D7E37A614613CCA52203C /* DDOCLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7596C15534EA276570E026C42865F21B /* Repeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5367AB4D26D6B38E8AF4332BE5E5CE53 /* Repeat.swift */; }; + 75C045B811885FBDF3FCB78F77326FDF /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E8A684D5AC3AC69C9F81671547F8CAA /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7615AD04C15B5C1E8A259A80825D68FC /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 03401D6508115645BE1A11726E428603 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76A190B0F869A4BA61AFA27C1EB92F4B /* ZFOrientationObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 967CBA8BA665837EDE92543AB065E2E6 /* ZFOrientationObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76BCD01DEA5DFB76E7975B68591D4235 /* _RX.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EE7B33AFFF74BF666E6DCF8AD495093 /* _RX.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76FFD8BBEBFDA70717385A5C74DFDEA1 /* DDUtilsSwiftKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EC0AE154353695419564ABE9F48F459 /* DDUtilsSwiftKit_Private-dummy.m */; }; + 771B2932D63A96D96847343681689231 /* ImageDownloaderDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB192712A70143FF7483B04CD367F714 /* ImageDownloaderDelegate.swift */; }; + 77487F48DDC6D1D2BE91E2DF751D15FB /* First.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF697E5581829F53A837CA4F94F1C2B3 /* First.swift */; }; + 774CFF5DF8BB0D8AF40C421AC4E7427C /* SwiftyRSA.h in Headers */ = {isa = PBXBuildFile; fileRef = CAE61E46CD80D963B04B6CED2CF096C6 /* SwiftyRSA.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77F07E9D4343A887985931120822C94B /* Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DEB92004F24D012A2DD2A749EA68696 /* Rx.swift */; }; + 780B82DCFDBD9C2D7E5C92DF80FF1630 /* JXCategoryFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 25EED2E2DDEE943C33233A0324F90CF1 /* JXCategoryFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7867E2730114828625D52A47C43CCD2B /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 8339572E701F72A6351C88A4011B9050 /* SDImageCache.m */; }; + 78F19D9EAA15F4779D096963F790CF62 /* JXCategoryTitleCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 334B064273CA052BCDF0EE09B6D1C80D /* JXCategoryTitleCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78F42347772C57AEB0CE35F118F14AD5 /* JXCategoryIndicatorTriangleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B813415E9861A54E39DD4588B9CCB48 /* JXCategoryIndicatorTriangleView.m */; }; + 791629CECDE0D6A5445563A3E0025ACF /* ZFPlayerMediaPlayback.h in Headers */ = {isa = PBXBuildFile; fileRef = E5730C59C24A6564E9896A7A187C1700 /* ZFPlayerMediaPlayback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7927E6770872983115C36150EAD11B8D /* MATraceReplayOverlayRender.h in Headers */ = {isa = PBXBuildFile; fileRef = 19B36D11F1778EE188D91A45B09616FF /* MATraceReplayOverlayRender.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 793F19320DBE5EBACB9D67FA411F720A /* ObservableConvertibleType+SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = B336A0BF037A407DE633D95F37D0E9E6 /* ObservableConvertibleType+SharedSequence.swift */; }; + 794C8686B1DFD5AA5216F9165ABD8EE3 /* JXCategoryListContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = B549F00312347D99FC55765EB6A96E8C /* JXCategoryListContainerView.m */; }; + 79B72E633EDCC372F9F267CF04736306 /* UITableView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E648E0BF82BC0F4613380C69E43346B /* UITableView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79D547FB7599B9D84A5F5697924BC58B /* JXCategoryTitleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 67EA46B2D4684A456D577D01ACE5C09F /* JXCategoryTitleView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79E4EE43F84963D70970355C209A5983 /* SynchronizedDisposeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07C7BB6A20C3D9D02A2634F44201E6DB /* SynchronizedDisposeType.swift */; }; + 79F7344C573425769AF35D858AD4A67E /* UICollectionViewLayout+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = D47153E7D24BB2FCD8C70411D09E2F43 /* UICollectionViewLayout+MJRefresh.m */; }; + 79FEB14451545115D73559F5BD0EA285 /* UIWindow+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = ABB63A522A7029CFC415E409AC947BC4 /* UIWindow+DDCategory.m */; }; + 7A852F0AF1F3E1693579BFB0EE3DFEAA /* IQUIView+IQKeyboardToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A88A3A058CCB1D9FC2588C790D4CE4D /* IQUIView+IQKeyboardToolbar.swift */; }; + 7AB8E1F03D7085D0F1CF9CA55F17E9FB /* DDNavigationControllerDelegateReceiver.m in Sources */ = {isa = PBXBuildFile; fileRef = E7057C8A31DD87EA63F4B205A5826082 /* DDNavigationControllerDelegateReceiver.m */; }; + 7ABFC8DDB94ABE4C0687BC981E98A2BE /* ZLPhotoPreviewSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = D23D1B55CFA9E601EEAE694FC4999DBB /* ZLPhotoPreviewSheet.swift */; }; + 7AC755AF8DE9EFC8CDD4BD299FDC3EC7 /* AddRef.swift in Sources */ = {isa = PBXBuildFile; fileRef = 953CF3FF2D694E7D51C8340D7A4AA9E6 /* AddRef.swift */; }; + 7B0B8A575C497874E971408584743E02 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 96C749560C78C4DCA700A3EC0CCA6ABA /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B3B665575D99882A976F78F8D4E6430 /* AnonymousDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92A1D0D97078E98FB87C120217562479 /* AnonymousDisposable.swift */; }; + 7B45550C7795D7B29E6E558F00864D1E /* UIImage+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9383B6931E6379E29C9E8D1371AACCC0 /* UIImage+ZLPhotoBrowser.swift */; }; + 7B7C2392853D6829366CC3AC2412E53F /* CALayer+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = B0FBB8CED66D2D0C449A59D458746A67 /* CALayer+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C4555B4F80F91CE5F03F39C2D64D86D /* IQKeyboardManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90B66BB5F4AA694B89A8CD59D21A1D5E /* IQKeyboardManager+Debug.swift */; }; + 7C48DC05AF673CA09DF8F9FA506E4B11 /* Event.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BD5EAC0031F82E3E2E469DF874AF715 /* Event.swift */; }; + 7CC298CB85BBB9C814F22B8AAEF94281 /* IQPreviousNextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A789DB64B15EBE6C180F3F4A0CB33C14 /* IQPreviousNextView.swift */; }; + 7CDD4BF0209AA2F717C7546D5B6BF979 /* ZFPersentInteractiveTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 22D0C1EF358F431DAAC79A38578A86A8 /* ZFPersentInteractiveTransition.m */; }; + 7D23A05408E0E17BB56E5909C983386D /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 910515F363886336E686FB0B7BB42736 /* Notifications.swift */; }; + 7D24A66029F0BE461DF4D6BD574197FF /* ImageView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46C4377164C043750C96E798F75BA55A /* ImageView+Kingfisher.swift */; }; + 7D5AC16F195967267DAD36F198E0A5F0 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 097D55AD7298F8DA7BD811924DF2FA7F /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DF26FE5A9AF886EEA362BD9C81678E7 /* SwiftyRSAError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62DD99758FFD1CCEA924F29C6D9961B7 /* SwiftyRSAError.swift */; }; + 7E085C11AD19536AA42889432EDE77DC /* RefCountDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 940B2DE0CE005687375D4B5CF4576335 /* RefCountDisposable.swift */; }; + 7E77F7A02B348F2B136DC0548A0AADB1 /* RxPickerViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0F237E167C347BB69215017CFE30122 /* RxPickerViewDataSourceProxy.swift */; }; + 7E89E3B38E4ACBC2954D330AB4FF0293 /* ZLClipImageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD3F752558AFD746CCE24A9B29DCD333 /* ZLClipImageViewController.swift */; }; + 7E9CB89FA3B14991D8C31254F7594BAF /* JXCategoryIndicatorComponentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7855D749526C841286E983EA3CAC88BB /* JXCategoryIndicatorComponentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EB5AC1F7D0363C1A1A731BF22FF24C8 /* Sink.swift in Sources */ = {isa = PBXBuildFile; fileRef = C31BD0A86D6F1766685BA2FF1AD9144E /* Sink.swift */; }; + 7EE68BCC3A6E653EB103D0E9FE7010B0 /* Take.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73C066DE0E3EF2B198218157AC11EF02 /* Take.swift */; }; + 7EEA9941057BD1DB88F9096AEA9A6998 /* BehaviorRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 314B021694CE8545DE6A4314F037B601 /* BehaviorRelay.swift */; }; + 7F39A7BE23BFE49E5E14F42CCD472C6B /* DDCategoryKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D20B70C52D072A0C0033C7B7F8687C4D /* DDCategoryKit_Private-dummy.m */; }; + 7F646201C11F75FEB2701844D49DF702 /* JXCategoryCollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = BB2B3A2B43DD92BB22A545662ECF1246 /* JXCategoryCollectionView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F9C36B013D01F2188457E0D3A7AEF07 /* ZFLandscapeViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D46B6F8561141FF2830A973B19A3552 /* ZFLandscapeViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FC3E6E72D14EA33FAE2275C556372AB /* UIButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3679818231CE0E9FCBA514CCAC0D3F1 /* UIButton+Kingfisher.swift */; }; + 7FD541C37F57A49DA86354FB0AC6CB72 /* HTTPMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32160D9FB5932DE0FC0B26B94BABF671 /* HTTPMethod.swift */; }; + 7FF4BB1718C550C6AAAF11D840EC96B5 /* Disposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1BD4BCBFF2205C91FBE2FBF1E963ACA /* Disposable.swift */; }; + 80474D488D0DE9EEB589E4B5F9EE1256 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE78ED761D06FDE3C6A57D02D09D5A7C /* DispatchQueue+Extensions.swift */; }; + 80707A9E832C8EEAC361896B59A1DE19 /* IQUIViewController+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54A6F2F469E7F9BE9ADF804BCAEACDFD /* IQUIViewController+Additions.swift */; }; + 809174478F55FCD93B0706148F6D9B72 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BFC3A1322AF5748E37FF4BC1B8AAF33 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80A0B2E794F9DAFA3D2934CC99B0DCE7 /* RxRelay-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 81A5E3DEB4B9DE59D53FE036690BD6DD /* RxRelay-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80BC7581EDC7EF248D8E56A3AB986B53 /* RxTabBarDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDDF3BEE0A9AA78EFB976893E987A6FB /* RxTabBarDelegateProxy.swift */; }; + 80DD9B967623276F26A2E2980692D68E /* Delegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 616DD5AB4C4A809B51FA7EA1C93D5C1A /* Delegate.swift */; }; + 810B91B4F57601D84CB870880153A0E8 /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37D03742B7BCEF1AF4020C53BB2CEEBC /* ImageCache.swift */; }; + 813567124B996AD29CCAF98621B4D917 /* DDUtilsSwiftKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 908CFBC3F536D248F9C1F62F8C021EFC /* DDUtilsSwiftKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81452427ADF1E98E642A1233E6B650B0 /* UIScrollView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 456D85333EC2AF51BDB8ED4656976324 /* UIScrollView+Rx.swift */; }; + 81495AC63688C3355033D5BA9CCFC035 /* BRAddressModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 25A2DEB47C7C6C38DE3079489E65FFF3 /* BRAddressModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 814AA2BB51B51E467391D717BF24FAE5 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = C5A4AABC29A6330BDFCFA1AFAE3B5213 /* SDWebImageDownloaderRequestModifier.m */; }; + 816CE99FF8B0C05942493FA2D71C8518 /* ImageBinder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2821BA426AC4839F9D0D22A12836DFFB /* ImageBinder.swift */; }; + 81A3D9DB1BECA7DD9A94142824783DD8 /* ZLFetchImageOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = E144C120ACC7EAE402C3CC12068D9163 /* ZLFetchImageOperation.swift */; }; + 81A91B14EF1656BD6A519E36B95D87F7 /* KingfisherManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4B239218EC15B23D1256268605F2D5A /* KingfisherManager.swift */; }; + 81D96C0A07EFBEB8ED7329244B654517 /* ConstraintLayoutSupportDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4041940F5DF4EA21CAA442DCF7056FE9 /* ConstraintLayoutSupportDSL.swift */; }; + 82300175606EA43BE4BF57888C4A77E8 /* BRDatePickerView+BR.h in Headers */ = {isa = PBXBuildFile; fileRef = 483B487265D43F02EC9913E734AFD0A4 /* BRDatePickerView+BR.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8292CAFAFCD95ABA15502DBEEDA00FB6 /* SynchronizedOnType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 968B75F61B67C9F78C8926BFB0A3041F /* SynchronizedOnType.swift */; }; + 829916CBF36C96338AFA8CA4157AAE06 /* ConstraintMakerRelatable+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C85ACE659AB892043964E240817ABE84 /* ConstraintMakerRelatable+Extensions.swift */; }; + 82F6C49CD5442529B117D4B77ECD8518 /* EKStyleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4D84F8311FDF74C4D6BA30E1E7CC7D3 /* EKStyleView.swift */; }; + 835173C7877CC2512FC25FC6EBBA0350 /* RxCollectionViewDataSourcePrefetchingProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3965656818EAD818DC5956FFCB491E7 /* RxCollectionViewDataSourcePrefetchingProxy.swift */; }; + 83888A11B0701E2D4EE236DFA1E56800 /* Result+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C33922ADC5E11BDCCF18DC9A39627A5 /* Result+Alamofire.swift */; }; + 83938D5CBB19BD3E148DA8E030218776 /* MATraceReplayOverlay.m in Sources */ = {isa = PBXBuildFile; fileRef = B42B63F2DF1D596A58E39B88A4B30BB3 /* MATraceReplayOverlay.m */; }; + 83FB80448888FC123E9A45527EEC1C92 /* MABaseOverlay+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = E06781D7B5DE80C2713CA0D5AE9B60DF /* MABaseOverlay+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 841447C2E526E658EC8102873B77A9C9 /* DDTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32758B14C4EA1965F4718EEEA3DC0B5F /* DDTableView.swift */; }; + 8427D4E7C5F5C3A7213FD7F57B220308 /* ConstraintOffsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD9D667C94A007216D3FF3F2869CD15B /* ConstraintOffsetTarget.swift */; }; + 84CBB8B38762FD16B0BF7B4BA778228E /* EntryCachingHeuristic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8ACE6E4439DAE3D380303F1E0362B109 /* EntryCachingHeuristic.swift */; }; + 84DC0626D65FE608EACE77EE19BCF92F /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 26507EB4300CCB37EBAF50B26684BBF6 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 851EF2F45A695756076F421902781130 /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA5C696C22AB834D1BE5C85C00880A12 /* InfiniteSequence.swift */; }; + 8558B2DC90CFD864E52185AE14314220 /* KingfisherError.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8B40D5A6943D4F6EFDBA40C484F7B2C /* KingfisherError.swift */; }; + 8620470517C811FD4767A6DD0371D0D5 /* IQKeyboardManagerSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C14FEF48BB60E0598B42317C989B033 /* IQKeyboardManagerSwift-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8622DF1F350A8568DA4171CA22BA27A2 /* Infallible+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = C989A5E3A0C940065085747D06AF2C15 /* Infallible+Operators.swift */; }; + 865E103E2674039A8A079D14E7859F74 /* Observable+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDA997DA217CC6F8EF3B72BAF6720725 /* Observable+Bind.swift */; }; + 86997C2E83106153831376DF4CB88084 /* ZLWeakProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B5BABB42B4568585425BACE04C7435B /* ZLWeakProxy.swift */; }; + 86EFDCFB015C812E2695EA28F9F3B88F /* JXCategoryImageCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D133C2E25C41089F9392231ED2B0385 /* JXCategoryImageCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 876F0A0ED17438D064D6255B031ED91B /* UIViewController+ZFPlayerRotation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6358D58A5AE250044FABF5EBCE2E3229 /* UIViewController+ZFPlayerRotation.m */; }; + 8772F32DE15FC5E2426A36349DE9E7C8 /* JXCategoryTitleVerticalZoomCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = DF49A0B2DB663CA65EAF7EF8C4B01538 /* JXCategoryTitleVerticalZoomCellModel.m */; }; + 878B6B1A4C24B3D46773E79E0294CC89 /* PublishRelay+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = B92F5DE6EDC55DB5A29243A5B800516A /* PublishRelay+Signal.swift */; }; + 87E790F289BC43498505B6D68AD37C12 /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E4FC5C5B4343E8DE91CB31C605EDB8C /* UIColor+SDHexString.m */; }; + 87E876627F3BB158FD39966792B76B65 /* ZLVideoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79810608C2C763BDCF941946182D9294 /* ZLVideoManager.swift */; }; + 87E993683F982F032074BA4BE5AF188C /* Catch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 149E0EBE3D08C3F6A2CFB834CEBB8562 /* Catch.swift */; }; + 887595F20B78C5473EA5B93D699737A6 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BE4E3D63762739C388C505F63DB6277 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88E67755F51F1CA22343EAA1CFBD41E7 /* DDProgressHUD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E3AEBC7766316577BC25AD601AA4282 /* DDProgressHUD.swift */; }; + 88E8C4E6532C1885DE243488021CF2D2 /* AuthenticationInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74EA3689D1F00D98ABFDC927ECCCA19C /* AuthenticationInterceptor.swift */; }; + 8A3E8C9849B1E73D113589B8F007E566 /* JXCategoryTitleCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 35429E16EE003FB5FB9C52D02F481771 /* JXCategoryTitleCellModel.m */; }; + 8A5D7CFB78278C7861D3061D212B189D /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3215F98470867A2FCB4E605785C27CB5 /* SDWebImageCacheKeyFilter.m */; }; + 8A6158438F3B894DE7F91DE5FE93C795 /* Message.swift in Sources */ = {isa = PBXBuildFile; fileRef = A17948FB20E1570E9A887C4D29C8A7EC /* Message.swift */; }; + 8A63E7761E38FF2DE0840CE466E53222 /* DDBaseViewController.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6C6B6319757C56C6491867CB296B6C76 /* DDBaseViewController.xcassets */; }; + 8A64ED4C758DC20F9F638F956789182F /* UIView+QuickLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAC84E0E5BBDAD4F6BD6369E5E2C330A /* UIView+QuickLayout.swift */; }; + 8A93BFC4ECE061648BEDA3A17DF34B7D /* JXCategoryImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 10EE53D4E57EA2E1FA40BC7FADE3D694 /* JXCategoryImageCell.m */; }; + 8B1A402F74B6E4E6F42C395DDE64169C /* KVORepresentable+CoreGraphics.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC631F3699254A910FFE708DB2E5C67A /* KVORepresentable+CoreGraphics.swift */; }; + 8B3145567FD389F30FCBB34C08F60CB0 /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = 042B16BEFD36308DABC26C34A19823CC /* Platform.Linux.swift */; }; + 8B5C7472AB1189940F2C7A38AB4E5D57 /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E28C0FA483BF86F8FCA82CECB4608B17 /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B753F9A4427257D3732F4AE2E2EDCCD /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BB63ED86C11EC69FD582F92685E5689 /* SDWebImageDownloaderResponseModifier.m */; }; + 8BAB069322B651184A26AF000100C0C0 /* Completable+AndThen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6339D4A4812FEC1EAB770EB448D57E5A /* Completable+AndThen.swift */; }; 8BD123ABEF5D494CE8B192EE150B0E52 /* Pods-OrderScheduling-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 439EA354473F5B1B44C857E4C3A7D7D7 /* Pods-OrderScheduling-dummy.m */; }; - 8BD7243E27CAB2AE337CFA2AAC384640 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = FA661C9D61E242955EAA24C5E55475B1 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C0CC93974FE5308329A727AC1BB0073 /* GroupBy.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABE8238EE5B140517E77DC887ED83389 /* GroupBy.swift */; }; - 8C1123CFF840715FE9BD669C43D75E7D /* JXCategoryTitleVerticalZoomCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = FB48A633C15265654DAC3B807921794D /* JXCategoryTitleVerticalZoomCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C5AE031DA4F7E6C727B298D2CE5AAAC /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FF6B796D90DC664ED96E1E85CF04347 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C7FC675F85CD906964F33C106BD2F63 /* DDBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CFA5B339360BCD0CA271297E4748AC6 /* DDBaseView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CFB68D77E49914A0DD60B939BA767C0 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = E9283C71BE8EF6C41A438AB4079E1644 /* SDWebImageDownloaderDecryptor.m */; }; - 8D2C2E93E44DC32A322DC0F747FE8D7C /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 40CAABF70D0D6257D468B81F5748A553 /* MJRefreshAutoFooter.m */; }; - 8D42E6E44020386BF96406F0D3540D19 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 42A15DD2ACA65F9A5BE1A8067126DBBA /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D611286757FD4B06BFBFF1A7BAC8CA5 /* Indicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AC2B76D9D1AE189CBEF5336C1214F99 /* Indicator.swift */; }; - 8D67E1E9F0E2F132D6A0D8EFB3C36974 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D1E7C78D84C1DDF77BAF466F926B8B3E /* SDImageAssetManager.m */; }; - 8D7B5F3D2457D1F8E54BF758F6F0388F /* DDLogKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F3BE690DD541CEA0596F424B3DB5AA11 /* DDLogKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D9E90F44186EB6E5F232F94AE2B49A3 /* UIScrollView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = E18A24FC1DBD78A3CD2CF26C5443197F /* UIScrollView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E8303059E6569424FBD16600EEDCF21 /* NSMutableAttributedString+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E9EE5CD60A63114E41152F3B4402920 /* NSMutableAttributedString+DDCategory.m */; }; - 8EA243E4EAF07A43D187BB9E6023B5E4 /* Delay.swift in Sources */ = {isa = PBXBuildFile; fileRef = B599060CE2C52BF65174D29738625943 /* Delay.swift */; }; - 8EA71FCE62BCE72E1798AC86592F4747 /* JXCategoryDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 62226814162AA6EED062D8FA248950BF /* JXCategoryDotView.m */; }; - 8ED0EA8B64CA7C4860DC6D8B565F4448 /* RxCocoa.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4113C8ED94FBCD13D365DB0F00746A7F /* RxCocoa.swift */; }; - 8ED80DB15A7A80CBF9142B63CC4C00B9 /* Skip.swift in Sources */ = {isa = PBXBuildFile; fileRef = A10CD21A978B7213B50F82629974CBC7 /* Skip.swift */; }; - 8EF8D0C1BE201C03A65D66C92BAD9206 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 984BEBB41FE196C3D934CEA341A5D1D1 /* SDWebImageDownloaderOperation.m */; }; - 8F2F37F426CB2C3E4EEC25034ACC1388 /* UICollectionViewCell+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = F6D1B0AD2B5DA0E9E88BEAE91F9EF13D /* UICollectionViewCell+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F51FB8B7D5A75DAF2594983F118250D /* ConstraintView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFF5711C237875521FB7A31DB9785240 /* ConstraintView+Extensions.swift */; }; + 8BD7243E27CAB2AE337CFA2AAC384640 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F8FA6F87D4192760BED3F1DDCDF771F /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BF878796834ECEA997A949F8D4E1EAE /* DDBaseTabBarController.h in Headers */ = {isa = PBXBuildFile; fileRef = DBAEA48C4CC4D29FAD44A328E071566A /* DDBaseTabBarController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C1123CFF840715FE9BD669C43D75E7D /* JXCategoryTitleVerticalZoomCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = D0CE585EB3DAF6AC0DC448953A0D84C9 /* JXCategoryTitleVerticalZoomCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C5AE031DA4F7E6C727B298D2CE5AAAC /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 05B5BE576D8D1CAC569EE43EB76E62D7 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C69BE0B35D7CFB9B2C9B5E9331B9672 /* AVAssetImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D416C341897110C59EC03D7ED822F68 /* AVAssetImageDataProvider.swift */; }; + 8C7260956D1333BA9D5F6E7100EA783A /* ImageModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFB8875C560BB590860F8E9E253B6F82 /* ImageModifier.swift */; }; + 8CFB68D77E49914A0DD60B939BA767C0 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 33FDE16A5277EC7BA28DA5C74ECC367D /* SDWebImageDownloaderDecryptor.m */; }; + 8D1A939F9410607CA818E467C232E3C9 /* ImageContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5862FB48825755A261067D1B202C048 /* ImageContext.swift */; }; + 8D2C2E93E44DC32A322DC0F747FE8D7C /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 86B98D2202E51E7CCF9F64DCD8BFE7E6 /* MJRefreshAutoFooter.m */; }; + 8D42E6E44020386BF96406F0D3540D19 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = F976AC5EA889B0439B7DDAB2F6813A00 /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D67E1E9F0E2F132D6A0D8EFB3C36974 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C9FA719873C60C24D39842F2458992B3 /* SDImageAssetManager.m */; }; + 8D7B5F3D2457D1F8E54BF758F6F0388F /* DDLogKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 69258AC6907046152701DAD3AEBC9D62 /* DDLogKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D8B7A1AA742675DD13B659F2E7AA3A2 /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1615A11842BF97FF0AB14145E054EDB7 /* Map.swift */; }; + 8D91A4FAFA56CC0096F440A79E23C563 /* CurrentThreadScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = C17C898D9A47EE5A5C2A1354F9B9A906 /* CurrentThreadScheduler.swift */; }; + 8DB01ED2B3E2795549E0F5FC49B35D92 /* UISwitch+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 92AC33A1E1ECB9099CD946A8B7680767 /* UISwitch+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E32D023EEFF20C6BB931BB05B302DCC /* UIImageView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = FFD2DD6C44BEEFE07B7C888B111ADB65 /* UIImageView+DDCategory.m */; }; + 8E8270B517CF34A1ABF90B3CFCBFAB77 /* UIScrollView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = D712A94B0A589E674743E2F36DC32EE2 /* UIScrollView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8EA71FCE62BCE72E1798AC86592F4747 /* JXCategoryDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = ADF6D55219F1174F93F9403A7A28B827 /* JXCategoryDotView.m */; }; + 8ED0EA8B64CA7C4860DC6D8B565F4448 /* RxCocoa.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9276DB5CE2C8238F22D1D8D7114CDF6E /* RxCocoa.swift */; }; + 8EF8D0C1BE201C03A65D66C92BAD9206 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 674A9A6D363769623DB7EDEB7B082716 /* SDWebImageDownloaderOperation.m */; }; 8F7C09C252C91A4C49C70B874D9AD4EF /* Pods-OrderSchedulingNotificationService-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 861E3EABF816A1CA179B292C434C7624 /* Pods-OrderSchedulingNotificationService-dummy.m */; }; - 8F94DE7C574F2E68FB7F4182FF4AA19A /* JXCategoryTitleImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6ABD8E3DD900F702E6FC12C729380C11 /* JXCategoryTitleImageCellModel.m */; }; - 8FEB0C5A22AC36647CDEBDFD50EF4D1B /* Reactive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74C2FB48366D8FE74D6DA514ADF89EAF /* Reactive.swift */; }; - 9069546BCE91958C23E24D6279C5E7C0 /* JXCategoryIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = DF1F1BA51D352DA3324609CD1F94C48E /* JXCategoryIndicatorView.m */; }; - 90747EAF8374FFC67934EEAD2592FB29 /* ZFPersentInteractiveTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = E4F0E4655E139103A4394964C824F558 /* ZFPersentInteractiveTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 908AC7769C1017C0BB645138A46678EC /* DDBaseMutableAttributedString.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CAAF890EBDB17AC1859D4C32F409BB3 /* DDBaseMutableAttributedString.m */; }; - 90AE44530AF990D163D03B9A2563204A /* ObserverType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16E2C1798806CF3C978D11648C8B0C0B /* ObserverType.swift */; }; - 90C2306666CD2C08EF76F2012825951C /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 483FA3F9A454C8561105FA7D51B1FD02 /* MJRefreshBackGifFooter.m */; }; - 90C350B739A3E899B1B53E52B15430EE /* SDImageAWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 05894F3097B344E973E9BB65B70F9941 /* SDImageAWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91A36B31EC90DB60DC9584F00E5D5643 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = E07DFCD4DF16FD7A2487CB4D597BFAD7 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91B718E97E5B0E6C8E089096AC2DF4FD /* EKAttributes+DisplayMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 859B9DA928AEBE087766D1267554DDB0 /* EKAttributes+DisplayMode.swift */; }; - 91ED131F555A03F5905E86878BF38C69 /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DADC90B2BBC9C7A1F28B16F5D10B2AB7 /* MJRefresh-dummy.m */; }; - 923EE64F6CBFF20AD30002B633BC50BF /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BA9F4895D9C85F020B0DEE2FBC3C636B /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9247A714B110972A3ED560817C307E70 /* Infallible+CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80D8B88FBBCBC51A9822653DD718DE16 /* Infallible+CombineLatest+arity.swift */; }; - 92730B4EBB36A0845E64B0CCC0468C7B /* DDBaseTextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 9211CB328D8071AD8EE91F959D93E3BF /* DDBaseTextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 927A9E34C2E88E982888A5D2F8A9B127 /* BRPickerViewMacro.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7505690BF8923788AFD38D392D2462 /* BRPickerViewMacro.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92AC1557A3995D252D56F1623AA31165 /* ObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2128F15BA4C86E8ED3189D13DE1E8C27 /* ObservableType.swift */; }; - 9313F5863E61D51958D4954C876666DC /* DDControlsKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 852AAAD4B161A6E1FC5953FA74B53188 /* DDControlsKit_Private-dummy.m */; }; - 93207A865D205334FE48160E599E0FC7 /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = DB78D91CF9F57A502BA45B9F388E1FF9 /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93B94DFCA8AFD01BDBF649777F76F42F /* RecursiveScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D01EE13B02828DBBBDF6CE75703D077 /* RecursiveScheduler.swift */; }; - 93C25343A940D20BD21AE6C1EF582189 /* ZLThumbnailPhotoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2215CA305EB28F8BC752F56AC206D861 /* ZLThumbnailPhotoCell.swift */; }; - 93DF6D6B5E32104AFE985F15355F629A /* MJRefreshNormalTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 816833637B80A142377856F220C60072 /* MJRefreshNormalTrailer.m */; }; - 9413C7DB4B03B9C9178A64659F476AD0 /* IQKeyboardManagerSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0004EA356C9835AA546B3FC4EE6CEFEB /* IQKeyboardManagerSwift-dummy.m */; }; - 941A98BBA25324C6D0B2A1A5B4D48F6C /* UICollectionView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = F6269AED9249114A702BD7E9049593F8 /* UICollectionView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9497825ACEC7F42AFA494D810FDCD4EC /* ZFPlayerLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 96C64AAD044B46A920CAE6AA6E68CE02 /* ZFPlayerLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94B52F9D43DC46D45062BB39E53E9DE1 /* EKBackgroundView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D6F73E591DEFE4B35BC78F81117823D /* EKBackgroundView.swift */; }; - 9517AFD055FCAC61888F63B46B1012CB /* ZLCollectionViewFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1187BDB18A7BCD373D82B768A9D8811 /* ZLCollectionViewFlowLayout.swift */; }; - 95277350C6DD3C3641CFF98AE0A12B12 /* OperationQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2DE360277EB2A96E676EC9DE5ACB5BD2 /* OperationQueue+Alamofire.swift */; }; - 95AD0B08F159E5B4571FD8C7FCC3A78D /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = B44448047B2C467309AAAE75CE2BD4B4 /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96199F1BEE04A029B3278BB1BED5F276 /* IQNSArray+Sort.swift in Sources */ = {isa = PBXBuildFile; fileRef = D48D3A43723EE2AB26487BF291CB6054 /* IQNSArray+Sort.swift */; }; - 96351482FE93C85C20C75E992ACC4D3C /* RxCocoaObjCRuntimeError+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0621A1A82709D12B551256E0A8DCF213 /* RxCocoaObjCRuntimeError+Extensions.swift */; }; - 97352932EA7908FEA0DB6210F4692034 /* MKAnnotationView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 11BC256610DB359EA9B92C007DFBBC7E /* MKAnnotationView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 977F8070B2734739DD77174D591DC065 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 692A33B071C9EEAB823A6C3518B15057 /* SDImageAPNGCoder.m */; }; - 97ACD5F8ACFCD7B423375EB425F82287 /* JXCategoryIndicatorDotLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9774C45D2319A4161B9A9291E63750A3 /* JXCategoryIndicatorDotLineView.m */; }; - 97B4A15E0218313B8CE3CDB2D3CC73D2 /* DDNetworkingOfAlamofireKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B3A5FA72E662456696B4A1EA5856BC6 /* DDNetworkingOfAlamofireKit_Private-dummy.m */; }; - 9817388F04E487B7ECB5C08DDE606F86 /* MJRefreshConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 66FACC93905B18E27091928175728B80 /* MJRefreshConfig.m */; }; - 981F1BFE14D989096611F7DB1D782B97 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 49D155E8B49C0866D0D17C2782731D0C /* SDDeviceHelper.m */; }; - 98A6A3DB14D596B5D70C78B00B315BD4 /* DDBaseTableView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DEC0246C9CE3F03DAFAB667BC9038DC /* DDBaseTableView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98B5767E80EAD8302FD4E0A3A24D77E0 /* WKInterfaceImage+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAB9CC1539698C9F00995A0EB6E34BBB /* WKInterfaceImage+Kingfisher.swift */; }; - 98B94A5E5FE00A5BD3A6B833461D0A7E /* DDBaseTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 07FA13CEA097E4AAD46BA385250D6929 /* DDBaseTableView.m */; }; - 98F8D3DC8C9A32C1F95995CE6EF7D600 /* ConstraintConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AA1EADCBECF746A40161126D7FF6259 /* ConstraintConfig.swift */; }; - 9912583A0C3DCE5F8AC15A3FC34E6FE2 /* ControlProperty+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = A98A467CBA2AE60E30DBA048C3C04FDC /* ControlProperty+Driver.swift */; }; - 991A0DF902A0FEB5A27590776F2490CC /* KFImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = D678316C117EC91A4AC5159DE80A92F0 /* KFImage.swift */; }; - 994ABAEB49E609232F886E728E605586 /* Zip+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37B78C25010DAB73DB43D284B5A0CC04 /* Zip+Collection.swift */; }; - 99754E13BE80A3C28E0584AAD52EBE20 /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCF3BF8314160B0D0A97BA7AFD00B9E5 /* ImageCache.swift */; }; - 9996F8341E78E994720A57973B8F96B3 /* DisposeBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CAD3E3A21F8ADE24E4B8F7C2D348734 /* DisposeBase.swift */; }; - 999B33DC38983D04AD690B4599F3C316 /* ZLTextStickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE5C3DED1065C379F19BC07715696400 /* ZLTextStickerView.swift */; }; - 99D7BD631F5D4CC39B09885065481AE0 /* JXCategoryBaseCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B0292668A5955F282EED93CB6DED521 /* JXCategoryBaseCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A1DF88AB0E546AB51597714309B05C2 /* JXCategoryIndicatorBallView.m in Sources */ = {isa = PBXBuildFile; fileRef = 09BFB08AE8AE4E82BD025F7B802797BE /* JXCategoryIndicatorBallView.m */; }; - 9A41FC2ABBF645CC7F01120A6BDB0A24 /* UITextField+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58EB768D5C4E64483333DC60FD2DCA45 /* UITextField+Rx.swift */; }; - 9A45DABFD007EA3BA3383E45D6066BB4 /* ConstraintDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DA7D44F47D0AE92476114B4A6E3259A /* ConstraintDSL.swift */; }; - 9AB73C89DFBEAC934BD1632055F07EC9 /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = C53F82D0FD922169F23C0581E8431009 /* Platform.Darwin.swift */; }; - 9AE63A71DB55322FFBB6EF1D979282BE /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = A6FA46D87EEAB8EF53B66A7941BEAD12 /* UIView+WebCacheOperation.m */; }; - 9AF82E3FE6B0FCA2D289149812D57304 /* ZLPhotoBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FF6A0846BAF94C70B4F299449B47C645 /* ZLPhotoBrowser-dummy.m */; }; - 9BA823A93C1EECD228FBCE997B9BFFD0 /* KingfisherManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBBE521080A95E316C04B0F2E4939996 /* KingfisherManager.swift */; }; - 9BE899982FAEB47E89D2EE2FD9684CCA /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C6CD56560520874C485B6D286D6DF07B /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CF1888AF79CD22EB414BFE758E5D36A /* UITextView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6F8AE33F7159DCA3B9D151ECE2BECA7 /* UITextView+Rx.swift */; }; - 9CFBE2A3F8BFF4BBDB6DA37F9CE7C266 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = C1BF1F9F27903435E44899E32F04FD8A /* SDImageGIFCoder.m */; }; - 9D0A6F61D6C4E26858426A5C07D5702E /* Disposables.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38C5E69575397A824ACC20EEE48A7C48 /* Disposables.swift */; }; - 9D43333662E9A614D8F63052D7F1ABA7 /* UIApplication+EKAppearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0BEA9C6D6413A703B39402E3A52891A /* UIApplication+EKAppearance.swift */; }; - 9D4EAF940F2C46778D1682E8127F003A /* ZFFloatView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F96937CC3868B34FA491E26FB66A620 /* ZFFloatView.m */; }; - 9DA564EDBAF489D48F394032D133FC78 /* RxSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D72AF06664C2C1A387B4A2702072A8AF /* RxSwift-dummy.m */; }; - 9DAB2556D82974EE7905C156B4F3A07A /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = A181CFF6E84AA02D829ADF5F710FC1E5 /* MJRefreshAutoStateFooter.m */; }; - 9DC2A94B2891D5F2B37FF69F48347EA7 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 2422A0E8F83A9C488ECE5FAA44DD210A /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DD4D72D2E9711B66B6B471293D5D700 /* AtomicInt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 027E73ADA442942B942931E217508A38 /* AtomicInt.swift */; }; - 9DEFB591D6DEBAAAF949BE635617A7A6 /* MJRefreshNormalTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9416F011751EE2CCAAFDBAA6295A34DC /* MJRefreshNormalTrailer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DF38D10CE02A3D59E7B798D8A0B7153 /* String+MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C986179E83B509C37AFFC2840AADD5B /* String+MD5.swift */; }; - 9E13BAA5897DBE84C6842BE86EED1CFC /* EntryAppearanceDescriptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 781B7F0FA16637E1AC33A6D46469B943 /* EntryAppearanceDescriptor.swift */; }; - 9EA0E7C2A9D39A5D990E78AA978D757F /* CombineLatest+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 065D268617DD88D760B9AE0ABFEC338F /* CombineLatest+Collection.swift */; }; - 9EA55F404A7BE4684E3299402A5B88AE /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = C8E0BEE7BA06A00AFFDAF9DDAFC4BF82 /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EE55E6E57DFF49D9CEB2493AD5B93A9 /* SharedSequence+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2F54B572E0B69402185F8ADBFCAB9BD /* SharedSequence+Operators.swift */; }; - 9F26F0EB6575EEC06D48252EC38DDC46 /* EKXStatusBarMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 694F5DB4268D75FC1DBA4B4FE8E58961 /* EKXStatusBarMessageView.swift */; }; - 9F75DD325C460FFC7984DF4A9A42BC68 /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ECCA2E9F88E4020FF26BF65A46B73B7 /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F90CCC3FC0CF5D2BF452D59CDDF8A7B /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = ACCCF92CADFDAF26663086247966C12D /* SDGraphicsImageRenderer.m */; }; - 9FA55209BBEC5446B1699EFEAA8AE99C /* RxTableViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB624DFCA58354E87A6A4642564AE62B /* RxTableViewDataSourceProxy.swift */; }; - A011FE7F352E2DC4F52A72ACC985E865 /* ParameterEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 172DC173929CF37802A7EE6F1D8DB741 /* ParameterEncoder.swift */; }; - A0649D13B9C3CE011F3FEA618EA1724B /* JXCategoryIndicatorTriangleView.h in Headers */ = {isa = PBXBuildFile; fileRef = F6BA70E7A77F1435FA4EE77F92141727 /* JXCategoryIndicatorTriangleView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0657A64DEA57E5606A79DF5FFA0C0C9 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5760748A84008717B0404DF3E6E2C9C8 /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0CAC16C811D166585ADC16AF08A6EBA /* JXCategoryIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B562E39CE0F2547A1F5D9F9AE7121EA /* JXCategoryIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0DD98B789E374018F09A4220B4F5830 /* ConstraintMakerPrioritizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7592FB61E085EC16C9DB94249F455327 /* ConstraintMakerPrioritizable.swift */; }; - A0E59DE1E829AB6653A41F549DEA9F3C /* ESTabBarController-swift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DC38CD6E458446493D8DFD6140262228 /* ESTabBarController-swift-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0E82BA8624982E87F1A4858FD45F5D7 /* Producer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32C6983D879B23B0B91040F47B2AD467 /* Producer.swift */; }; - A1059E3A9E938EE8F540D5639AB4B4E5 /* EKPopUpMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 668B4A4AB1A2C83E682019C403BEA3EC /* EKPopUpMessageView.swift */; }; - A10D8C9880675721C02A9113626E65FB /* UIApplication+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C0CD23B7B066BEEB1E8B88E149CC35F /* UIApplication+DDCategory.m */; }; - A13B4CC2584A03BF7414FE90F04C487D /* EKNotificationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C6E0CE6E040E868C4B0B105196EE7D4 /* EKNotificationMessage.swift */; }; - A17B88101B55AE2259598D30E3CDA92E /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C47F9FA2DF062E010573C727B9870A7 /* SDAssociatedObject.m */; }; - A1DEF2A52B2F86D3464EA211CD8FD588 /* DDBaseButton.m in Sources */ = {isa = PBXBuildFile; fileRef = D9985D5699F85E989561E3CC0F9777F5 /* DDBaseButton.m */; }; - A21A3EDB30349656A7BF23004B6AF02B /* SwiftyRSA-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D59A3B53B13AAA33732833486B7E5780 /* SwiftyRSA-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A232C6F6CB1F5D59CAF0EA356AEA6E90 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABBFFD2D79C3133BB5D213184A66FBA1 /* Filter.swift */; }; - A29CAE715EFFA6F90408C3B8345A1883 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = AF624A6F53BE5819B763EB4B33530EB9 /* UIImageView+HighlightedWebCache.m */; }; - A2B52B66E0891E57CFA6C3750BF7DBC7 /* ObservableConvertibleType+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 757E44065C4EBA90A12EE25D4E988F36 /* ObservableConvertibleType+Driver.swift */; }; - A31BB6EDE653AD31B5F518CAAED7915E /* Timeout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28F61DE58C2CA5F8307902466CA8FADF /* Timeout.swift */; }; - A328DD14BD9500BC78D1C7120DBC30E4 /* IQKeyboardManagerConstantsInternal.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF28F0390B37BBAB00F838E656B095DA /* IQKeyboardManagerConstantsInternal.swift */; }; - A33FEE4E2465C24F12812BEB5FE68CA4 /* RxRelay-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 283576C304850D61EA0ED1A252988D7B /* RxRelay-dummy.m */; }; - A358C72687DDFF484CAB4B0124CE34A8 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 085EBB286BA30648750A2071DC11BEE0 /* SDWebImageCompat.m */; }; - A3F68F7FD050BA0038F03314E92B7CFE /* JXCategoryListContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 909F57C6E5AF478B7941E17B5F43D267 /* JXCategoryListContainerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A45846C269357C355CDEBF8B8EF896CD /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 78BD0489637CD9B81F0F2AC6EB09BFC6 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4AE06BE1B4C107F33C291F8B1B10E22 /* JXCategoryTitleVerticalZoomView.h in Headers */ = {isa = PBXBuildFile; fileRef = A17FB5545E866C560CE22CA9A33E96A9 /* JXCategoryTitleVerticalZoomView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A53E0D0EC57D01B1204E6B09FCDABF70 /* CALayer+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C1B0962ACB69DFB81C49FCBFAB49D70 /* CALayer+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A54741718F7A005AC6AC2FEA7EE692CD /* UINavigationController+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 821281B930B757E0894BE75AC6B5D686 /* UINavigationController+DDCategory.m */; }; - A576C4698BA14346E54EB6463022EAD9 /* JXCategoryIndicatorCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = B69057783FB74D8CBED25ABDDAF08602 /* JXCategoryIndicatorCellModel.m */; }; - A5DCA31A4D36F66FFA278B81D8BEF027 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E5AB2519815AD4698D10C7C91440EB1 /* UIImage+MultiFormat.m */; }; - A5DDCCAE29F2F5E25CC92A67C3423889 /* DDTimerSwiftKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 838C0533D1F076BA19A4E8FF6F2FEA5A /* DDTimerSwiftKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5E551E635C6E43111A80BFB486E8D64 /* RetryStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90EB38753169305615F79B311EBD4AB9 /* RetryStrategy.swift */; }; - A5F8871912A1A3E8168E6DCF8EB4207D /* UISearchBar+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAF84A0D6E4DAD25836F4C3BB1C4D978 /* UISearchBar+Rx.swift */; }; - A608BF8A042013F0E8E790941B4D8866 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 99F76C0E556DBA753C07BD37DD8D9B7A /* SDMemoryCache.m */; }; - A69C94A0DD35B9524F7481113B574E33 /* SDWebImageMapKit.h in Headers */ = {isa = PBXBuildFile; fileRef = E5A842AC03240159C2D7A373C53EEDD3 /* SDWebImageMapKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6A88AED55AF15B200D729C12B111805 /* DDBaseScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = FC02A1B23677EB9F0258396FA312264D /* DDBaseScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6BE4D99397CCCF471CC631C990757F4 /* DDBaseImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A15D2B1F2C827DB6D3D881D510BD2BD /* DDBaseImage.m */; }; - A6D371F7B8F0AE9A55EE402E33583504 /* EKButtonView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D383DA1391C54C646431F49F02AD4CB3 /* EKButtonView.swift */; }; - A6D41E81954BD5AE4FD84D7837C4C4DF /* DDBaseSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 42CF39FFA5F10D498E7F7E91B1E4F8C7 /* DDBaseSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A7671E10F1A28B504D6278BD2B134F96 /* ReplaySubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46C26B2CF6E92ECEEC8FFAB34A867546 /* ReplaySubject.swift */; }; - A859C89F424EDCA9AFE07133A3CF3FC7 /* DDSpeechSynthesizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7820A44DC2B736F4FB0F8A86F4EC0E4A /* DDSpeechSynthesizer.swift */; }; - A85F87F76994AABF1A998086BFD092B2 /* DistinctUntilChanged.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75AB66F1387ADE34186211D2FA51C30C /* DistinctUntilChanged.swift */; }; - A88D569C6D40F093E8AA5773B735147D /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 990D75692CBF771F7132CAC9F012C137 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8A0C288519E463DE5E9B307FAE797F3 /* EKAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D81551FCEB78DB3AB62B0BE049F6F97 /* EKAttributes.swift */; }; - A8CA115BC4FA6DD591374434F2CB9827 /* RxMutableBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = 378E05D526BC6532FFE1FD5E4CC5DEDE /* RxMutableBox.swift */; }; - A8DC4B6CAA17BCE09B33F0CBD7B760AA /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = C85ADE394FBB5DF16407098375D223AB /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8F2E7F3B17E5894401197A17A18C27B /* ConstraintMakerEditable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80FAB26D30EA39FFCFCE983115953C8D /* ConstraintMakerEditable.swift */; }; - A91F69373347CD458D89B84B084E0640 /* ZLPhotoPreviewAnimatedTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11F1FB07A7985B49D4B2287D27B5E3DE /* ZLPhotoPreviewAnimatedTransition.swift */; }; - A928D17689392DAAC600620B1020505C /* ESTabBarItemBadgeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32583965F8BE185C5BB2B774ADDDC881 /* ESTabBarItemBadgeView.swift */; }; - A952741473205F790F725FA10B2C2667 /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F8ED44F5937A9A812D540E484331164 /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A97E69232EB284E6EF3127992F66C58D /* BRStringPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = BBE6DE1330BA9582C66D2FE825BD96FF /* BRStringPickerView.m */; }; - A99CF24F1B900AB7722D972FA4FED6BE /* SwiftyRSA.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4D292ACA56D0BD38598E5ED3BA9ABA5 /* SwiftyRSA.swift */; }; - A9A5CC537275881320975BDC2EE7F62C /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DD50E58F69247C46034A37BEB615292 /* SDWebImageCacheSerializer.m */; }; - AA3B6FC63BA119574A22F1A5E4B2D411 /* GraphicsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5B09F3B56D2F9CA22294C192F477BEB /* GraphicsContext.swift */; }; - AA6F9F6A4405BB9AFDDAAFF967296ACD /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B05B71F960689FE653862E9DA89226F6 /* SDWebImageManager.m */; }; - AB8707AC05E95D10D125F69C0F1F84CC /* ZLImageNavController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D7BBFB7922A0612AEC12DA177C7AB4B /* ZLImageNavController.swift */; }; - AB9AACA18876CCA22D676EB5CCDB06B0 /* ImagePrefetcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E68705B11B244C7E145B9E820FFE739 /* ImagePrefetcher.swift */; }; - ABA3BE298F1B209B9A4F53D73F8EFAE7 /* ZLProgressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4BDF4B29CDA5E515E318FC460748C6F /* ZLProgressView.swift */; }; - ABAB0AC650654642877CA726554C8A85 /* UITableViewCell+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 501A9F199AE7F1476E60BA55080100C0 /* UITableViewCell+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABE943E1E061EB3FF28B66675CC56584 /* NopDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 993694870161950B7FDF6DC85649ECE0 /* NopDisposable.swift */; }; - AC13DBC66A575418403E2514C2D583AD /* BinaryDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = D07B045DEB70E217C83F4D2724D77EF0 /* BinaryDisposable.swift */; }; - AC816DAE095CF51A98ECF689E6158059 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = AE9ACB42B9D8D64F4C97C05AD1294E34 /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACF6E744FFBA77DB4FE3E42A917E5CAC /* DDWebImageKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EF3D182C900BFDABDC1B8997FAF5738F /* DDWebImageKit_Private-dummy.m */; }; - ADF031ED0468E75793D32E1609139984 /* RequestInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6D75EF1453E751B4B4F4DFE4FB6CBAA /* RequestInterceptor.swift */; }; - ADFDF04B44D98030E7FB1F4A4196F155 /* ZFOrientationObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = E6145F6A2251DBFA7404007919F8188C /* ZFOrientationObserver.m */; }; - AE1015AC17118CA9A93681AAE7454DCD /* JXCategoryNumberCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FEC7F3CDD90F13DAB8D5602D5FAAF59 /* JXCategoryNumberCell.m */; }; - AE2421B86D481DB24462BBB65580903A /* ZLPhotoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80CFC41A2AFB3AB5866D6E4DCB91387C /* ZLPhotoManager.swift */; }; - AE26F9BE5C64F714E5403715219F2F4C /* Repeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3FEB9B2D27F3E1688FE70C9828E6B66 /* Repeat.swift */; }; - AE310A252E96F1A89125262C9293FB10 /* ZLImageStickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48148195B330B6991BF7FE0A2BAE6F0B /* ZLImageStickerView.swift */; }; - AE3814FADC3432DB8F6B88D2102EBB0B /* NSTextField+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEA42E366894AB71108DF72F7DE96837 /* NSTextField+Rx.swift */; }; - AE81E26AA0581A9E7559FB6CCC5FDC36 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A8078EC2F66D419FC4C70C67E8688449 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEE86A9326DC09055B5C28D98C50874A /* UIImageView+DDWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 686EFF145D54132D4D0B03136324C53C /* UIImageView+DDWebCache.m */; }; - AF4B0B8462B4A9C038551611E9381927 /* Lock.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1F8AAE3B07D060F242023977EAFF840 /* Lock.swift */; }; - AFA87EA35BBF8E4F0A2D41954069DD9C /* ZLEnlargeButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0ED51AB88BD31A962749880147DDCC94 /* ZLEnlargeButton.swift */; }; - AFE7A6835DD89F0D3331538280787CEE /* IQKeyboardManager+Toolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D7A7CED1D8CA82CC44D38208D97D306 /* IQKeyboardManager+Toolbar.swift */; }; - B01AD0CF889816FA1985284F075CFBF7 /* NSView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79B9A7893C1F94F144E666ABB214222F /* NSView+Rx.swift */; }; - B026AD1C1E94F5FC78A1CE5A96DDEE89 /* NSObject+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59E03709C9CE3BD5C40979CFCC2C05CE /* NSObject+Rx.swift */; }; - B0282842A0D7BB8372B6187459D6991D /* Resource.swift in Sources */ = {isa = PBXBuildFile; fileRef = C97E9525A94CDAA9F9FD8C7A3E12D63F /* Resource.swift */; }; - B0470BF38DA7AECBDEC223D60C2A05D4 /* ZLBaseStickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D859E0B839D8C5D9A193A0ADCD27C54 /* ZLBaseStickerView.swift */; }; - B04A1F654CEE373527D6A1FDE4706545 /* ZFIJKPlayerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 71A5F2E0746C8344D74501AE109E6080 /* ZFIJKPlayerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B062397EBC3E007F3B3A05D7EEDE6ABD /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A6BBB547BC2B91A84450DB7B519B693 /* SDAsyncBlockOperation.m */; }; - B0C86B62900B2C3ED6A6CC0E578492D1 /* JXCategoryFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BF6A94F6968D9C848B3D9FA972CDEB3 /* JXCategoryFactory.m */; }; - B0EFE5EFD87325E5A2FBB1F31304BFB7 /* DefaultIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 242042ABEF57F226FFBE5440B5CF22C4 /* DefaultIfEmpty.swift */; }; - B11769C6D0E6CA59FC36D1D77F642A78 /* NSData+SHA.m in Sources */ = {isa = PBXBuildFile; fileRef = E00B7ADB216329D0D9A8F1ECE6CF21DD /* NSData+SHA.m */; }; - B12803F0E38CFAE8770FE476242895C3 /* EKProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27E2F9777D905718F97C32C42E876362 /* EKProperty.swift */; }; - B169869926BCF8894AD891F3261B8AF1 /* URLSessionConfiguration+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F00AFF32E79768049030605B652BE4E /* URLSessionConfiguration+Alamofire.swift */; }; - B1CCDEB46FFBD5C857CEE2829F31D65F /* RxCollectionViewReactiveArrayDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 538B16B9C94F4B82990777F8A50D0C55 /* RxCollectionViewReactiveArrayDataSource.swift */; }; - B27F69341AA274200D4EC565EA51B477 /* NSObject+Rx+KVORepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCEE93B89F877907EDEDF35837EEB69D /* NSObject+Rx+KVORepresentable.swift */; }; - B2813AD57845A9900DC6231A3682762B /* DDBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = C21008FE97D98B3C3F38696A205F9BD8 /* DDBaseView.m */; }; - B2B998194CCD760C0095B9CD67B288CD /* UICollectionViewLayout+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = E7BD47B6911577F6147241C333B965BF /* UICollectionViewLayout+MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2BB06514C0A38F894279DA3BFAAB03E /* RxPickerViewAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD06A6592E10B1AA8536DD4E0F68594D /* RxPickerViewAdapter.swift */; }; - B2CA9EAB1E2C6365941AEC9856B013A5 /* Decode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D9DC55FA6FB4B58435F022F362C91DB /* Decode.swift */; }; - B2E3B006A6EBE8AAB7911F7F030B5568 /* DelegateProxyType.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1941DC9F9DA94904A2E255C4CC5D230 /* DelegateProxyType.swift */; }; - B35EC7EDA03BEB3F304FE1D095C31EAD /* CompositeDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AADD8A1FA51E934EFD39C3D1EA6C4B97 /* CompositeDisposable.swift */; }; - B38F7C6E3277F52A1B16B5B62F8BE0D8 /* DDBaseImage.h in Headers */ = {isa = PBXBuildFile; fileRef = C300C14B5A2FF321FCDA01B649AA7383 /* DDBaseImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3E2E1B9AE15CC280B8957C339243BEB /* JXCategoryTitleImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = CF076568CD19BB280A4E2AE5F00A9E81 /* JXCategoryTitleImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3E51F0E8AA1550E1B667D96C3BDD1A5 /* URLEncodedFormEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C8A4DFD485152B53E1EEFEA1C8B36D7 /* URLEncodedFormEncoder.swift */; }; - B40E0790D6C9B7387B5FAB251E16B1C0 /* Bundle+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAD74672A0CFFCF3755E1D4EB5216767 /* Bundle+ZLPhotoBrowser.swift */; }; - B41FD6E22B5A75FC2EAA129FF1B54B82 /* ZLCameraCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE9F9011F9E47F13A557D1479BABE384 /* ZLCameraCell.swift */; }; - B4338C7798751E0AF5817E0B5BED00ED /* Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36A8D3011FE0D727683CB9388B8D0B8A /* Zip+arity.swift */; }; - B4B569842D524A7B924119769888BF00 /* HistoricalScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9E8E1D6FA76DAD512B88D9AE9C856FD /* HistoricalScheduler.swift */; }; - B4C0B46C21087CA310DE57D0B9FF1C17 /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE60DBE6D5F359EB495C77110B2618A1 /* AFError.swift */; }; - B4DA45D21312C13C1BD200335595798D /* NSTextStorage+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 560573034F3383B435CBB2F95AF59B2C /* NSTextStorage+Rx.swift */; }; - B502E9659BC94C3074C41F9294248930 /* ControlEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 897E717674DFA392A2C33CF18161907B /* ControlEvent.swift */; }; - B5169B93C52F1FF030F7497A6FEF7E2E /* ZFIJKPlayerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E4DB94A4A958913F4DEAAC5961BB80B9 /* ZFIJKPlayerManager.m */; }; - B5909D30D3D2544499F30CA21286AC58 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D208F296EF7CC950D7AEA5D75CEF3FA /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5E8226BCB600380F56DF4E98CAA2777 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 270E907EF3D91D93989F546596E95202 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5F5635CB0E895EAC58232DADF5FC3AE /* UIStepper+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5D484E42F0E7A19057BDA48F89F5720 /* UIStepper+Rx.swift */; }; - B601FF45040CC3B4D882477DB46A8DFD /* ZFLandscapeWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = BB0810EA23F98BB396B250D2DC45F9F6 /* ZFLandscapeWindow.m */; }; - B6062CB645AB7C112A4963605E59E4AE /* UIRectCorner+Short.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B9C8E56726505D59BB4B6125A16D941 /* UIRectCorner+Short.swift */; }; - B6A5A9C096B866F53FC368AA2E9E94B7 /* JXCategoryIndicatorCell.h in Headers */ = {isa = PBXBuildFile; fileRef = C5ABA828B468E724249D9BFEDCCDD082 /* JXCategoryIndicatorCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B70BB03F1D414155F2C5F9E34E659806 /* UIView+ZFFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = D9A36C09A669F8D3ADAAB8C0846A6E42 /* UIView+ZFFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7192ACDC4B49F39190EB7583AAA8A28 /* MATraceReplayOverlayRender.m in Sources */ = {isa = PBXBuildFile; fileRef = E6DCB8EF1110CFA75F9F7EBD8CDF9414 /* MATraceReplayOverlayRender.m */; }; - B734391A023E1397D7C4988865147809 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 63BBFDA4F5F775E87B5974A5864F9476 /* SDImageCacheConfig.m */; }; - B7B9F94EF5A56E156C57147F5F302559 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 70441E4B17170F9A121582970C518A33 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7CFEA3CD5CD76A848550087D96704FF /* ImageDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C12FD1A28A40DF2B57355EE6DC72BA9 /* ImageDownloader.swift */; }; - B7F2FC2537F8A512F7969F37EEBABA19 /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 074C5B0A05A05333EC1249D280EB36BA /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B84BED170956D2391246497EC4ACE3B3 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 489448793B76FE2CFD1003097474ABEE /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B850BC342D7976173853AA223DF66FDF /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E2DD6950218D63E40EE3D4A4A66042D /* SDImageLoadersManager.m */; }; - B87F639BA80A12F66656DDAE7C7F8E24 /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A18186314BEE2254B0BCFEB6D00D5FE /* LayoutConstraint.swift */; }; - B87FA1A74AFFD85DC6676B5D9F777DA4 /* ZFPlayerControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0A702C5246C362CAA1536756F82DF8 /* ZFPlayerControlView.m */; }; - B8A10165BCEDCD996E93E1E5B5F78EA1 /* Completable+AndThen.swift in Sources */ = {isa = PBXBuildFile; fileRef = D446283244E7CA1B1117F7A419DA6B22 /* Completable+AndThen.swift */; }; - B8ACFB27F7B7E309059AA265F2657634 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = CD7470709DB5A2CACA7A5717325C23C5 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B929603A11A07A494CBE9E734195270E /* UIColor+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = C360CBF6B0E6AD7F01957675C510BE89 /* UIColor+ZLPhotoBrowser.swift */; }; - B963E078896CC9DF2C37C06A438908DA /* UIButton+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = E27684FB42170ECF7B074A5B07A6980A /* UIButton+Rx.swift */; }; - B9AE7983EB3E754C9E655B15C36143B1 /* ZFPlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = F44E54229C2F1F0ECF8A252B99B4591C /* ZFPlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9FF1535233685F95D47DE8B94EE4823 /* Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E78EC5F257D62CF5EBF684320C1C0A5 /* Infallible.swift */; }; - BA11AE6276ED0BCA627940CF2AA4A82A /* SectionedViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4B59B01E852D0C48BDA0BE1085896D5 /* SectionedViewDataSourceType.swift */; }; - BA9C4365F34B941E38477E5CA6E40387 /* DDMAGeometry.m in Sources */ = {isa = PBXBuildFile; fileRef = 53BE306314A462A24FE69A85B8A9749F /* DDMAGeometry.m */; }; - BA9DF997AD1708F66632B1EAED065C6D /* CacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB970411C4735ECD3EA57171615447BC /* CacheSerializer.swift */; }; - BAB7A04FB6B2883C06D4EFB12CD4974F /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 0112A6353EDAD9C4C4FEB00304992211 /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB1D61B7D957E411C5CE3E21DAD20C6D /* ZFFloatView.h in Headers */ = {isa = PBXBuildFile; fileRef = 35C47EE90EB8C0E8B997E7D10C024B1A /* ZFFloatView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB53D3B70456942057B1D13A5B59CA10 /* ESTabBarItemMoreContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C28ADE09E86BBD513D57E6FAEF8F4BF4 /* ESTabBarItemMoreContentView.swift */; }; - BB714B9D7C8AECD5513CD2452AD8687E /* _RXDelegateProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BE1AF4101D5E139FF57742189DED998 /* _RXDelegateProxy.m */; }; - BB91F7BFE3AECA8494D5E2BFA3AE593E /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = DC45A2A75FC87B2102E4A16C67DC31D9 /* SDWebImagePrefetcher.m */; }; - BB9CF389D15F65172C5D16936279DAAD /* FontUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45B36304D4FF5D68342CA29B891F9637 /* FontUtil.swift */; }; - BBCCC000664972C17D606E086C60EAE5 /* UIViewController+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 76C4DA99D194B23B019F5B7674229250 /* UIViewController+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBEC1389AE859C1F53CB8588CA32A54B /* ZFPlayerMediaControl.h in Headers */ = {isa = PBXBuildFile; fileRef = DE28F6C8920734CB78C861B48749CF7D /* ZFPlayerMediaControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC17BBE68BE2B0233A2B24429A134292 /* JXCategoryTitleImageCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E86E613AE9E514FF0F3492B965D90DD /* JXCategoryTitleImageCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC4248890A2765F68B3FCA279352ED4F /* BRAddressPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 944900CC6A20A98E00C529ED78251891 /* BRAddressPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC4AA0D7FF96AAC65A55B06DF5429CB8 /* NSTextAttachment+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ADF60D662FBC8EFC87BB28D21A86E3D /* NSTextAttachment+Kingfisher.swift */; }; - BC9DE732A9A9A3E6BA2DBE6C7ACB0427 /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F2DF3DCF280CB7F0988EA498ABEB5C73 /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD2BEEB68778EC69A7B04BC9216B4112 /* DDMATrackManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AE046F268BC84ADA083B9C81E9D296B5 /* DDMATrackManager.m */; }; - BD361E4E0FE4613901338D791BD13A5D /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E261E16AAB8FBD2C52D6C38F1A3B65C /* MBProgressHUD.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD42414ADB05335CCF6162EED02EB0E0 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 64E7F505531EBE9814D5511C51A87CA0 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD71DAAD9C863C0905780369F5942079 /* _RXObjCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 94A01E83D7BA91468C474B99384EE0D0 /* _RXObjCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDEF2FB7D927B0B5EC012429474270DD /* RxCocoaRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BE31722680616822B35EB06F13FF9CE /* RxCocoaRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE1A80FF8E7EBE33844C18B9DE10DF9F /* EKButtonBarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A41DF6CD1AD6889E66B8CA963800B7F /* EKButtonBarView.swift */; }; - BE5E45566FE7DF80AFCE321E3EB0FBCD /* URLConvertible+URLRequestConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA30A55FDF8DFDDBC812D62BD202C59A /* URLConvertible+URLRequestConvertible.swift */; }; - BE7FB93EFDCD3B7EBDCB76AD170A21E2 /* ConstraintLayoutGuide+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBBB11792460CBC6551C2718F353D0AD /* ConstraintLayoutGuide+Extensions.swift */; }; - BEDC9DBFBB0DC7DD1731D138A43247C8 /* ZFPortraitViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = AE99DD9E33CE8E9C5FAF0FAF7FE9DF25 /* ZFPortraitViewController.m */; }; - BEE07291E32F6B0395830FBEA7E6F610 /* DDMAMapKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 462F2AFFF36630D973AD2FEF84494576 /* DDMAMapKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF2F9348A80AD292B37135521A29FA03 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = F9D0A1C3717C19D580A5795B7F06D8B2 /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF4B5199FBBD2138841B0FFE7D841114 /* RxTableViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB309216660748833C0D73A9BFEE9325 /* RxTableViewDelegateProxy.swift */; }; - BF54D47FFCBD3584A405BF570385B1FE /* UICollectionView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = F4F3D95BE4918D33AFFEBFCC96BF3F08 /* UICollectionView+DDCategory.m */; }; - BF5CC60C20B34EF56D2BC3B420B65F1A /* DDBaseSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 38D8626C967C244EE734475FEA1D1B66 /* DDBaseSwitch.m */; }; - BFADC6914E112753B04A785D65369788 /* Using.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66F47940405489608F4ADDD38EEE007F /* Using.swift */; }; - C002C177911AA8E76F7D3BB08A4C5CF3 /* NSButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 264D957F0C6D44F8ED6DFEF13A47CA89 /* NSButton+Kingfisher.swift */; }; - C01355012AE3DC761464C352BCFD4197 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 669F74617E49E4A71C963BB841179C9A /* SDImageLoader.m */; }; - C06003DD05A5FB9050C6BCE1DD128511 /* DDScrollView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B58B992A585D4EB8BB2BB7DB0625FDD7 /* DDScrollView.swift */; }; - C06198FCBBF8CEF254BBBFA81EC292F8 /* JXCategoryImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = E976394F1E27CF9995D498FA1D7640EF /* JXCategoryImageView.m */; }; - C08497A34F7671FF094AA92DDB82CEE1 /* ZFPlayerNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = D1C95840DC145B6A5D3F749B2141FD5F /* ZFPlayerNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0A16AD03D4F121B5F6D22E51F6FD69A /* String+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57E3EC0AC5EB309AA5BC47F89954B444 /* String+ZLPhotoBrowser.swift */; }; - C0AE5BA8731B283400A196C6D61D4FA5 /* SingleAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 864C4471A94EFD4C2B350ED4251170D9 /* SingleAsync.swift */; }; - C0C8B5A6D43875BA9B2C23CC0181071D /* DDLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84B5F1C4B61C044E30A27877BD9CDA0F /* DDLabel.swift */; }; - C0D752CB903CDFB3FED7A63BE83197DE /* Never.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9326477912E1585BCB8783A0BB58CEDD /* Never.swift */; }; - C115C15858CF1B67C2654831E2FA0CD6 /* DDSwiftLog.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30BADF20AD9B3D04B4345970340F3962 /* DDSwiftLog.swift */; }; - C1263F184D8EDC9BF36F830E04767BB6 /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70B581A0535C8AFE1471785F9A56355D /* RecursiveLock.swift */; }; - C13CCD0F2979956BF520659BC2826A70 /* ZLImagePreviewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9750FDDE1AE9FFF16C8C0803092041F8 /* ZLImagePreviewController.swift */; }; - C1A5B1E0AB911C231477DDE3C44E6975 /* AnyObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD393D5805C510AC305C4D96DC6CA7ED /* AnyObserver.swift */; }; - C1E965AB2BE01579AB5F2FFD754EC2E1 /* Infallible+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B915A8B88EC16CA9453D450DA5E7665 /* Infallible+Concurrency.swift */; }; - C2690FBB1AF6367DBEFA11F552A14ACD /* JXCategoryIndicatorBallView.h in Headers */ = {isa = PBXBuildFile; fileRef = B93A9BB30CD31ED985932B1C23FA812F /* JXCategoryIndicatorBallView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C27DA232D42C0C1A1860904474D006CE /* MultipartUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A822AFE2F2931497A0367242C37EBE0 /* MultipartUpload.swift */; }; - C2881D28B50437D0B1B257A0B7345484 /* Kingfisher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AD09C01043C3998ACFE02F2B1748431 /* Kingfisher-dummy.m */; }; - C2B53EB045512989EDDDE03B3592E068 /* ZLAddPhotoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BEF0FB9A270BAA05728B6F2EFA50FBC /* ZLAddPhotoCell.swift */; }; - C2E3D13936EC4010EB612F303F335B70 /* DDBaseScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B0ECF6D28C24CF886DD1B69325C2C61 /* DDBaseScrollView.m */; }; - C2EB891FD0EB8D39EB663383C86A0A51 /* DDBaseAttributedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BD24545FF0C25F096F800E3A25C25FA /* DDBaseAttributedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C313E645865798661616F4F3407D8BD1 /* ZLEmbedAlbumListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDACE794855D907CD5A4811E72866CAB /* ZLEmbedAlbumListView.swift */; }; - C317B43DB6D2482017A763892A53203F /* ZLAlbumListController.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEBCD8C84670C83A94FB9262C56E66F5 /* ZLAlbumListController.swift */; }; - C324D23492EC6AD067A7DC7E705DACD9 /* DDButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEA2368A58CDACFDE20D6D1F2BC6DDE0 /* DDButton.swift */; }; - C3396F46162BECCC47A36826B0CA1070 /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = CEB242466FB5AFE798843B12D9066C3A /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3AD7B3E1A245AD30EC7A7FC2CBBD356 /* UIWindow+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E453A6D776B4C2DD2CE4853902DC43E /* UIWindow+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3CFA478FB802F5A6AD209E5E1B34F54 /* UITabBar+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 366C157EEC0CEC5951E19F411CD4ADEC /* UITabBar+Rx.swift */; }; - C40F08C50B0B6DDB15E4F1D6F18213A5 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 22B514849D5A4983887C1F4075AE7139 /* SDImageIOCoder.m */; }; - C4BF6BFB52FEE82B04DB8EA2AE9E5BBA /* UIDatePicker+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7596FA4A53EE264922BF4A75414E32F /* UIDatePicker+Rx.swift */; }; - C56AD838C0FF689FEA8E5AEA32E94175 /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D7B3F06FC86313D92F0CAF2CFD0BCD1 /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C581FAFB2BE7E18B9FCA322BE28127A2 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = EC71C2E012859A7028256A577D0D4256 /* UIImage+Transform.m */; }; - C5A65CAA184CBF2D7641A9EC731D4F5E /* JXCategoryIndicatorDotLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = DA5EDA8AEBC1D4EBDE58EACAF14EAAE5 /* JXCategoryIndicatorDotLineView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C601F2D881A256C716F2648F56178312 /* DisposeBag.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7CD4F4F951D9C61A9AB7D1C7C9927D6 /* DisposeBag.swift */; }; - C65ED3D3286E2BFCEFB3291A3A776317 /* ZFSpeedLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 39885DFE53079DA33C3AF6C34E8644EA /* ZFSpeedLoadingView.m */; }; - C67841324248C9CA5635AE5BD7C3784C /* DDDate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DCACE3236B6F7672272C51B5E33CEF6 /* DDDate.swift */; }; - C685B4E57FCFFF4FC132CC2C886CC561 /* DDWebImageKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 718BF6A47EFBD4E03A36F0DACD6E0505 /* DDWebImageKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C68C35A8E72BEE67B8BDE9E7FE89BE46 /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 519086AA5E56EAB1D79CA69EE3A36527 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6A28917BA21A23F4DE77DD077FE799A /* AnonymousDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E566FFBE1E891077F13982FFBEEC0E06 /* AnonymousDisposable.swift */; }; - C6E3A7066D6E47CA3C58BCE4E03E7DEF /* UINavigationItem+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 271DC27C2C97DCB807D0E4EAED6C02B7 /* UINavigationItem+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6E51067DBE86DDC81E13F3511696601 /* UITableView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 5386EF67B7415DA8A846212CB3814C04 /* UITableView+DDCategory.m */; }; - C6E584AFEE56F5FD9A1068C4656961AE /* SubscriptionDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DD5ABD5BAE466CBBC22E69CA8F62ED6 /* SubscriptionDisposable.swift */; }; - C6FB7F94CB7899B5D36DFC3BCC9124F5 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 76FEF52E669B34B702196132B1C41A77 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C70566B479FBFB82538A0E1C48E33C45 /* RxScrollViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 742E8DF0EF46EDB3CDF4073C16B7AE34 /* RxScrollViewDelegateProxy.swift */; }; - C76E436525BA78E49B7646D419140C86 /* UIPickerView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E42D0B25C03CE671ABDE16E5377BE4 /* UIPickerView+Rx.swift */; }; - C8044163E0088C3DEB33AF0494AB11A3 /* FormatIndicatedCacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 842663C6E92F695503DEF0BDF90FF6B2 /* FormatIndicatedCacheSerializer.swift */; }; - C848D2C5E05796A51A2CEC91D99D186C /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 84BACDA80C49A4EB43FE6924CCC6F6CA /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8522895B2B87B2C972E499ED4BCA683 /* JXCategoryNumberView.h in Headers */ = {isa = PBXBuildFile; fileRef = B969ACE825F0987C14FA58E931DFC01B /* JXCategoryNumberView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8CEB275BD154011A95400571B810344 /* Event.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AB1E42E25ADFA86AFA66F2CAB3E7847 /* Event.swift */; }; - C91C59A7EBFE30758FB1BE247A0C1368 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 0697135A5700E37C37D709774F076F78 /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C975D55EF9DA37044907022D01EFC501 /* MJRefreshStateTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = E2AB9F8CE95BBDB9C1257ECA7BFBB6C4 /* MJRefreshStateTrailer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C99C37A29156C480A0CC30ABB654108B /* BooleanDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BFEE202F51DE86820BBD9B0E7B60D2F /* BooleanDisposable.swift */; }; - C9A4CE5CAA3D142D609453B227BDF3CF /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = B5B4BC79F9C53FA8840D657CCD274548 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9FF0064F6C55CD4E49ED41B2EA17DE8 /* EKSimpleMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B9B6DEEBF041C124622D3692A52E655 /* EKSimpleMessage.swift */; }; - CA019A42C6A1BDC21A06601B1E2C9497 /* Sources_DDMAMap in Resources */ = {isa = PBXBuildFile; fileRef = 7D0A4A2904E3141B79A063B4440062E1 /* Sources_DDMAMap */; }; - CA09255FDEA073F52E9B21618886EE8F /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EB7402D9902C9EA57FD6402B339105D /* MJRefreshNormalHeader.m */; }; - CA9B9D6F4655B5BDF8259DB842366370 /* DriveRouteCustomAnnotation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BE13097EC2D93EF260C8A3AF9799E10 /* DriveRouteCustomAnnotation.m */; }; - CAB5A868A61CB97E7501C0E73726E34B /* DDProgressHUDKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B06A15310A68143A306FD5B54D44B0F1 /* DDProgressHUDKit_Private-dummy.m */; }; - CB0DCDB203D1D4E3DBCF2931711D6A7C /* EKMessageContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66DC558EE0EFA1B9CF47F2C5FAAB9FB1 /* EKMessageContentView.swift */; }; - CB5B734DBC1880D4CBACFF198A3BAD8E /* CALayer+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = E2984493084767F6E06C2285A66F30D2 /* CALayer+DDCategory.m */; }; - CB80DE99F7528C35542B9884FA8A8D80 /* ConstraintInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50F9BE04765266AAAC4A4EC04406F05F /* ConstraintInsetTarget.swift */; }; - CBB261988616F006F3D14E6E3E1A1567 /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = E3B0DF9D2776D7B4DD1A3E407CC36E95 /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBC7F6CAD45F4BE6E058E1ABA62F83A4 /* DDZFPlayerKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 39747070E76BCD6148E337EFB621459A /* DDZFPlayerKit_Private-dummy.m */; }; - CBEC084A900017F2E5219E7C514B1CA5 /* DDImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79C4E2407E2CED7DC8E6149454EEA006 /* DDImage.swift */; }; + 8F94DE7C574F2E68FB7F4182FF4AA19A /* JXCategoryTitleImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B22C2AE111B6BAD52B1C1CCF832049C /* JXCategoryTitleImageCellModel.m */; }; + 9069546BCE91958C23E24D6279C5E7C0 /* JXCategoryIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 186146230847B35699BD062A17AC4F67 /* JXCategoryIndicatorView.m */; }; + 90747EAF8374FFC67934EEAD2592FB29 /* ZFPersentInteractiveTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FD5270C8F324A664F43825F1FB622D2 /* ZFPersentInteractiveTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90C1CA69717100719BCA2413895F4E30 /* DDBaseViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FF5754CB4007BA551AA19CE66D63905 /* DDBaseViewModel.m */; }; + 90C2306666CD2C08EF76F2012825951C /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 46E27DDA8F4DDBE9BA961AD575752F28 /* MJRefreshBackGifFooter.m */; }; + 90C350B739A3E899B1B53E52B15430EE /* SDImageAWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E4F089093B7EA428A2A77E6772C6E84 /* SDImageAWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91A36B31EC90DB60DC9584F00E5D5643 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4F8FD648081A3FA0E9481699E9BFAA /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91B718E97E5B0E6C8E089096AC2DF4FD /* EKAttributes+DisplayMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57A99B916ED565A4052715347F98B0C5 /* EKAttributes+DisplayMode.swift */; }; + 91ED131F555A03F5905E86878BF38C69 /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 15C1CCF5C9AC68567C8EB642366E48D3 /* MJRefresh-dummy.m */; }; + 91FCE1CA81359383AEF001658E50D7BD /* ConcurrentDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE1B17E31649C1CE911EB3C8EE16F83E /* ConcurrentDispatchQueueScheduler.swift */; }; + 923EE64F6CBFF20AD30002B633BC50BF /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 58EF50AA09AD8E0D5AB1A14FF1BA6DDA /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 927A9E34C2E88E982888A5D2F8A9B127 /* BRPickerViewMacro.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F96DB6047A34C7BE2BC18D14E341982 /* BRPickerViewMacro.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9313F5863E61D51958D4954C876666DC /* DDControlsKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B9C2ACD62F530BEE464FCF63376EEEFE /* DDControlsKit_Private-dummy.m */; }; + 93207A865D205334FE48160E599E0FC7 /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = FE0E0216760A95C6486BF69B22EB7321 /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93A2C8A182BB0A1741384B45EA3E8C37 /* UITableViewCell+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = B3A3678CD7310132EA271C69596E9969 /* UITableViewCell+DDCategory.m */; }; + 93C25343A940D20BD21AE6C1EF582189 /* ZLThumbnailPhotoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DE7EBCD7288EAF466A187DCD0C6ACD3 /* ZLThumbnailPhotoCell.swift */; }; + 93DF6D6B5E32104AFE985F15355F629A /* MJRefreshNormalTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = BE5F512A605C45E66D7CAB4121CEC4ED /* MJRefreshNormalTrailer.m */; }; + 93FB152FA405B450B9D884DB4634EF60 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CBD83D52B3A482D5D31D9499E095405 /* Errors.swift */; }; + 9413C7DB4B03B9C9178A64659F476AD0 /* IQKeyboardManagerSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 512F7F1CEC0C4E9F9BE5BEBD8B35AE94 /* IQKeyboardManagerSwift-dummy.m */; }; + 943988FD00BB2FEB4A1443A9397438A7 /* SubjectType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BB27990636087FB8595A96CC780733A /* SubjectType.swift */; }; + 9497825ACEC7F42AFA494D810FDCD4EC /* ZFPlayerLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BB0021453AFA884E736E1E90E4E8301 /* ZFPlayerLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 949E8D2BB740EADFE39A5D66DF0612E8 /* DDBaseCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 0540B7376A7488B6BB1B632766911E50 /* DDBaseCollectionViewCell.m */; }; + 94B52F9D43DC46D45062BB39E53E9DE1 /* EKBackgroundView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB4721B00F3D917AE91CED8A02279E2 /* EKBackgroundView.swift */; }; + 950294909D78910972299DC5C9BFA72B /* ConstraintViewDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 275603A8F528E82EE55999D086F5CA34 /* ConstraintViewDSL.swift */; }; + 9517AFD055FCAC61888F63B46B1012CB /* ZLCollectionViewFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 066F5F846256BBAE99269E61C0B20F77 /* ZLCollectionViewFlowLayout.swift */; }; + 95277350C6DD3C3641CFF98AE0A12B12 /* OperationQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56FDC1F05E2B858476AC6660A79C063A /* OperationQueue+Alamofire.swift */; }; + 95AD0B08F159E5B4571FD8C7FCC3A78D /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D73D0FE814F287483B64EC3DCA05E85 /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95BB7F9C7C1F5694CEFA71ABDD2F686E /* Sequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 422D0406870D7669AE5338E20EDB217C /* Sequence.swift */; }; + 96199F1BEE04A029B3278BB1BED5F276 /* IQNSArray+Sort.swift in Sources */ = {isa = PBXBuildFile; fileRef = 091DBEDBDEDF1ED2890ACDE092228429 /* IQNSArray+Sort.swift */; }; + 96351482FE93C85C20C75E992ACC4D3C /* RxCocoaObjCRuntimeError+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D5F1E5E3E2084D1B61C8124D66FF6AB /* RxCocoaObjCRuntimeError+Extensions.swift */; }; + 97352932EA7908FEA0DB6210F4692034 /* MKAnnotationView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = BD8C0BEA44A3F19AB254339CA52001DC /* MKAnnotationView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 977F8070B2734739DD77174D591DC065 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F01D43E87A09342667E2389BEE515CF /* SDImageAPNGCoder.m */; }; + 97ACD5F8ACFCD7B423375EB425F82287 /* JXCategoryIndicatorDotLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = E5233EFC1A112982D0425B4F7C643498 /* JXCategoryIndicatorDotLineView.m */; }; + 97B4A15E0218313B8CE3CDB2D3CC73D2 /* DDNetworkingOfAlamofireKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A08C41467C4ACA046B611788505A1C5 /* DDNetworkingOfAlamofireKit_Private-dummy.m */; }; + 97F0C520D9B649AB3B99B1C052DC9810 /* KFImageOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F74218AE4EAC3E73C44E2DF119A6765 /* KFImageOptions.swift */; }; + 9817388F04E487B7ECB5C08DDE606F86 /* MJRefreshConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = B0FBDCF01215D7EABC956A4621ADABB3 /* MJRefreshConfig.m */; }; + 981F1BFE14D989096611F7DB1D782B97 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D570C112416E8D8300D3C014ECF3429 /* SDDeviceHelper.m */; }; + 98812A663D328C2F17668DDECB2B74B9 /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = D68BC02E3A18FAC545AD0942F8BD4C06 /* Constraint.swift */; }; + 98E3362C6E28A5E746057D0C730B4F78 /* BinaryDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44F077736BE1EEE086217ADE1CE83296 /* BinaryDisposable.swift */; }; + 9912583A0C3DCE5F8AC15A3FC34E6FE2 /* ControlProperty+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = B545480560F1C724C5E6029068B80140 /* ControlProperty+Driver.swift */; }; + 999B33DC38983D04AD690B4599F3C316 /* ZLTextStickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7943AF051F1347D4280447B8B5EE8BEA /* ZLTextStickerView.swift */; }; + 99CEEC2F037650AB0C299FAC62DF2701 /* ToArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56DB8AFA9B7E354F4FAB90269E7E5EC9 /* ToArray.swift */; }; + 99D7BD631F5D4CC39B09885065481AE0 /* JXCategoryBaseCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8688EEEDE43BAAEF6B29C046E3D94DBE /* JXCategoryBaseCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A1DF88AB0E546AB51597714309B05C2 /* JXCategoryIndicatorBallView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0BB1D2E902F844CB3929719A7737AEB /* JXCategoryIndicatorBallView.m */; }; + 9A41FC2ABBF645CC7F01120A6BDB0A24 /* UITextField+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77B022AD37E2DE1CFA87023184B71B24 /* UITextField+Rx.swift */; }; + 9A893B4380DC4281EEB552683E919CE4 /* Deferred.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CC42ABCEA6FE16E2511E008BD56A121 /* Deferred.swift */; }; + 9AD45C50CF16ECCC1D372A4A9356BF76 /* UICollectionView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = C6370465DE051DC741FEEC5C865F2540 /* UICollectionView+DDCategory.m */; }; + 9AE63A71DB55322FFBB6EF1D979282BE /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 418576B499736076EB0BA9C49A6CCCB8 /* UIView+WebCacheOperation.m */; }; + 9AF82E3FE6B0FCA2D289149812D57304 /* ZLPhotoBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F5D86760EC70ED805F2906BBA726B480 /* ZLPhotoBrowser-dummy.m */; }; + 9B32CCFFA0C3806B0187E0ECBC35C0B7 /* DDBaseImage.h in Headers */ = {isa = PBXBuildFile; fileRef = A9C059A3D5DB2FA7379E9C9BA5526458 /* DDBaseImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BE22C2FA9AFEA5C7ECC33D85C33F54D /* ObservableType+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1251C85209716C617C7B9F371BC3DEAE /* ObservableType+Extensions.swift */; }; + 9BE899982FAEB47E89D2EE2FD9684CCA /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 051BA53CB2192FF6D24C7F99747C8FDB /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CF1888AF79CD22EB414BFE758E5D36A /* UITextView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F6156B556B076A4B9408EC4444CF56D /* UITextView+Rx.swift */; }; + 9CFBE2A3F8BFF4BBDB6DA37F9CE7C266 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 573D340189D2AE61E6D0F924527E48E4 /* SDImageGIFCoder.m */; }; + 9D43333662E9A614D8F63052D7F1ABA7 /* UIApplication+EKAppearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = C66A1EC622EB89251B891115E47799E7 /* UIApplication+EKAppearance.swift */; }; + 9D47E92F42AF3C13A22FAAADFD2A7CCB /* ConnectableObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B70E30F33A95BAF13F8A49DB969F860 /* ConnectableObservableType.swift */; }; + 9D4EAF940F2C46778D1682E8127F003A /* ZFFloatView.m in Sources */ = {isa = PBXBuildFile; fileRef = 728BC62357FBB93CB07BF6E17C2A6A86 /* ZFFloatView.m */; }; + 9DAB2556D82974EE7905C156B4F3A07A /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = E59D5E323294187BA97F9DCCCA2CAB03 /* MJRefreshAutoStateFooter.m */; }; + 9DC2A94B2891D5F2B37FF69F48347EA7 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = DDA32CD6A5C753C2C1F36030926B731B /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DC7E5A3ABF83D07890CF86F7CAFF76F /* AnyObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0A5E2143F94BF6522848A46BAAAAB2C /* AnyObserver.swift */; }; + 9DEFB591D6DEBAAAF949BE635617A7A6 /* MJRefreshNormalTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D2A076D770B8DD24D238362C7053CE7 /* MJRefreshNormalTrailer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E13BAA5897DBE84C6842BE86EED1CFC /* EntryAppearanceDescriptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = D59A28A34B495482D16FF41CBE7A1FF0 /* EntryAppearanceDescriptor.swift */; }; + 9E79B9AB71D2E22A22010F703F330719 /* StartWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DAD147264FA2FBE6ED5247E9B66774D /* StartWith.swift */; }; + 9EA55F404A7BE4684E3299402A5B88AE /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = D41F03449EFFAD7334A04DA3C9EAFB70 /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9ED777C3C0E329619F172812442A9F22 /* UINavigationItem+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = F253094D312A5F09A2756F822CA0631E /* UINavigationItem+DDCategory.m */; }; + 9EE55E6E57DFF49D9CEB2493AD5B93A9 /* SharedSequence+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68443807C91B3F869EDE10F7C28F5A48 /* SharedSequence+Operators.swift */; }; + 9F189A3AC2056A2D5A95A21C0C6DFF3A /* RxSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 769BCA6DE32067F47887B1DB030BA1B6 /* RxSwift-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F26F0EB6575EEC06D48252EC38DDC46 /* EKXStatusBarMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 872D28CD57BE525D147ED3B3DE76EA4B /* EKXStatusBarMessageView.swift */; }; + 9F2B55965C0D590FBEB138361DAB40C6 /* TakeWithPredicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D28BADFD21FD34580D06439BF6E9EB6C /* TakeWithPredicate.swift */; }; + 9F75DD325C460FFC7984DF4A9A42BC68 /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 21086E62CBCB8C87E3823CB9DB3A9820 /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F90CCC3FC0CF5D2BF452D59CDDF8A7B /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = D547B7EC123F580B0C8078B97398B638 /* SDGraphicsImageRenderer.m */; }; + 9FA55209BBEC5446B1699EFEAA8AE99C /* RxTableViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22913BCCD6BFD108964E1970FBEF5781 /* RxTableViewDataSourceProxy.swift */; }; + 9FD3756156E6C45847D585118FB35DEA /* ExtensionHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3043EDD79265F99BAB8C607B74DB57C2 /* ExtensionHelpers.swift */; }; + A011FE7F352E2DC4F52A72ACC985E865 /* ParameterEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BD8457D4685C7868DBF890E8B00BB76 /* ParameterEncoder.swift */; }; + A04D18D31E122D027996BEAB2A61544F /* Sources_DDMAMap in Resources */ = {isa = PBXBuildFile; fileRef = AD6A26B15AAFE692B92D5F16C8602202 /* Sources_DDMAMap */; }; + A0649D13B9C3CE011F3FEA618EA1724B /* JXCategoryIndicatorTriangleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 90BD683072A49772DEC88FBC551AC7CC /* JXCategoryIndicatorTriangleView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0657A64DEA57E5606A79DF5FFA0C0C9 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 74AEFEEE14F4D14CCD3B1BD558A6CF45 /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0CAC16C811D166585ADC16AF08A6EBA /* JXCategoryIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FFBED2B6EE9F1E8250262208AAEFE16 /* JXCategoryIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0E59DE1E829AB6653A41F549DEA9F3C /* ESTabBarController-swift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DCD99B5E4240686B47300128D9897A3A /* ESTabBarController-swift-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1059E3A9E938EE8F540D5639AB4B4E5 /* EKPopUpMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E3CEAA25B59FE6453C4320D43FB8D67 /* EKPopUpMessageView.swift */; }; + A1154695614BCE420D4723615A9BCCE2 /* SwiftSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4457A40FC3FCC29E9A078124E59297AE /* SwiftSupport.swift */; }; + A13B4CC2584A03BF7414FE90F04C487D /* EKNotificationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E3D08B57DCDB9B37946A48DF6482C85 /* EKNotificationMessage.swift */; }; + A17B88101B55AE2259598D30E3CDA92E /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B578F82B80DEB9A94BF0A4CB575273C /* SDAssociatedObject.m */; }; + A1EFA95286CBFC522943E64BB62A4C8B /* Decode.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA4F6B68BCECD6440DEECF0F4BCED04A /* Decode.swift */; }; + A21A3EDB30349656A7BF23004B6AF02B /* SwiftyRSA-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D816653F15A0720DC1BB328451E48B3D /* SwiftyRSA-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A29CAE715EFFA6F90408C3B8345A1883 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 844CE0BC14316FBD13467CD96FBED46D /* UIImageView+HighlightedWebCache.m */; }; + A2B52B66E0891E57CFA6C3750BF7DBC7 /* ObservableConvertibleType+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29EE5F2D2B9F6E7178A70E8FFA12F663 /* ObservableConvertibleType+Driver.swift */; }; + A328DD14BD9500BC78D1C7120DBC30E4 /* IQKeyboardManagerConstantsInternal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8A98015C90C034E9C04D6E0F1ABD1FC /* IQKeyboardManagerConstantsInternal.swift */; }; + A358C72687DDFF484CAB4B0124CE34A8 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = A62C7AED05AFA7022D1DD6F203907AFC /* SDWebImageCompat.m */; }; + A3736A9A578BC85F4F901C0265C464E3 /* Placeholder.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF6C455861CE7535DBC4C7C506FC4BDE /* Placeholder.swift */; }; + A3F68F7FD050BA0038F03314E92B7CFE /* JXCategoryListContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = E6F567E3A23DAE059A22DCD80A987D20 /* JXCategoryListContainerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A45846C269357C355CDEBF8B8EF896CD /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A715C6F02D6033EB5FE5B49C4BB39B6A /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A47A8C0005A34BFE01922670CA77C500 /* MemoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30CDAB8F0A186D15D7DDA9D9C9175411 /* MemoryStorage.swift */; }; + A47C0FCC66F7B07586562213C30B0AD9 /* GroupedObservable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FDFF23D0CA9275C1C9B3BF37FC20772 /* GroupedObservable.swift */; }; + A4AE06BE1B4C107F33C291F8B1B10E22 /* JXCategoryTitleVerticalZoomView.h in Headers */ = {isa = PBXBuildFile; fileRef = 87BAAFEE252641A89CA7504699E97E3A /* JXCategoryTitleVerticalZoomView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4D3C0FF0EC1462586B769D06F7A9A1C /* DDBaseTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = AEBE47C7BCA250CA2496160E170BE8EE /* DDBaseTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5588452163DC3F1615D8D01178FEAEB /* UIButton+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 6237638D1EE25F6E83492D1AD59EC726 /* UIButton+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A576C4698BA14346E54EB6463022EAD9 /* JXCategoryIndicatorCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 15C521A39AE11898E33A5894C1A91596 /* JXCategoryIndicatorCellModel.m */; }; + A5DCA31A4D36F66FFA278B81D8BEF027 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 65A42E42CDABEEFE9AAD8313C4AC429A /* UIImage+MultiFormat.m */; }; + A5DDCCAE29F2F5E25CC92A67C3423889 /* DDTimerSwiftKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D2FA880FC160384800ED3D83C3F095AB /* DDTimerSwiftKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5F8871912A1A3E8168E6DCF8EB4207D /* UISearchBar+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0367BA5D256555C97DCDC38BFA1B3254 /* UISearchBar+Rx.swift */; }; + A5F8A3820B26F39E6EE001FE851DE101 /* GroupBy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41DA497EF073626C5D9A197F3F90A790 /* GroupBy.swift */; }; + A608BF8A042013F0E8E790941B4D8866 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AB63A8D2DFFD91C683D442599E5AFD7 /* SDMemoryCache.m */; }; + A69C94A0DD35B9524F7481113B574E33 /* SDWebImageMapKit.h in Headers */ = {isa = PBXBuildFile; fileRef = DDA69305344998ECA41F4A63617370D5 /* SDWebImageMapKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6D371F7B8F0AE9A55EE402E33583504 /* EKButtonView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C0FEB40C6D7AE8B70353F2A8C8219AB /* EKButtonView.swift */; }; + A6D743CD31F8BE6B743622F1EE837BE1 /* DDBaseLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 61443FC3DFF69856B4148D8A6E81EB44 /* DDBaseLabel.m */; }; + A77F62709291A17392A04BA42918C7FD /* String+MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = C67827622B2E2B8F80571936FA2D77E8 /* String+MD5.swift */; }; + A859C89F424EDCA9AFE07133A3CF3FC7 /* DDSpeechSynthesizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CE87AD2396F79DE4134FE95D84EA276 /* DDSpeechSynthesizer.swift */; }; + A87FF51F14816F591D83FCB82FC88E61 /* DelaySubscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 779ED11063FBD714E51333AF36ED5209 /* DelaySubscription.swift */; }; + A88D569C6D40F093E8AA5773B735147D /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F75183CDE076D8CCE6404A74A0A9C4D /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A89FA11E82F6C8D3F01DB08D5F00CCB5 /* UILayoutSupport+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67F029F4CB4AF2F94B400D0F42A414B3 /* UILayoutSupport+Extensions.swift */; }; + A8A0C288519E463DE5E9B307FAE797F3 /* EKAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FAFFEFCFBC53914E82A0ED097431AA0 /* EKAttributes.swift */; }; + A8DC4B6CAA17BCE09B33F0CBD7B760AA /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C5BA44FF41AA4CD65CEE4EC878C5577 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A91F69373347CD458D89B84B084E0640 /* ZLPhotoPreviewAnimatedTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA3DBAEFC53BE65259C23C0473A67C63 /* ZLPhotoPreviewAnimatedTransition.swift */; }; + A928D17689392DAAC600620B1020505C /* ESTabBarItemBadgeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2103A0E2B86EC485F69470ADE31B8FF5 /* ESTabBarItemBadgeView.swift */; }; + A952741473205F790F725FA10B2C2667 /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = B5DCFD445F02011536789C989FC8049B /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A96C98E945DE88DF1525CC9AEFD5A8FC /* ConstraintMakerPrioritizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF57C2F96F08650971648691090F449E /* ConstraintMakerPrioritizable.swift */; }; + A97E69232EB284E6EF3127992F66C58D /* BRStringPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CCD328B4C27B227EF583E8D9CCF4783 /* BRStringPickerView.m */; }; + A99CF24F1B900AB7722D972FA4FED6BE /* SwiftyRSA.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9AF80B6D211BA142F5B96DFD2F4D4E9 /* SwiftyRSA.swift */; }; + A9A5CC537275881320975BDC2EE7F62C /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 83970BDB8172C4F8BD4F6D84DFE861EB /* SDWebImageCacheSerializer.m */; }; + A9E46EB18EE0D1E0129C09C44B1B4725 /* Kingfisher-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AC435BCDB1D6D0921B24985828F65ABB /* Kingfisher-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA6F9F6A4405BB9AFDDAAFF967296ACD /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B5A50B006A6B5F82E978EE34682CF652 /* SDWebImageManager.m */; }; + AB8707AC05E95D10D125F69C0F1F84CC /* ZLImageNavController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C46EA8EF1DE47563CC626D13BD71006 /* ZLImageNavController.swift */; }; + ABA3BE298F1B209B9A4F53D73F8EFAE7 /* ZLProgressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3ED6B9AEBE20C1AFCCCFFF1EE7527E28 /* ZLProgressView.swift */; }; + AC100B99D78C03959BD5E09AFB20FA5B /* TailRecursiveSink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 434CFEDAB464EEA10B068B7300D13E51 /* TailRecursiveSink.swift */; }; + AC4B6129EFD6CC195B0C9F81F365D223 /* CacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87B7E469C0FC78E881890CB0E91FFD2A /* CacheSerializer.swift */; }; + AC816DAE095CF51A98ECF689E6158059 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FBCB3F1DDCCE67EEA1A285E89C414C0 /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACF6E744FFBA77DB4FE3E42A917E5CAC /* DDWebImageKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 17A99E15DB682AFB974C54B55AC66AB0 /* DDWebImageKit_Private-dummy.m */; }; + ADF031ED0468E75793D32E1609139984 /* RequestInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6AFBAEB716BB8713FC68FEC54FEDFD5D /* RequestInterceptor.swift */; }; + ADFDF04B44D98030E7FB1F4A4196F155 /* ZFOrientationObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 41D9FBF1BC149AD34E28B9F14094D61F /* ZFOrientationObserver.m */; }; + AE1015AC17118CA9A93681AAE7454DCD /* JXCategoryNumberCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D63D4ED57BE62AAEF5BDA5D8894F451 /* JXCategoryNumberCell.m */; }; + AE2421B86D481DB24462BBB65580903A /* ZLPhotoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B150F369C00EDFCA6DEF08A755FF2A1 /* ZLPhotoManager.swift */; }; + AE310A252E96F1A89125262C9293FB10 /* ZLImageStickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AA29DE7B5995743DED55DC922324597 /* ZLImageStickerView.swift */; }; + AE3814FADC3432DB8F6B88D2102EBB0B /* NSTextField+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4212E078321E7E7B1165889060125DCC /* NSTextField+Rx.swift */; }; + AE589F1D76180D196955D466E49CD34A /* CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02ADB14AF5456465D9166F44567CCE0C /* CombineLatest+arity.swift */; }; + AE81E26AA0581A9E7559FB6CCC5FDC36 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BEA14CDD06609B781449028E6AE3369 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEA12FA3B7A8295C69C1EB7949CD7067 /* ConstraintInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = E65AF53697F3F9D9D6DA4F80E94A0D48 /* ConstraintInsets.swift */; }; + AEB45908E4054579429AB2D4A4BC26C7 /* Infallible+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = E734E813B60F46993A6A3BDB5218CEEE /* Infallible+Concurrency.swift */; }; + AEE86A9326DC09055B5C28D98C50874A /* UIImageView+DDWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 957B458B27963A1B20D990D8A7C547A8 /* UIImageView+DDWebCache.m */; }; + AFA87EA35BBF8E4F0A2D41954069DD9C /* ZLEnlargeButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C6107E803B1F866AD69FCA7C2F0514B /* ZLEnlargeButton.swift */; }; + AFE7A6835DD89F0D3331538280787CEE /* IQKeyboardManager+Toolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABA8F3597F6131F7CD0471C852D1D176 /* IQKeyboardManager+Toolbar.swift */; }; + B01AD0CF889816FA1985284F075CFBF7 /* NSView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22AEEDDA173FD7544482C5B759F88974 /* NSView+Rx.swift */; }; + B026AD1C1E94F5FC78A1CE5A96DDEE89 /* NSObject+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = F92DAF49F4F56C344C9D459A7E93A47F /* NSObject+Rx.swift */; }; + B0470BF38DA7AECBDEC223D60C2A05D4 /* ZLBaseStickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED4392B292DE2A7314D9E2A1246F479C /* ZLBaseStickerView.swift */; }; + B04A1F654CEE373527D6A1FDE4706545 /* ZFIJKPlayerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A7DE48F6E46001C36233AC81BC7F59C4 /* ZFIJKPlayerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B062397EBC3E007F3B3A05D7EEDE6ABD /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E3FB624BCADCA3DEAE2F3779026AEEC /* SDAsyncBlockOperation.m */; }; + B063BA956EB9BCA0B53896A0E792A264 /* DDBaseSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 79064159BE9DE0015F7BA32759741857 /* DDBaseSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B06E0BCF82180F5FA9F0B40570A33FF2 /* FormatIndicatedCacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CDCD98CD8548CF04A7D44BC78B3E9AD /* FormatIndicatedCacheSerializer.swift */; }; + B0C86B62900B2C3ED6A6CC0E578492D1 /* JXCategoryFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E7D2754363E9BA3CC4C3089FCC02774 /* JXCategoryFactory.m */; }; + B1101E423D9DCEC93BB2031D7F846813 /* ConstraintDirectionalInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDDA5F4711874E111FF9BC56716D4961 /* ConstraintDirectionalInsetTarget.swift */; }; + B11769C6D0E6CA59FC36D1D77F642A78 /* NSData+SHA.m in Sources */ = {isa = PBXBuildFile; fileRef = 937A9C50CA89307904C0E71CFE42F3B1 /* NSData+SHA.m */; }; + B12803F0E38CFAE8770FE476242895C3 /* EKProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52B8C279CCAF15E8F950146A48401D5F /* EKProperty.swift */; }; + B169869926BCF8894AD891F3261B8AF1 /* URLSessionConfiguration+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CCD9E46F1E1E4415B1C36C0FFE711C4 /* URLSessionConfiguration+Alamofire.swift */; }; + B1CCDEB46FFBD5C857CEE2829F31D65F /* RxCollectionViewReactiveArrayDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66C2A0D04E50B558D318DA910AD6F6AF /* RxCollectionViewReactiveArrayDataSource.swift */; }; + B27F69341AA274200D4EC565EA51B477 /* NSObject+Rx+KVORepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7A8ABF24AA53C255B3EFB5344ACDFFD /* NSObject+Rx+KVORepresentable.swift */; }; + B2B998194CCD760C0095B9CD67B288CD /* UICollectionViewLayout+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 68A9797707F2EF47FB79B2AA1D930A2A /* UICollectionViewLayout+MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2BB06514C0A38F894279DA3BFAAB03E /* RxPickerViewAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 185958D2BB6C4837F0905CE716E82B50 /* RxPickerViewAdapter.swift */; }; + B2C5F63141BFE45AA4C780DC0C55C8A6 /* UIBarButtonItem+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 30D781AC3C405856C160630398633026 /* UIBarButtonItem+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2E3B006A6EBE8AAB7911F7F030B5568 /* DelegateProxyType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73F744CE5E0E9B9F8F2C3023FDE73FF6 /* DelegateProxyType.swift */; }; + B39CB141B9670AEF45DD1C127E168D12 /* DDBaseCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = B110E14993BA628C03E784EC20D250D2 /* DDBaseCollectionViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3E2E1B9AE15CC280B8957C339243BEB /* JXCategoryTitleImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 76F38F6902EA50F0DAAC6B311ADEB285 /* JXCategoryTitleImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3E51F0E8AA1550E1B667D96C3BDD1A5 /* URLEncodedFormEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3C48B96FDEB3E7BE6187C7AD82154D6 /* URLEncodedFormEncoder.swift */; }; + B40E0790D6C9B7387B5FAB251E16B1C0 /* Bundle+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = E77812B7E317F3982249BCDB641B27D1 /* Bundle+ZLPhotoBrowser.swift */; }; + B41FD6E22B5A75FC2EAA129FF1B54B82 /* ZLCameraCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06E0DD37506E441F6CA5E93B1717C661 /* ZLCameraCell.swift */; }; + B4BF0D5087489777B8D1E1D479F9021C /* Observable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E149949266077CA716C0F64C4A679EDC /* Observable.swift */; }; + B4C0B46C21087CA310DE57D0B9FF1C17 /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 067EF8AF841EA5E5B143B31013C9EB20 /* AFError.swift */; }; + B4DA45D21312C13C1BD200335595798D /* NSTextStorage+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FE5A60DF91E96F0F10C756A85D274BB /* NSTextStorage+Rx.swift */; }; + B502E9659BC94C3074C41F9294248930 /* ControlEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB8088C49642EBEE3519DC987805B43D /* ControlEvent.swift */; }; + B5169B93C52F1FF030F7497A6FEF7E2E /* ZFIJKPlayerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A9817CFE8A4527BF9CC4CEA07E9BF38E /* ZFIJKPlayerManager.m */; }; + B583A5C42836430A3946648726608081 /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C3C85ACBFE971066F7BADFAF22796A8 /* Queue.swift */; }; + B5909D30D3D2544499F30CA21286AC58 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECB168F76E634E9E8D7B8D5744FD68DE /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5E8226BCB600380F56DF4E98CAA2777 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C1A959F514B7502F8CA5C6AFA186D1 /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5F5635CB0E895EAC58232DADF5FC3AE /* UIStepper+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14528C5646AD08C6BD7757FC6C312568 /* UIStepper+Rx.swift */; }; + B601FF45040CC3B4D882477DB46A8DFD /* ZFLandscapeWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = F044BC1978FC2262022D2676743B4136 /* ZFLandscapeWindow.m */; }; + B6062CB645AB7C112A4963605E59E4AE /* UIRectCorner+Short.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E2288DCCED2DD373FB9AE190F3FC091 /* UIRectCorner+Short.swift */; }; + B6719944F5D85EF9DD63918F3D798E2A /* Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = A830C26521C532751DB622B4D379B501 /* Create.swift */; }; + B6A5A9C096B866F53FC368AA2E9E94B7 /* JXCategoryIndicatorCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A45E8007929D7542DAEF68384D3F6CC /* JXCategoryIndicatorCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B70BB03F1D414155F2C5F9E34E659806 /* UIView+ZFFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = D1F18F93101AC60EE823FFBC59264DF0 /* UIView+ZFFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7192ACDC4B49F39190EB7583AAA8A28 /* MATraceReplayOverlayRender.m in Sources */ = {isa = PBXBuildFile; fileRef = F012A7A07E08614806BFED33E367673C /* MATraceReplayOverlayRender.m */; }; + B734391A023E1397D7C4988865147809 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A99C320D0B8CC707AD90CDAE1641751 /* SDImageCacheConfig.m */; }; + B7A6F230A55903447B0384E2326538C8 /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C528017A7AB37E2EC46C8AF82F85321 /* Utils.swift */; }; + B7B9F94EF5A56E156C57147F5F302559 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 770E1B3EBC3640ED238C98349449026E /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7C05B5CA1951F5236D7B3E21956335A /* SynchronizedUnsubscribeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D0C5B8270C483F02144AA8D18C90901 /* SynchronizedUnsubscribeType.swift */; }; + B7F2FC2537F8A512F7969F37EEBABA19 /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A6C4BC8BD1E4F1B6A5617AED2488B12 /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B83BA1A8316C782F3EE9F7B57D1C0CB3 /* UIScreen+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = D92A8FE3E1B511EFFF6060691EAE164A /* UIScreen+DDCategory.m */; }; + B84BED170956D2391246497EC4ACE3B3 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 45EF0A218958CF51F0197F9EF66109D9 /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B850BC342D7976173853AA223DF66FDF /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FE5DE668F50BE4095450E30672792B55 /* SDImageLoadersManager.m */; }; + B87FA1A74AFFD85DC6676B5D9F777DA4 /* ZFPlayerControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = 99573FA78F6A5DA13942A47AF1AB9F03 /* ZFPlayerControlView.m */; }; + B8ACFB27F7B7E309059AA265F2657634 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = D9C966704CE79EF9539C9BDF5CA9D346 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B912045CC6351F6B403B2BA16E0FA3CE /* DDViewControllerAnimatedTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 66A6603B5B5F1AFC182A96D1AAE190A2 /* DDViewControllerAnimatedTransition.m */; }; + B929603A11A07A494CBE9E734195270E /* UIColor+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33232CA544685755203F36FB9CAD8B4B /* UIColor+ZLPhotoBrowser.swift */; }; + B957F1A6C24D94F95E2E5F23B051B7C4 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87EEDFB85AD7BC04AA40D304372057B6 /* Filter.swift */; }; + B963E078896CC9DF2C37C06A438908DA /* UIButton+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC7C613A9C853720F480F2B7E381C709 /* UIButton+Rx.swift */; }; + B98A130991A11ADEF21FF9200D5A56B7 /* UITableView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 8409E2B8BBA225FA53243A31057F10DF /* UITableView+DDCategory.m */; }; + B9AE7983EB3E754C9E655B15C36143B1 /* ZFPlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = F9E1E301798563B619C73A5CAFDBCC3E /* ZFPlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9F155F4F6130F1104D716DD9FDDAFE8 /* Typealiases.swift in Sources */ = {isa = PBXBuildFile; fileRef = 164362782043234383B02483B232185E /* Typealiases.swift */; }; + BA11AE6276ED0BCA627940CF2AA4A82A /* SectionedViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D4B25B38EB7F625A533C41F7A63B3D2 /* SectionedViewDataSourceType.swift */; }; + BA54F92D2FBB38606D79D8D7E274C347 /* Buffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9784281ACB2D7C2250D7EE2F61CD434 /* Buffer.swift */; }; + BA9C4365F34B941E38477E5CA6E40387 /* DDMAGeometry.m in Sources */ = {isa = PBXBuildFile; fileRef = A91B46F0198D76B2B40EDE98F636E9E6 /* DDMAGeometry.m */; }; + BAB7A04FB6B2883C06D4EFB12CD4974F /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 42557D5F13A9A26D67F53810DF2D4AFB /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB1D61B7D957E411C5CE3E21DAD20C6D /* ZFFloatView.h in Headers */ = {isa = PBXBuildFile; fileRef = E0C3110EBBBF54A09C476E88DFC53487 /* ZFFloatView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB53D3B70456942057B1D13A5B59CA10 /* ESTabBarItemMoreContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAA62652ABA1F70E3018F2937714751C /* ESTabBarItemMoreContentView.swift */; }; + BB70B6C53AF7E45FBA71C64AAEBE91D5 /* Timeout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61B7B6AFE657B0FF398ACB00652BA68F /* Timeout.swift */; }; + BB714B9D7C8AECD5513CD2452AD8687E /* _RXDelegateProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EEFD3500E275F334FC5C3FAED22C19C /* _RXDelegateProxy.m */; }; + BB91F7BFE3AECA8494D5E2BFA3AE593E /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 80CC449142B606B9E2AFB01AA5928B28 /* SDWebImagePrefetcher.m */; }; + BB9A04E50F275D205C0FD7B980DB3EA6 /* Just.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA1C69EF18EA03567A5AB5856EA13A3E /* Just.swift */; }; + BB9CF389D15F65172C5D16936279DAAD /* FontUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C9CAA5A5E610917C349EC6ED701550F /* FontUtil.swift */; }; + BBEC1389AE859C1F53CB8588CA32A54B /* ZFPlayerMediaControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3753B74746DACEC042103493B829DB68 /* ZFPlayerMediaControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC17BBE68BE2B0233A2B24429A134292 /* JXCategoryTitleImageCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F4302B33BDFB56164A2CA552E1A0AF1 /* JXCategoryTitleImageCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC4248890A2765F68B3FCA279352ED4F /* BRAddressPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 49729CA1E733EE9DFA06A5F4E180945F /* BRAddressPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC833E90536AEA35025BE5EB4961D929 /* UIViewController+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E23A92691502180D23A68331E29F362 /* UIViewController+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC9DE732A9A9A3E6BA2DBE6C7ACB0427 /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 04A51F1AAC8D966A3CF17F3552628174 /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCDFC18179E16CBECF61516FE32AC599 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BA63FF274F9C8199BF6CA2EC71544AA /* SessionDelegate.swift */; }; + BD2BEEB68778EC69A7B04BC9216B4112 /* DDMATrackManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A6946E3778D6DC2C13697F173C8331D /* DDMATrackManager.m */; }; + BD361E4E0FE4613901338D791BD13A5D /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 22A3E590F18A1E4CC779908BF80B0078 /* MBProgressHUD.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD42414ADB05335CCF6162EED02EB0E0 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 399515456B2D238C4E62CBEBE8BFE8B4 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD60FF42CC929FB579AAA79161C78EE8 /* ConstraintMakerEditable.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4886924F62ED6D39696DC7BA9F97A4A /* ConstraintMakerEditable.swift */; }; + BD71DAAD9C863C0905780369F5942079 /* _RXObjCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E189C0003B00E49B74050ACD7FC65DB /* _RXObjCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDB01EFCBD405CBDEDC86AED60564771 /* TVMonogramView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 986A9CA3CF77D11AB3C9243E0DD60161 /* TVMonogramView+Kingfisher.swift */; }; + BDEF2FB7D927B0B5EC012429474270DD /* RxCocoaRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = ADFEBD6AF0319D99F5E1F215718A82CC /* RxCocoaRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE1A80FF8E7EBE33844C18B9DE10DF9F /* EKButtonBarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7ADCBE556777FC06DECD3FAE17C794DA /* EKButtonBarView.swift */; }; + BE5E45566FE7DF80AFCE321E3EB0FBCD /* URLConvertible+URLRequestConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 359D77A8531D10C70D9424D02DE1BA87 /* URLConvertible+URLRequestConvertible.swift */; }; + BEDC9DBFBB0DC7DD1731D138A43247C8 /* ZFPortraitViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B0911F2AC65F45EB9C0EEEB034DFB9 /* ZFPortraitViewController.m */; }; + BEE07291E32F6B0395830FBEA7E6F610 /* DDMAMapKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B8338C72FAAE8A7C988D9DE8E51D4EC /* DDMAMapKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF2F9348A80AD292B37135521A29FA03 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = E83D1F19C92D0CB67F6F840E12CB9DAB /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF4B5199FBBD2138841B0FFE7D841114 /* RxTableViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04F09DEB4460226E152BE7C0845F6C63 /* RxTableViewDelegateProxy.swift */; }; + BF7DEC0A15BD22EAFA001ACBD73DAD90 /* NSButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6176899256A0BCE0FE9E6F54652FD3B6 /* NSButton+Kingfisher.swift */; }; + BFC08D9DD76862B19AA1174A6C73A080 /* NSObject+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E80CF754935616F3D07EC39D0154570 /* NSObject+DDCategory.m */; }; + BFFE66BC53D05A33A8D6D55B241932D9 /* Bag+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 688847A899CA9D29452FB72F219FB4A5 /* Bag+Rx.swift */; }; + C01355012AE3DC761464C352BCFD4197 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9554B6C53CEF59FF3124837EAB1A05C4 /* SDImageLoader.m */; }; + C06003DD05A5FB9050C6BCE1DD128511 /* DDScrollView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24E7683549AA9D8976E42E20C05780AB /* DDScrollView.swift */; }; + C06198FCBBF8CEF254BBBFA81EC292F8 /* JXCategoryImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = CC03BCC7B94731E48B755D29B5213399 /* JXCategoryImageView.m */; }; + C08497A34F7671FF094AA92DDB82CEE1 /* ZFPlayerNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 08D28D7A055CD03744D4D1D70503ED98 /* ZFPlayerNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C08B0DF00EE322E59BABF836426304AB /* ScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1D71C8008A798B55A6A430FFD318DE8 /* ScheduledItem.swift */; }; + C0A16AD03D4F121B5F6D22E51F6FD69A /* String+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = D24896F20383ED008DC90441CD13017E /* String+ZLPhotoBrowser.swift */; }; + C0C8B5A6D43875BA9B2C23CC0181071D /* DDLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03A02BAA630E73118EF5478DDF1BF1CB /* DDLabel.swift */; }; + C115C15858CF1B67C2654831E2FA0CD6 /* DDSwiftLog.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40C03F1C09C42BDD9F51B5EC1218B9C1 /* DDSwiftLog.swift */; }; + C13CCD0F2979956BF520659BC2826A70 /* ZLImagePreviewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A20EC5473D4EB7A737C9176FC08B43E /* ZLImagePreviewController.swift */; }; + C1580B08537F399CFB03A596D6A3CB25 /* ImageProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 803CF4D81B5BC0B583110537739D795F /* ImageProcessor.swift */; }; + C193A817DD3D83E35868FF5647E29ED1 /* Infallible+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFDADAAEC5AFF73C0D5758118E696E4D /* Infallible+Zip+arity.swift */; }; + C2690FBB1AF6367DBEFA11F552A14ACD /* JXCategoryIndicatorBallView.h in Headers */ = {isa = PBXBuildFile; fileRef = 58E0DA6647BE77A851064593E68D6E72 /* JXCategoryIndicatorBallView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C27DA232D42C0C1A1860904474D006CE /* MultipartUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = A890FECB845698CDDC2E15883C096A5F /* MultipartUpload.swift */; }; + C2B53EB045512989EDDDE03B3592E068 /* ZLAddPhotoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9DB646C1B86D65F8404A92607E85CEA /* ZLAddPhotoCell.swift */; }; + C313E645865798661616F4F3407D8BD1 /* ZLEmbedAlbumListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29051B3C942AD92F5CA34995E6CDEA2A /* ZLEmbedAlbumListView.swift */; }; + C317B43DB6D2482017A763892A53203F /* ZLAlbumListController.swift in Sources */ = {isa = PBXBuildFile; fileRef = B44B4D11914CA78A741F0F38185103B3 /* ZLAlbumListController.swift */; }; + C324D23492EC6AD067A7DC7E705DACD9 /* DDButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6FFE4D860DE4D742D3E569CF4076BDF /* DDButton.swift */; }; + C3396F46162BECCC47A36826B0CA1070 /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = FAEB70F7E89629819E6352D65B72E37F /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C33E218B5058E13209FEA8BCC2E848FC /* RequestModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD334EF9FD4B9B594B828B61097EF08F /* RequestModifier.swift */; }; + C3797E31E03FBBED0083AE6FDCA41F60 /* Never.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BB675B7481C947546D1269F1A55B716 /* Never.swift */; }; + C3B349F7E8B2EBB7C29C0EA61DB7DC41 /* Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAC5D322C3E7C85FB85CF8A95F7D9FBC /* Debug.swift */; }; + C3CFA478FB802F5A6AD209E5E1B34F54 /* UITabBar+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A8692AE767E7EF7D3585D1AFB64BB9F /* UITabBar+Rx.swift */; }; + C40F08C50B0B6DDB15E4F1D6F18213A5 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = C6167FB726839DC880D86CDA93B64D10 /* SDImageIOCoder.m */; }; + C46AB4B5FA5EDE3E7F5AFD4FC5421DC8 /* Lock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BD69EF40759F9D8FA64ED40014A9891 /* Lock.swift */; }; + C4BF6BFB52FEE82B04DB8EA2AE9E5BBA /* UIDatePicker+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BC7AFDACD488425AF0DA64F831F7ECF /* UIDatePicker+Rx.swift */; }; + C565B73484DF9F74C797013CBC912298 /* Empty.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBD2651733A27E35D22EDB7006D5478D /* Empty.swift */; }; + C56AD838C0FF689FEA8E5AEA32E94175 /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EADA2B589766C8EAFFD468B6CDA23BA /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C581FAFB2BE7E18B9FCA322BE28127A2 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E0CBFB4660D7C05DFAC5B142B9C5118 /* UIImage+Transform.m */; }; + C5A65CAA184CBF2D7641A9EC731D4F5E /* JXCategoryIndicatorDotLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = C8D1AED708A9B8A37C19E3698B4A9147 /* JXCategoryIndicatorDotLineView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C65ED3D3286E2BFCEFB3291A3A776317 /* ZFSpeedLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C11576D1AF7C0FF224059E4CDDB1D6D /* ZFSpeedLoadingView.m */; }; + C67841324248C9CA5635AE5BD7C3784C /* DDDate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8636C7D8EDC1EB0B5DDB91C8267CD036 /* DDDate.swift */; }; + C685B4E57FCFFF4FC132CC2C886CC561 /* DDWebImageKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 275FD406E006154083E0BB8AA7257F93 /* DDWebImageKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C68C35A8E72BEE67B8BDE9E7FE89BE46 /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = AA81EBE5C38E65C5B4B36C77A876C330 /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6E490B0E80A0D245B2BFC4B7F913831 /* NSMutableParagraphStyle+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB935E2D962998DC8976D0C90B14258 /* NSMutableParagraphStyle+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6FB7F94CB7899B5D36DFC3BCC9124F5 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 116D3EAFD40C577B2129B15287B2C59D /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C70566B479FBFB82538A0E1C48E33C45 /* RxScrollViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25FEB7887415C9D27CEE1AA31063DDAB /* RxScrollViewDelegateProxy.swift */; }; + C76E436525BA78E49B7646D419140C86 /* UIPickerView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25A7C94C223765D5352599C368C2AB96 /* UIPickerView+Rx.swift */; }; + C848D2C5E05796A51A2CEC91D99D186C /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 40E0CD4E04E3FBD7A47B1B210224AC01 /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8522895B2B87B2C972E499ED4BCA683 /* JXCategoryNumberView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A453F09D5AF87A4A1CE8BABD321ABBF /* JXCategoryNumberView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8834923612463271592CDC97CB84057 /* ConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AB9909E45891C02CBD6A4A15CAFFED2 /* ConstraintItem.swift */; }; + C91C59A7EBFE30758FB1BE247A0C1368 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AA5E045C740083BA8AF1BEC792B7C72 /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C975D55EF9DA37044907022D01EFC501 /* MJRefreshStateTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = CCD5719E35CDF09E7221B6BF27CD9FC5 /* MJRefreshStateTrailer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9A4CE5CAA3D142D609453B227BDF3CF /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = FCC5DC18D8B6ACAF7102214971196A2B /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9C37B90DD7C43E77E7266024480946B /* Completable.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCEE53B07BD954B681873FBB74FC12CB /* Completable.swift */; }; + C9FF0064F6C55CD4E49ED41B2EA17DE8 /* EKSimpleMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 771CE9363DF1FF47C201ED73257B9BCE /* EKSimpleMessage.swift */; }; + CA09255FDEA073F52E9B21618886EE8F /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = BD9259973A3D723B28D98BAC298321D0 /* MJRefreshNormalHeader.m */; }; + CA2317047F9D4F9927B24DEF78E45817 /* ElementAt.swift in Sources */ = {isa = PBXBuildFile; fileRef = D25C6967D8373406CD6C51C689D66DC8 /* ElementAt.swift */; }; + CA9B9D6F4655B5BDF8259DB842366370 /* DriveRouteCustomAnnotation.m in Sources */ = {isa = PBXBuildFile; fileRef = 370BE790B2678C2C7C8A43B2B8A9159D /* DriveRouteCustomAnnotation.m */; }; + CAB5A868A61CB97E7501C0E73726E34B /* DDProgressHUDKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AEF7DEA2C28D9475A26FFCF7D0F43353 /* DDProgressHUDKit_Private-dummy.m */; }; + CB0DCDB203D1D4E3DBCF2931711D6A7C /* EKMessageContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE6B37DF478434B7B1119B8F64FE2DE2 /* EKMessageContentView.swift */; }; + CBB261988616F006F3D14E6E3E1A1567 /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F5D5731FD78A7C35393153B615F88C5 /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBC75F96E911A47F87F11F69CDB97249 /* BooleanDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF74A5E916E091D3EF3775EBAE93BF3F /* BooleanDisposable.swift */; }; + CBC7F6CAD45F4BE6E058E1ABA62F83A4 /* DDZFPlayerKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 31FCBAD90AAC22C4F1029ED36E1071EA /* DDZFPlayerKit_Private-dummy.m */; }; + CBEC084A900017F2E5219E7C514B1CA5 /* DDImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A33F6DDDB760DDFEE2DC0D52793034E /* DDImage.swift */; }; CC3CF75FEDFB53ED37557A18E4F46789 /* Pods-OrderScheduling-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A0031ECF94D34F1497602F4B0794DD58 /* Pods-OrderScheduling-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC55C5B908ADB58120CCC05520A0BFFD /* Key.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3D0D1770DBD79014E10B615E908B7FB /* Key.swift */; }; - CCA10F76E74E00B9FE34413884C4E868 /* UISwitch+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DC5AF843CBB66628ABAF8646D0C4FCD /* UISwitch+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD1FBD083AEB95AF2A233A5D251CC860 /* JXCategoryIndicatorBackgroundView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B1636BB779E1B06200E7BA12F4B56EA /* JXCategoryIndicatorBackgroundView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD25427AEC067E2E672CD4FCD03E1C0C /* JXCategoryImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 524B2A33545F13651301317573D49492 /* JXCategoryImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD267F10F551CFAE647CEA8056A31E42 /* UIViewController+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D6236BA8C308683039C38766A1F971A /* UIViewController+DDCategory.m */; }; - CD28B9F3F0DF1EAAFBCCFD3FDFF7E877 /* SchedulerType+SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27DA64E3F20EB1C1EC08004508E2C16E /* SchedulerType+SharedSequence.swift */; }; - CD5C013284EAF371ABD1ACBD0F7C8ECC /* SizeExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E28C397C02D3520116ADA4BFA361602 /* SizeExtensions.swift */; }; - CE53DDB87C864CE0B303DD4BB61087FD /* RxNavigationControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5ACBECA1503B0C8B243129948D2065DD /* RxNavigationControllerDelegateProxy.swift */; }; - CEAF6058D42F63FA245DAD43FE4981CD /* UIView+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D9C4E6F91B5E65465DDF67DD6BCFDB0 /* UIView+ZLPhotoBrowser.swift */; }; - CEF5ADCAD1251F127AC70054BB17179B /* MJRefreshTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EF4C1D1ABAD085F21A045EE2D7E73D2 /* MJRefreshTrailer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEFA0D6241B04B0202FE23554D156CEA /* ImageModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6286647755CFF561CEDA7FB8B9639D7C /* ImageModifier.swift */; }; - CF0542E7E27082F0AE761E78228DEB8F /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 83C80746628D107B0BAD96A17846414B /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF45A291720054D8CF244DA694D1A72E /* Enumerated.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8DD808D7607AD343A0DCA81670E898E /* Enumerated.swift */; }; - CF5B5AFB5B46F4456347E091136BA349 /* ConstraintDirectionalInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CF15644D62C9CF63073D6AD99E6493B /* ConstraintDirectionalInsets.swift */; }; - CF7E7B3F7CFEAA83AC190EE63B5F5215 /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99211DAE7C096A7D965DE4912178709C /* ConstraintDescription.swift */; }; - CF830BDC0F7EE4F65E51DD71A1EF5C58 /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD6ACCDFDFB40B51E0A7536360185958 /* InfiniteSequence.swift */; }; - CF8D15E322415CC1628A88CB4935CF1A /* BRDatePickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BC55BC0261A7D48665DE67AA1945699 /* BRDatePickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF9F54F1BC6193B7A48B6EA1780F4E5F /* Cancelable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3340C67728F3719BEB95E3EB0E40AA68 /* Cancelable.swift */; }; - CFA4B5FE834BF6F5947C854ADC9C5A57 /* EKAlertMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE321EDB4DA518EA0C92146DAEA98721 /* EKAlertMessage.swift */; }; - CFCCC0B66A4858FC59896A0D0B4111B4 /* BRBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = CFB658FC4FDDCDD612FC03C10F5EC8A5 /* BRBaseView.m */; }; - D02E869FBC7503DA41EA8292A40085F8 /* EKAttributes+LifecycleActions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D92891C0EEF85D2B5497707BDE9F95BC /* EKAttributes+LifecycleActions.swift */; }; - D09FBE11319A5E8388BDD68201EE923D /* Reduce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B3217B6B8CBB512FA28BE40CFDC46B4 /* Reduce.swift */; }; - D0F860346DCC4231EBE870588325DBA2 /* ElementAt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B64D8BD88674E87F4B8033172DD9E64 /* ElementAt.swift */; }; - D10A97575FC17A740F4AD23FC87961E3 /* BRDatePickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F7572392C42E5FF330B624CEA619EEB /* BRDatePickerView.m */; }; - D12A6518AD01C22CBBD148C8FC550D6D /* TextInput.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC87D7530DB76143050FD101A281B8B3 /* TextInput.swift */; }; - D1381434AA9A73F22A5686775B9BDD03 /* EKAttributes+FrameStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C3233B033C5A5969D7505E3C7C5A08A /* EKAttributes+FrameStyle.swift */; }; - D14356BF87F9E91736CB650348922BB1 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = E60A2DAA7D2B91800BF97AF92F413AD2 /* NetworkReachabilityManager.swift */; }; - D1C81C32A93CCE7A35A72FC1D5FFBC75 /* DDImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF0FF53539B0A7C97B5B8D5936D3350E /* DDImageView.swift */; }; - D1CA27FA62FDFD654437AFE802F0FDC1 /* EKWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 809A942811E904E5AB37C4F1A042F7C7 /* EKWindow.swift */; }; - D1D3FC269DB485011A5C792F187BD964 /* DDToastKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CE559017FE5BEB1B86DD1ED2FF6E4C7D /* DDToastKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1F58981CC9B866CA76BD812F0DF5E18 /* BRAddressModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EC0CFDA55763B0AAA7A9D848A94D804 /* BRAddressModel.m */; }; - D269044D982531C2EABA7BD3F34101D2 /* CGFloat+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25B7C49E434F0FD6481719D7A1CAF359 /* CGFloat+ZLPhotoBrowser.swift */; }; - D30295702271BA26222EC0E8D2829E63 /* EKAttributes+UserInteraction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 669B5C29CF525051C1EB773ADD8D186C /* EKAttributes+UserInteraction.swift */; }; - D39C67D7F82F199C163D94AE5555AED9 /* UITextField+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 708BE8750E187F3FD16DE168DB5850BF /* UITextField+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3A692A8D6778B0C530C667E0D2645F5 /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5158774E93AAB204BEB8B6F15686EE8A /* MJRefreshAutoNormalFooter.m */; }; - D3DAA79DECE865BDCE076290194B4033 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = BADD81DA718C13A84A3FED29403DA654 /* SDDiskCache.m */; }; - D41706C216134FC77605103354F07C42 /* ZLAlbumListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84AD6E8A433AE28682F339252C2EB98E /* ZLAlbumListCell.swift */; }; - D44EC45492408BD59645A5921873D114 /* Take.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD22009E70BD6EADE5345601C6C73233 /* Take.swift */; }; - D45471D1E2289BEDB132AE8868F21AAA /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C388C572C414DE2530573984668DEE32 /* MJRefreshGifHeader.m */; }; - D48F7F03D93ACEF235C2805BD090A8E8 /* DDBaseLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 96D79F01CCD9152DFF8DCCCB8445A0C4 /* DDBaseLabel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4DE36B575B65B54091CB7179DDE1242 /* EKAttributes+Duration.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8C1BD92F4FFFE77CBCF4697A475E103 /* EKAttributes+Duration.swift */; }; - D4F67ACDCA6B952008E043750BAC4940 /* JXCategoryIndicatorProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 81C3F55AC49722C3EDAD764F5ACEE159 /* JXCategoryIndicatorProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D509C61F07A0066B5BD32F31E7F095F2 /* DriveRouteCustomAnnotationView.h in Headers */ = {isa = PBXBuildFile; fileRef = 373622AAF0D5DB4A6E1B048BD51DCB54 /* DriveRouteCustomAnnotationView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5381939AE952807E8D4A8E6451B9166 /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58509EAB55EB365485F8E73337CA8F50 /* Debugging.swift */; }; - D54C1EB233C3DFF0AB1C78D665B7A5DF /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 703EE49039FBF47F5B4769D7DF30FB70 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D552F57595574A84A82587BF008F32BB /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4FB019431EDA44040E819530DFEC690 /* DispatchQueue+Alamofire.swift */; }; - D591717337E72C406E7C3F0BF9F4907B /* UITabBarController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = C328946E28BB6CE7648ED67BB516A3EE /* UITabBarController+Rx.swift */; }; - D592739C746095439E46102478F32461 /* Switch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E9E083F0E2F9D06F39EE0F1D719CA9C /* Switch.swift */; }; - D6696173A60A63EAC3F30D4BBC21C72E /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 220C9FC125102C212017E3D5360E40F5 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6E1D2D6D57F579BF933DCF68AFEB287 /* UILabel+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 6001BB31587184982411055EA990B701 /* UILabel+DDCategory.m */; }; - D6E51D328530E74EBF3DFBA6709DE9D0 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B0D07A68C1A5451CF4746C771B625AF3 /* UIView+WebCache.m */; }; - D7021695D72DB0DE5E5EEB63D13D5D14 /* DDMALocationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CA4C80C28A1D29CF0675B0273176FB29 /* DDMALocationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D76130AD70A7483771A8051BE486A761 /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = CB4D065BD3993C63341C9CF0FF891C6B /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D86F0D26E943BB73BBB29356FD203D18 /* ZLAdjustSlider.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0F17526A977A87F4B4EB47D83CEAC53 /* ZLAdjustSlider.swift */; }; - D87C8DA2C35F94CD5157A6F37F9A9728 /* EKAttributes+PopBehavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67AC14DD412A9434D1CC90519DBE1DEF /* EKAttributes+PopBehavior.swift */; }; - D8B3C8F7538E458E4EEB3685D53A83CB /* RetryWhen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 898861D63F75FB1E1CBBF0126341CEE4 /* RetryWhen.swift */; }; - D8DDE2D559F66BDDAFAEBD52C6E4176C /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E0B7F362697AB98B0831EB8C3E38461 /* NSBezierPath+SDRoundedCorners.m */; }; - D8FD93FBAC2166F333BA48C4D726B091 /* ZFUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = B6E95CB0B4172465AE85C68B8F650249 /* ZFUtilities.m */; }; - D941B55ACBC7402786A5668FF2548967 /* DDMAMapView.m in Sources */ = {isa = PBXBuildFile; fileRef = 561D08A0865DF40CD98814126BBAE74E /* DDMAMapView.m */; }; - D9608FB125F849D4B3C79BFC4B8023C3 /* BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = F8EB1F9A1D977048FF7DD52FB2C33779 /* BRPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9A5F27AD02A968AA869E8CA5749686A /* UITabBarController+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = FB8513A8DE688E94B560FFA2BD70FEB4 /* UITabBarController+DDCategory.m */; }; - D9B8B43830362EE0C77A55B6CE157ECA /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 40090592359A38AC6F1DC5284EAE1B15 /* UIImage+Metadata.m */; }; - D9DFB73AB4BE6CB973F6F316B2A6A765 /* UIViewArray+QuickLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 021840F3237EF92607CF6AFD69AA02CB /* UIViewArray+QuickLayout.swift */; }; - DA39F13925A217C94F8582009262EAA2 /* EKWindowProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C5D15D33491C746363CB0AA1240F94C /* EKWindowProvider.swift */; }; - DB15F0057F1CC17F374030B02456DBD6 /* ZFSmallFloatControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8779ABA3A994868A90793E850955CAE1 /* ZFSmallFloatControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB52B199609D88ED1DC3152086B2C490 /* ImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12DD950669C9B3775079F542F4E99B86 /* ImageDataProvider.swift */; }; - DB534E0B9BCE28F670003044F0242932 /* NSBundle+BRPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = D19DE406AA047CD1C100910EE6A46463 /* NSBundle+BRPickerView.m */; }; - DB546CEBEB12A61D98A707A776672188 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = DFFB42422D64045DBBA512977E3A8B4E /* UIScrollView+MJRefresh.m */; }; - DB8E1097EFEC248D83112C45B37D7B88 /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CE97EE2B7A3CD85FD69E3D8F826F2EB /* MKAnnotationView+WebCache.m */; }; - DB9A7D027929EF74F71978FC8E4AE21F /* DDBaseAttributedString.m in Sources */ = {isa = PBXBuildFile; fileRef = B2790B3E98F164C93C39E381955E3994 /* DDBaseAttributedString.m */; }; - DBBE4CD219B97E106B7878A3CC9EDD4A /* ConstraintRelatableTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6620B1CC2216E4C9E02CDEDD906C842A /* ConstraintRelatableTarget.swift */; }; - DC2AD54F59773138F1461A45C2F19097 /* ZLPhotoPreviewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 231CC4A3A4CF964F93469DDAE4FE160D /* ZLPhotoPreviewController.swift */; }; - DCA7D023DF870B8B8461FFB6E0DD8A04 /* ConstraintMakerRelatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2073F87C6D23FB4C08394F7AF94D01AC /* ConstraintMakerRelatable.swift */; }; - DD0D82EA0192E44DA541CEC3B4A673CA /* UIView+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83C73AD16B130938F86D5F21B5A4CC3E /* UIView+Utils.swift */; }; - DD13D1582CFCE65C448C2B56AB55ADB1 /* DDAudioService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94FCE695A228A5ABB6C7986DA2EC49EC /* DDAudioService.swift */; }; - DD332B4397E477F1A16267E7BBF5A025 /* ObservableConvertibleType+Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04A4D8C22ADEBBFF6A7BB0745BF06E12 /* ObservableConvertibleType+Infallible.swift */; }; - DD792E3784D6D144A65A189A78A58428 /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 464E9109E881EAAD942E3CA3F335F40B /* MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD7FD9534175BB8CA05C83AA8BDCF23A /* DDAudioPlayerKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E797CB6A02E277912BB83563B59F28F /* DDAudioPlayerKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDC4249C07DCFE5CCA6EC5BA2D67DD7F /* OperationQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C144673DA81368C881E591519555C40 /* OperationQueueScheduler.swift */; }; - DDF9F1CD51A0B6E3FAEEC690269482E6 /* NSSlider+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E2F7FCEB4F7B11A24843AA042E5CD82 /* NSSlider+Rx.swift */; }; - DDFE00C961BDCC08086F9939477303CD /* DDTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3E93FB5BE1F82C73D2C995FA55AC7C4 /* DDTextView.swift */; }; - DE63FE12234373986128740BCD872713 /* Observable+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CA6BB9B6A43FA42F4BFA0B1BF2698AA /* Observable+Bind.swift */; }; - DE743B184A49FBCB4E9A4C7EDB45ABDE /* Date+Dispatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1462B6AC3BC1CA282AC70DAB36436FC5 /* Date+Dispatch.swift */; }; - DEA9C3D6CE995A50A590F7844D364C53 /* ZLCustomAlertProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 823464E00AF14E1C827C3774E038EFC2 /* ZLCustomAlertProtocol.swift */; }; - DEC9C47A74763D906441ACA51335B0E9 /* ImageDataProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = F55C2E002D6A9DFD619C3356B154FB28 /* ImageDataProcessor.swift */; }; - DF217CDC17FBC6B0860732A9547F6805 /* ZFNetworkSpeedMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 45312A1792518423AAA4BF2D2477900F /* ZFNetworkSpeedMonitor.m */; }; - DFA46412CF2FE571B31ECD6CC8EEB9BE /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FD9DEBB996349B686CCF2885152C2C7 /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFDE86746C1A9E0021E30FCA86484D84 /* UILayoutSupport+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC0EEB14DE1EDCA76ADF706C778C095C /* UILayoutSupport+Extensions.swift */; }; - DFF1DB48DB0640CE62267571AB775F15 /* DDAutoUIKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 789046465CC63C8E7BCAB4B9CDDA07BE /* DDAutoUIKit_Private-dummy.m */; }; - E0023BF02BEDC30A443EA6FF2677CD45 /* CurrentThreadScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE8C07FB0C9157E9EA4C65E1ADD0DA58 /* CurrentThreadScheduler.swift */; }; - E017B4EF323A0EBD732F33B9C92FBD0D /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = E9F6AF13B95E0C683BB1310CF0F01E71 /* UIImage+ExtendedCacheData.m */; }; - E01CDA460DAFCC348AFF41C35B802C89 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 81510816831459AE4634AB018B8A1089 /* UIView+MJExtension.m */; }; - E034031C40FE734AB1A4ACF321EEB12D /* RxCollectionViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDCA3E72F9B597E30F679F49F75C1248 /* RxCollectionViewDataSourceProxy.swift */; }; - E0528E490DB59F03F3D21D2509CC36E9 /* EKContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7E2EFC10113572603ACEDC0104B9DB /* EKContentView.swift */; }; - E0535C22C58CFE61C7FC72412989EE7E /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 84FD20C15ACF6E43D826E978C8D0D765 /* SDFileAttributeHelper.m */; }; - E07F5D56A6657C9297ACEF8B1E6047A3 /* ZFVolumeBrightnessView.m in Sources */ = {isa = PBXBuildFile; fileRef = 259A4B15C93543FAE7C4573300F2A1C8 /* ZFVolumeBrightnessView.m */; }; - E0A97352EFF47010A3449A81255CE5FD /* DDCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FD819AFD8BCF3C957BC508893DE12FF /* DDCollectionView.swift */; }; - E1855C592F7564D116B4E4045698D501 /* DDBaseLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = A0985C2D3D09468F5950AC1BA9882EF1 /* DDBaseLabel.m */; }; - E1FDB8D42137D8BF8709EE551862079B /* RxCollectionViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = A80C07CCBD047C169152C1EFA16BC2CC /* RxCollectionViewDataSourceType.swift */; }; - E2327F7C8F271B1433D5E58913D81D48 /* Empty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 934DC177795CCC1CACFDCC5C151056C7 /* Empty.swift */; }; - E24B4E923380A82510C81933D8ADEBC0 /* Asn1Parser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F6FDCC5D94436426954BECC9C3B4E54 /* Asn1Parser.swift */; }; - E27EFB8F48312FC0268C6B922BA3474E /* MJRefreshTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = D7A6FC30ADB37AFEF59BBDA41CF604B9 /* MJRefreshTrailer.m */; }; - E2D1C8236E08CA248E758FF3BDDD2BB1 /* JXCategoryTitleImageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = ACF3E42C7C5F35D5AEC97F85FBC70F77 /* JXCategoryTitleImageCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2D3345435E9F597C1445F09F5BD5FF4 /* EKAttributes+Scroll.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C054DD196A7A71E03C60687CF594E64 /* EKAttributes+Scroll.swift */; }; - E2EF5387D71F2D5DEC1F9C0FE6026C1A /* EKEntryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F58365E918C34F581D961AA3E86AF63D /* EKEntryView.swift */; }; - E30D053236494B7F13FCF9171D8EF69A /* UINavigationController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C92185A2626CC518730C6C24F19F24E /* UINavigationController+Rx.swift */; }; - E3AEA547447761964CF9808FFDECB8C9 /* KFOptionsSetter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 677D4317C802402AD89CF1AD51C3CA5D /* KFOptionsSetter.swift */; }; - E425B1792B00EFB153A9BCAC85B730F4 /* DDViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = B210E62E7E50FA3CBE127345A9F4A884 /* DDViewController.swift */; }; - E42BF0E600D0189F7F9AD5329D385334 /* DDTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC1336DF90ED85B667D6759B8550C914 /* DDTextField.swift */; }; - E452BC4F93B01D84D77A13381345A7D2 /* SnapKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DE74B231D2EB9502C3166A078A160335 /* SnapKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E53A79CDFBD796C4014AC90472E58682 /* UINavigationBar+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 53FE2A0958597468EE87596B2295FBA1 /* UINavigationBar+DDCategory.m */; }; - E5896247675299D7FB31F1DA59CF2B0D /* PublishRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E59E3429A485C2A5503F84B98CA1316 /* PublishRelay.swift */; }; - E5B3C04F705FCB65441CA1FE35CFC536 /* GCDTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 951B5575159EC6BED724E4E6ED9BC5AD /* GCDTimer.swift */; }; - E5F6C631FE32C41FFA4610E64AFEBEF6 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = ACCC81957B043657C6ADF39A29618B2F /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E60B45E5647579F76C24F8451C2EB8F7 /* RxTableViewReactiveArrayDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02ABE119D91795701827AEEA87EFD224 /* RxTableViewReactiveArrayDataSource.swift */; }; - E62A2816F9FFAF952C0E47C31B28D461 /* ControlProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFE0B4B0AFE7D95A1FA935DCA780F2E6 /* ControlProperty.swift */; }; - E62A3E33CD01B815039CCA9622117DC2 /* UIColor+JXAdd.h in Headers */ = {isa = PBXBuildFile; fileRef = 7958F91CC026C5C7181A4224C319C7A3 /* UIColor+JXAdd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E674B743DA97272AC8135AF21CF22F80 /* KVORepresentable+Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = F16536DAA77ED0535ACF08A801C3752F /* KVORepresentable+Swift.swift */; }; - E6AAEB8C90F798D2176874B496FAED5B /* ZLPhotoUIConfiguration+Chaining.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30D2EC85BE224E4817DB8095561AC045 /* ZLPhotoUIConfiguration+Chaining.swift */; }; - E6DA4613756CFF96F67CFFFCB1BF27A7 /* ImageProgressive.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB0D6EDBBAFBAB3C0412FF4A4299B71D /* ImageProgressive.swift */; }; - E723CEA64820F783BC387CC644BD5359 /* TakeWithPredicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDD2A5B96EF08036A2BE14C8D6B54AAB /* TakeWithPredicate.swift */; }; - E7388F57583B964A9BFD154FA12A486B /* DDBasicControlsKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BB93A49E9634BBCEFDD4A96DB107C288 /* DDBasicControlsKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E89EA5216E074A8E2073062D8AF5EA40 /* JXCategoryIndicatorLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = A5E64A2EE6431B19A716DBDEF3B30A75 /* JXCategoryIndicatorLineView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8A2CDF5B1D642F2C3225619514140C4 /* EKAttributes+PositionConstraints.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95BCC80DF87FC784EB4B5758A674FBE7 /* EKAttributes+PositionConstraints.swift */; }; - E8D2556CC84B1AF66D9C9E356011FC53 /* ObserverBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC71308873FDE26EABD8F4629B5B9526 /* ObserverBase.swift */; }; - E8E883B441B846E16A567A6D2EE0651C /* KFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EE914869B44DC1FBBD1CDD946DF2DD5 /* KFAnimatedImage.swift */; }; - E8F5C10BEE66E0A8E67F786EE75C4DE3 /* UISegmentedControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 115AE99B48C7DA31E3E6CE5F23873A5B /* UISegmentedControl+Rx.swift */; }; - E9466C49123B6DB38997B61FBE1A864C /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E9E994F5E0A30466A019EF2038D1604 /* SDImageCodersManager.m */; }; - E94B3EE66EBD1003468410DFEEBCA688 /* ZLPhotoPreviewPopInteractiveTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD3A281E792BDA50C5E416A95F141BF7 /* ZLPhotoPreviewPopInteractiveTransition.swift */; }; - E9D877C0FC7A2087F6B5FEC67FFD4CFE /* JXCategoryView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 124EB9CE1EBA4FD11BC091A4994501C8 /* JXCategoryView-dummy.m */; }; - EA20E7451CE67E411DAE038C6EE49472 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = B1D730DB07D98708486348B681065CA3 /* SDImageCoderHelper.m */; }; - EAF43513DE1A83CD6E5E9F25F147FABE /* ConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 282D7124F31EF80A3F99C92CE1C7C639 /* ConstraintItem.swift */; }; - EB1BA2C17D5B88DCEB700C359ED93E9D /* SerialDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F0B3FA98291615813B74700D35BDBCB /* SerialDispatchQueueScheduler.swift */; }; - EB34415A0817B6F0EA97C89773A6FB99 /* ZLEditImageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 070B86A959C60844EB59723B8B506DC7 /* ZLEditImageViewController.swift */; }; - EBCEE8F5579114E5F617B63B87CF4B48 /* UIView+QLContentWrap.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC0F31D20DAA777B08D7F0A70FBF0456 /* UIView+QLContentWrap.swift */; }; - EBD415C26D6A34A0BD3DC50D43856960 /* ZLAnimationUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = E906A74469F9048F0A7BBC39B81E4306 /* ZLAnimationUtils.swift */; }; - EC2B3804DBD7244270FE3CBB4076AE22 /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC14C2976D6079C72BABBC524433A222 /* Bag.swift */; }; - ED32FA526351BCAB35C1FFAF13390412 /* ConstraintDirectionalInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A7FA337B0F7386D1447BD33A3E1910C /* ConstraintDirectionalInsetTarget.swift */; }; - ED3F8719AE0C4D9464C372D0CB5D2E14 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = F2B053146B0F965492679960B447D107 /* SDInternalMacros.m */; }; - ED4CC55A75B1E9D7CA05B94B3CE2CA26 /* UIFont+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = D884C54D48E41C3591EA6C12160AFD84 /* UIFont+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED9F225882E966D67FD120629EE2B926 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = D90D3016E9BF0D33C094C69EB488BFFC /* SDDisplayLink.m */; }; - EDB63409EB6B2D945EB157D8A6CB1E4D /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = A940978B2BF8C6839BB0F74AAB53974F /* MJRefreshBackFooter.m */; }; - EDC4065EC27A50BCC6B13FC3ACD00185 /* JXCategoryTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = E15E4EADCA685276B8A1AC900814D556 /* JXCategoryTitleView.m */; }; - EE379B4848EDB17BE1C4D32E97B930A8 /* ZFPlayerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 843613D9700997543D0459D76E84B20C /* ZFPlayerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE4F330BFC8B694E49B714C8A93CC916 /* RxTextStorageDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59A13368B0FFCA3C8A50C99ED30FF5A0 /* RxTextStorageDelegateProxy.swift */; }; - EEBC7B1DE82D0BD22F0DC8240BF3E8AF /* ObservableType+PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1882ECCFC89D22852AAA5A86111E8FC9 /* ObservableType+PrimitiveSequence.swift */; }; - EF4C40146D51A30A61FDBE88FA9BD780 /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B306F2855C17CE14E0C6F81357746E9 /* Utils.swift */; }; - EF5F3CF8BBFDE4BEA2A2380A503569E5 /* JXCategoryBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F33CC9785E07D71C6234832E1CB198B /* JXCategoryBaseView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF734B2A8B68D195D5E48F1AAF436FA4 /* ScheduledItemType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 138086460796A09E7D9CEC5BAADC340A /* ScheduledItemType.swift */; }; - EFBC316A4F7D89CEAF073B2183D7E35C /* Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1955AB9D511D422C71260183A1AC2D9 /* Rx.swift */; }; - F001B72EF2941419AF8310B30D8FF42C /* IQTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4577B9EBD4673186634D390BE66F1F1F /* IQTextView.swift */; }; - F0133CE9DC3178B35F2AF1F29D535F7F /* URLSession+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73928D14094B4689950A28CFF3C5A0F8 /* URLSession+Rx.swift */; }; - F07D944FB9EE7D69319AEA7DF8818876 /* JXCategoryNumberView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB7F24947F4EFB11CCB19E5596531B14 /* JXCategoryNumberView.m */; }; - F0B4282A102ACF883C5664EE6EFB2081 /* ZFSliderView.h in Headers */ = {isa = PBXBuildFile; fileRef = 63484568EA3DB677F902354665DA16C4 /* ZFSliderView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0BFF5608C4202CA0453E53F57D91514 /* DDProgressHUDKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A38F1C0196F755CE20BC51A7D52CE365 /* DDProgressHUDKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0C845A29857BA67D95320938DC34865 /* ScheduledDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18650E478F40BBC9768C627BD7407442 /* ScheduledDisposable.swift */; }; - F0F38230060D730610F5815650288F1A /* DDZFPlayerKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D418578C68AF7C0F160C69F6D719A2 /* DDZFPlayerKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F19174B6F08BC6807F7168938A624447 /* NSObject+Rx+RawRepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29FBEA5D9CBA481C1FD1C39CC9087173 /* NSObject+Rx+RawRepresentable.swift */; }; - F1B8D62196F1AEB3E7F0D9B1EFE4FD15 /* ZFPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = B709F1F1BA29FAD095CAAA02FCF5611D /* ZFPlayerController.m */; }; - F1CD6661FAFABF16CD930C30A0566C47 /* JXCategoryDotCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AE10BB627FA715E039B5C0237B0D4DB /* JXCategoryDotCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2A75E2BBD114133ECC5B63C575FD6D3 /* DDBaseTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = BE7829D49288BB4A2B1C3428C611EBD3 /* DDBaseTextField.m */; }; - F2C932808B34226133D47A11A5C28B2D /* Typealiases.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86DCB045DD4968B5826BDCE4151714FA /* Typealiases.swift */; }; - F2D8FF9B209E2BE68DB49BFA8E42D809 /* BehaviorSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 586E2749D56A094136630B1170197D6B /* BehaviorSubject.swift */; }; - F3128567652CC62E62B1B8DBEEC5A304 /* UIEdgeInsets+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA1421B2932619A7D54A922FC19764AE /* UIEdgeInsets+Utils.swift */; }; - F34391BF37E63D57CEA662EAC7219C4A /* BehaviorRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5CC3401DDE8788C49A2FB401C236B39 /* BehaviorRelay.swift */; }; - F39F0FA7DEC7786370959E557810E16D /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 9CAD66A5B9AB66AEB3319FA797A03C86 /* SDAnimatedImageRep.m */; }; - F49379E8C8E897E12A292823C1C066FB /* ConstraintMakerExtendable.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE87F54785CE5A753ECD3B7635752855 /* ConstraintMakerExtendable.swift */; }; - F4B076723D3EEFEE244EE1009B3CCF28 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7178656096573F8AD8E88526C6863C49 /* MJRefreshBackNormalFooter.m */; }; - F4CEE8AEE1D3CC874439E8E5988CB8AC /* DriveRouteCustomAnnotation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AE70648B4DA4312BD9465EEA78E5683 /* DriveRouteCustomAnnotation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4D242168FD37E186352AFC4C6C7B00F /* SwitchIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19E76A4A9B93AC93EB19D6EE1B74BF22 /* SwitchIfEmpty.swift */; }; - F525906C5A016C296FF10CB143F624BD /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 6897582625B835C822633C449FDD3548 /* SDWebImageDownloader.m */; }; - F5BB2BEFDB9F1EA2A0A168F46096A065 /* JXCategoryTitleVerticalZoomView.m in Sources */ = {isa = PBXBuildFile; fileRef = C15F2F15A6C86BD8CC2F988F189F47D4 /* JXCategoryTitleVerticalZoomView.m */; }; - F5D8728188EC93EA5FAF5CA84A2C3E3E /* SwiftEntryKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 383AE731664CE428798D9444028D70FC /* SwiftEntryKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5E07701094C970A9458F8BFDAB4F3B1 /* BRBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = AC55ED7E828E08DF03D9F36813E44D2A /* BRBaseView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F610D4583B86C6599C47292F1D1AC91D /* UIBarButtonItem+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7843B75D775810205B085DD861C1F03F /* UIBarButtonItem+Rx.swift */; }; - F644D969727A6F6EACA55872BC11C602 /* HistoricalSchedulerTimeConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81B9AEBD43CEE06721B54B6D2E40B3A3 /* HistoricalSchedulerTimeConverter.swift */; }; - F650B6D361BB92D1749DD237C148C25B /* UIButton+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = A9E35A855C73220ADD2A2008219BD61F /* UIButton+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6771DBD2D0EFBDC47030E698BA56780 /* JXCategoryDotCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B9125A3B47E8794D3F0EFB133D96169 /* JXCategoryDotCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6DDBF049BAE62A23772170D51EEEB91 /* UITextView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EE9CEF2C2F5BCD9EFE90ABC09A789C6 /* UITextView+DDCategory.m */; }; - F7869ECB08349199C0FCBC6ACA0DFA89 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 16FBE302620BFE6480BD81F8D2AA07D0 /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F79338C3D732C666311E9A66D3611901 /* JXCategoryIndicatorParamsModel.h in Headers */ = {isa = PBXBuildFile; fileRef = CB822E6C500EE56E8F7B092F27EB2FD8 /* JXCategoryIndicatorParamsModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7E5AE939FBB8BA5BE0E71423C99A9E4 /* AsMaybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1956A59B6F641145AE9B88C7B729CDBB /* AsMaybe.swift */; }; - F7FD608C3219C74CD7C292DD81DF1090 /* ToArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B4B3931D9C0DF301A195D99CA4C3D9D /* ToArray.swift */; }; - F844A55CF6790D853D264312D6F883E0 /* UIColor+JXAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = 980F4BADC38AC667A1001E772CDF612B /* UIColor+JXAdd.m */; }; - F85954F8ECD9E80718B093791EA95425 /* IQUITextFieldView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F35C25DD77F8295C48EFB3A121510443 /* IQUITextFieldView+Additions.swift */; }; - F87C3F12FA754F2BF1068C663D2E8EDC /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = E2D4D8A25707C3D3EAADC58FA161B6C7 /* SDWebImageError.m */; }; - F8A7F261739C12A8135E4A47FFA7772E /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = DE58DC63124BECEF14EFDC17EE2F27EE /* SDWebImageDefine.m */; }; - F8DDC9D4E7FFBE6F0911E2D7A4DC9F80 /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 346A7BA293D6FC8483EC393283E87CE9 /* Queue.swift */; }; - F8F722B95C950969CB8FCA2543BFE113 /* RxCocoa-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 96918143EAEF40C19781D0B668647E67 /* RxCocoa-dummy.m */; }; - F8FF5968423EF71CFA0B71EAC10FBFFD /* DDBaseCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E12638D5B9E77F38BF7335B964AEC62 /* DDBaseCollectionView.m */; }; - F9E6C48FEF11BDA55B335E1060721D74 /* EKColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5CCA099FED76C4F267BD2DF3644DFEA /* EKColor.swift */; }; - FA145D73018E7D2FB142938415DB42E5 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CD57B719C962B526E7559FF4BD48281 /* SDImageFrame.m */; }; - FA398422E4E9153C85204F33651B6414 /* UIColor+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = EACD991BB8E241D3FDD0B4E17F7C7D35 /* UIColor+Utils.swift */; }; - FA46D15B11235046C6234111666D3BBE /* DDDateKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 90E4B8D228959A438B4A4C8F10509AE5 /* DDDateKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA96FDEBFA83DF6F3031728868EC0238 /* DiskStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACB732F84CAA84751166CEAAAD9DCD8B /* DiskStorage.swift */; }; - FA998928C4B0EF64939641E3D8AD0EFB /* KF.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8315FE5AA39135DA77E2D07472BE719 /* KF.swift */; }; - FAA4CBE7A94E748A7BD93AD4585C16F6 /* UIView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = F98CF6CFC81151AD968106D9247DF7FD /* UIView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FABA595A6C8D6A3CC257178E69875D96 /* SynchronizedOnType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FBC1D9B2AD7A1EB1CFEA5A5897EEB8B /* SynchronizedOnType.swift */; }; - FB16503E903E5B60EE15B0DD4D8562D1 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 640049650C3BC0962841E8D6C6A4049C /* NSData+ImageContentType.m */; }; - FB543E6A5F8C2EC92FF45630C6D5F49E /* EKAttributes+Presets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F4F6F9D8F1ADBBAB50B845421B78553 /* EKAttributes+Presets.swift */; }; - FB726649DB4AFB1EF71F4D6F6F4FA5B0 /* NSDate+BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D52CF39101110368F7621562A7D254D /* NSDate+BRPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBC89193D9C95C427AEB8FAAA0184E43 /* ZFKVOController.m in Sources */ = {isa = PBXBuildFile; fileRef = E851E4ACF01D343915A6C5122ADD167B /* ZFKVOController.m */; }; - FBFC887E3133465DDFE6B3D8A52EC67D /* DDTimerSwiftKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FB804492911B7D0F2826748AF43D21E7 /* DDTimerSwiftKit_Private-dummy.m */; }; - FC061D954352F832FBE08C01973F7DF7 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 801E554458FA935FE0EAB7E76939D9E3 /* ResponseSerialization.swift */; }; - FCAFE484DF0EAA99D16FB0739DBF01EB /* DDBaseCollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA6A3CFA3DC5B9298363462334E9391 /* DDBaseCollectionView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCC6D9564C9BB160850216A9ED75491D /* DDBaseTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = B00D3687235637519CE9A162E5BB3AD1 /* DDBaseTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCDEA62D8D608D9431334DF31F267EBC /* CombineLatest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29D4E98A792538E2D480C26BDC1FAD50 /* CombineLatest.swift */; }; - FCED5EA34F470E1DE64CB9C632245922 /* ObservableConvertibleType+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FBE6873B0C89E6BAB94AE9BEDD667CE /* ObservableConvertibleType+Signal.swift */; }; - FD0574A25469F0713B34ED1B682755F2 /* ESTabBarItemContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEA3A07AED3ABF0E987811BE34F3BD03 /* ESTabBarItemContainer.swift */; }; - FD188CF3840B2A11C2D915025A328E66 /* AddRef.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45852B116DAC5E9D5C836CB6D908A7CB /* AddRef.swift */; }; - FD661221071E5188A9549C5D876AEE5B /* ConstraintPriority.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ED7DA4EDAF57C531F5BAE1A4089B0B7 /* ConstraintPriority.swift */; }; - FD70F673A044AAAE0C5AA9739516065A /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = CD08E3FDD80F9FFC9C233F07CB1475AF /* MJRefreshAutoGifFooter.m */; }; - FD7228A6A8B2236D44BE57275510EEAC /* ZFReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DE4B3B27625A65A6880C056D8B39690A /* ZFReachabilityManager.m */; }; - FDE175AAA2CB3652B67AA421E7AF96AF /* IQKeyboardReturnKeyHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECF1923C17ACC43F03AC28982A84D44A /* IQKeyboardReturnKeyHandler.swift */; }; - FE20744885FCBBEFACEA58867A812C6C /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = B85428ACF1CDCD7FAAE71CC6BE1937AF /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFA171B211AC028D0A9375105738BDC1 /* ZFPlayerNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = A334299C71CD0E02377132049A793348 /* ZFPlayerNotification.m */; }; - FFAA74F5A2EF6804BF1496B33FF45C9E /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 709209572360C5C66284AA744CA27028 /* UIScrollView+MJExtension.m */; }; - FFB9E82FF0E210BFEB30F4D221DD476C /* RxSearchControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 073E35FB94CABC121A278062FD177FA4 /* RxSearchControllerDelegateProxy.swift */; }; - FFC821ACD09A9A9A83BAE110BF438784 /* ConstraintLayoutSupportDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD77B65A144AD2D2150F445522144789 /* ConstraintLayoutSupportDSL.swift */; }; + CC55C5B908ADB58120CCC05520A0BFFD /* Key.swift in Sources */ = {isa = PBXBuildFile; fileRef = 640898CF5D692F138157693B51F47F27 /* Key.swift */; }; + CD0270922564959FB09AC07A153B6DC9 /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = F65966031F0AE0AF112AAA5B1829ED64 /* Platform.Darwin.swift */; }; + CD1FBD083AEB95AF2A233A5D251CC860 /* JXCategoryIndicatorBackgroundView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B605E4BC61074F68B9090099824DD74 /* JXCategoryIndicatorBackgroundView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD25427AEC067E2E672CD4FCD03E1C0C /* JXCategoryImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = E46708345A721BE1D4235AB52C88B8B0 /* JXCategoryImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD28B9F3F0DF1EAAFBCCFD3FDFF7E877 /* SchedulerType+SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4A0682B73EADA16C42403C4E10F2A12 /* SchedulerType+SharedSequence.swift */; }; + CD7C21207441D5C25CC975DFF5C24DDB /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F65C8C0533DCFF9A8AF83591B1C66855 /* DispatchQueue+Extensions.swift */; }; + CE17D75F6D1B88F797348229EBAE052F /* CallbackQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = F351DA757BE07CE570A716607D354353 /* CallbackQueue.swift */; }; + CE4C9BD43001835DFA0CCA47681C8ACB /* DDBaseTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B774242E6BB5C48ACAA705B03F995A7 /* DDBaseTableView.m */; }; + CE53DDB87C864CE0B303DD4BB61087FD /* RxNavigationControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF175BCF03100B8F14F9DF4698265BCF /* RxNavigationControllerDelegateProxy.swift */; }; + CEAF6058D42F63FA245DAD43FE4981CD /* UIView+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFA7B46FB60F1694489043FE2328E875 /* UIView+ZLPhotoBrowser.swift */; }; + CEF5ADCAD1251F127AC70054BB17179B /* MJRefreshTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A164CBE2408E7142E5158CE10D83149 /* MJRefreshTrailer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF0542E7E27082F0AE761E78228DEB8F /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = C9A889FED6B708012C5F48904D4C41F3 /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF1B6D7CD5C90B5F543FA2FD2CC74389 /* Reduce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E6DFAFE27EEC553B733AE781B308FDB /* Reduce.swift */; }; + CF382D42FC811F6FF2CD664311E88E5D /* Scan.swift in Sources */ = {isa = PBXBuildFile; fileRef = C097AFF1B8C2C891B31FD8EFD9BC3A35 /* Scan.swift */; }; + CF46E06B619B24CD220401C91AB2FC7E /* KingfisherOptionsInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB422058BCE7D4C81274BB6CDBF11004 /* KingfisherOptionsInfo.swift */; }; + CF6FA0C36CC64F5F75DE9891EA35E3BE /* Date+Dispatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B3A9D01AB4924136619B4FCCBD9A510 /* Date+Dispatch.swift */; }; + CF8D15E322415CC1628A88CB4935CF1A /* BRDatePickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C592E35BF3019AADA6CB853EE49FA09 /* BRDatePickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CFA4B5FE834BF6F5947C854ADC9C5A57 /* EKAlertMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7811454E721A5FD45CC5C7D90661712 /* EKAlertMessage.swift */; }; + CFCCC0B66A4858FC59896A0D0B4111B4 /* BRBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A02B7486D3CD326965C39EBDF255BBA /* BRBaseView.m */; }; + D01491958316B3D143C1F82521420141 /* DDBaseViewModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 817CE321BA9B96C442CFBD690CBD8636 /* DDBaseViewModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D02E869FBC7503DA41EA8292A40085F8 /* EKAttributes+LifecycleActions.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA107A9103958283C24A652CD373427C /* EKAttributes+LifecycleActions.swift */; }; + D04ED0B157FFAD652458CA96D31C61BE /* DDBaseNavigationController.h in Headers */ = {isa = PBXBuildFile; fileRef = D1B3C59A3746CE85515C59617A5A65B6 /* DDBaseNavigationController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D0C34559FC8EDFBB08986FC1F4327956 /* ConstraintMakerRelatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2571F104F558D56AA1643BF2B7EEC96D /* ConstraintMakerRelatable.swift */; }; + D10A97575FC17A740F4AD23FC87961E3 /* BRDatePickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 20B6D10CE1EA2CC1F2289F56B4BA9C52 /* BRDatePickerView.m */; }; + D12A6518AD01C22CBBD148C8FC550D6D /* TextInput.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90CC454C0F2A8E82FC1C8D5EDD95EA2 /* TextInput.swift */; }; + D1381434AA9A73F22A5686775B9BDD03 /* EKAttributes+FrameStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1349DC561D2FF898F5271AF2B441434 /* EKAttributes+FrameStyle.swift */; }; + D14356BF87F9E91736CB650348922BB1 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5125F16F77606E738A76C292174B4074 /* NetworkReachabilityManager.swift */; }; + D1671DAD9BFCD26BD4016BA0C767570A /* DispatchQueueConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF268500FC0ED762949E63422B790739 /* DispatchQueueConfiguration.swift */; }; + D1C81C32A93CCE7A35A72FC1D5FFBC75 /* DDImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 087A44DF367E8FC146EB3959FE9394CE /* DDImageView.swift */; }; + D1CA27FA62FDFD654437AFE802F0FDC1 /* EKWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = F938C730261FE19535211FACD553C164 /* EKWindow.swift */; }; + D1D3FC269DB485011A5C792F187BD964 /* DDToastKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4871D251D7B44725545E4D497262CBA0 /* DDToastKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1F58981CC9B866CA76BD812F0DF5E18 /* BRAddressModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 21C4F5A3DAC4DDD6756FB22ECD673F94 /* BRAddressModel.m */; }; + D2426C96E32377FDA4A68BF4FBB47778 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F952889F3F23D8E918EA06EEB05E9E53 /* Filter.swift */; }; + D269044D982531C2EABA7BD3F34101D2 /* CGFloat+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44A7D816539DB500FF3392D352A22D8C /* CGFloat+ZLPhotoBrowser.swift */; }; + D2ECB40359766055ECC0892B73B90EE8 /* AuthenticationChallengeResponsable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A4F7B8A08F758239FCEF13B69A6CE2F /* AuthenticationChallengeResponsable.swift */; }; + D30295702271BA26222EC0E8D2829E63 /* EKAttributes+UserInteraction.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACF367D2CFC13336195E1A03850DE5E5 /* EKAttributes+UserInteraction.swift */; }; + D3A692A8D6778B0C530C667E0D2645F5 /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D939F5318634975C98B836DD17AC80E /* MJRefreshAutoNormalFooter.m */; }; + D3A748F462205A0FAB377AE166400EA0 /* ImageProgressive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CC3531A68A1843CC5717C76188FFCE1 /* ImageProgressive.swift */; }; + D3BF99356C4350E9C0917D208DDB7BE6 /* ConcurrentMainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46AF650B6387318653732241EE6C7F84 /* ConcurrentMainScheduler.swift */; }; + D3DAA79DECE865BDCE076290194B4033 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 10076D03A2C1594266879172E57A97F1 /* SDDiskCache.m */; }; + D41706C216134FC77605103354F07C42 /* ZLAlbumListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BCBB8FB675A628DC92EFE21CFE1E683 /* ZLAlbumListCell.swift */; }; + D42C4CDC084AB2D2B170F0393AC9BE20 /* NSAttributedString+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 35A827FD3B260942A337B9BB317FEE1F /* NSAttributedString+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D45471D1E2289BEDB132AE8868F21AAA /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 42E1733F0A54462DABFD18A9696013D4 /* MJRefreshGifHeader.m */; }; + D4DE36B575B65B54091CB7179DDE1242 /* EKAttributes+Duration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49343FBE98DEBF78462B1C61642966CC /* EKAttributes+Duration.swift */; }; + D4F67ACDCA6B952008E043750BAC4940 /* JXCategoryIndicatorProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C88241357AD08130EC68C6D6DD210F7 /* JXCategoryIndicatorProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D509C61F07A0066B5BD32F31E7F095F2 /* DriveRouteCustomAnnotationView.h in Headers */ = {isa = PBXBuildFile; fileRef = E991797B63F375369191C4F81C359A0D /* DriveRouteCustomAnnotationView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D54C1EB233C3DFF0AB1C78D665B7A5DF /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 33F547B7B60AE95D9BE75E69263E8212 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D552F57595574A84A82587BF008F32BB /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94A696E6CF4AA261C106289066C18321 /* DispatchQueue+Alamofire.swift */; }; + D591717337E72C406E7C3F0BF9F4907B /* UITabBarController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64E4D00D4327305747EB9C212259DB50 /* UITabBarController+Rx.swift */; }; + D64E70E5473E07879E1629F1173AB6BC /* Range.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B57D2A6BB14FABAC2CB1250A4A956E0 /* Range.swift */; }; + D6696173A60A63EAC3F30D4BBC21C72E /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 97795CE8B6FA13C48BB309F86B8E814E /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6E51D328530E74EBF3DFBA6709DE9D0 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ED17DE16B93FE1EB23A0BBBD8923887 /* UIView+WebCache.m */; }; + D7021695D72DB0DE5E5EEB63D13D5D14 /* DDMALocationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 729ABB23BD1AA8F9CA4D81E5FAEF8E05 /* DDMALocationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D76130AD70A7483771A8051BE486A761 /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 962376F96870BF93D497DC67197B51EF /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D86F0D26E943BB73BBB29356FD203D18 /* ZLAdjustSlider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E2C40F1237C7A4F2125EAD78AEE68F5 /* ZLAdjustSlider.swift */; }; + D87C8DA2C35F94CD5157A6F37F9A9728 /* EKAttributes+PopBehavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBFEDA1148137ADF1E0BD76C7144A1D8 /* EKAttributes+PopBehavior.swift */; }; + D8DDE2D559F66BDDAFAEBD52C6E4176C /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = F9257AB7E37A2115907120E5B17A1EED /* NSBezierPath+SDRoundedCorners.m */; }; + D8FD93FBAC2166F333BA48C4D726B091 /* ZFUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CE667E144223C4F16CCA1E35D992B24 /* ZFUtilities.m */; }; + D9163232B9C9B3F731A0EBFCC2B784F5 /* DefaultIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B0C75E56DF0CA9B77277AFE7D089A7E /* DefaultIfEmpty.swift */; }; + D941B55ACBC7402786A5668FF2548967 /* DDMAMapView.m in Sources */ = {isa = PBXBuildFile; fileRef = 51F629C031E3CF2FB48180D108266F71 /* DDMAMapView.m */; }; + D9608FB125F849D4B3C79BFC4B8023C3 /* BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = C1AAA50E3ECC82DE8B66ABCC558B4233 /* BRPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D968A505BB23746E1C0F0BC941975346 /* NSAttributedString+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 600A1C0385E364EECC0CADEC9529C0B7 /* NSAttributedString+DDCategory.m */; }; + D9835EECA7009F603B7BDB0DA30AC7AE /* Throttle.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1FD2BAD4E1D02181AE2E2D81F6E5490 /* Throttle.swift */; }; + D9AA8B4EA7925F6A775A005760C1E1A6 /* NSObject+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = C4A993DBC2B198CC671EA3E4BE861FD4 /* NSObject+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9B8B43830362EE0C77A55B6CE157ECA /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E7D32E5BF69B7556FCADF853E3231A9 /* UIImage+Metadata.m */; }; + D9DFB73AB4BE6CB973F6F316B2A6A765 /* UIViewArray+QuickLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E1818EA7CE77044E29D069768BD2A2C /* UIViewArray+QuickLayout.swift */; }; + D9F89D4B89BE4417FE5756A8199F073C /* KF.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B58963D08961F381D42EB0456E355AE /* KF.swift */; }; + DA39F13925A217C94F8582009262EAA2 /* EKWindowProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77BBEBE1B50CD7C826254DC3B5932D03 /* EKWindowProvider.swift */; }; + DA4B0B4FD3FA28D628CE74320B65AEA2 /* Dematerialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 936FCA55D6AC3E19A384D8E1AF0FA50B /* Dematerialize.swift */; }; + DAF1846BD3040FD9243541103B091C04 /* Infallible+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15DA3ADBEAC86681642ECC349F4440FC /* Infallible+Create.swift */; }; + DB0A59767308F67501A74778E35B6048 /* Observable+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61B97D6EFAEBABB126F08996452C5C2D /* Observable+Concurrency.swift */; }; + DB15F0057F1CC17F374030B02456DBD6 /* ZFSmallFloatControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = D38ADE555546DCA1DBCFDCF58C1956D1 /* ZFSmallFloatControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB534E0B9BCE28F670003044F0242932 /* NSBundle+BRPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = F73CEE099F6DB5631A42D93B9C41CD3A /* NSBundle+BRPickerView.m */; }; + DB546CEBEB12A61D98A707A776672188 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F00728D7064C5080BED01B0574930D2 /* UIScrollView+MJRefresh.m */; }; + DB5AB25E4F191531FB78518C0731E061 /* GIFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3732C756B9A8F8A504B32D6494F93598 /* GIFAnimatedImage.swift */; }; + DB8E1097EFEC248D83112C45B37D7B88 /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 45BCDD8B42F08E3EA61EFB04D6E071A9 /* MKAnnotationView+WebCache.m */; }; + DB98A6ACF10EAA99B791577C76CB5773 /* Enumerated.swift in Sources */ = {isa = PBXBuildFile; fileRef = A35FBB2AC4CAC09ADCFA5FD239A3DC69 /* Enumerated.swift */; }; + DC05D04D772760CCEE78FFBD245BB1CA /* WKInterfaceImage+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3651E0BF8409EC9EBB8C8115BF0C1727 /* WKInterfaceImage+Kingfisher.swift */; }; + DC2AD54F59773138F1461A45C2F19097 /* ZLPhotoPreviewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F25983DDAD74C7CA9273F2941DCC832D /* ZLPhotoPreviewController.swift */; }; + DC51E04D6E6EA8A8811C3ED28F59C4DF /* UITextView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = B97764B5C39055E3EC18E9F7FFB4EA4E /* UITextView+DDCategory.m */; }; + DC9A6C1233BC9862EB83BD8512A17575 /* Optional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D8B384A69484CA60996D0C597D70630 /* Optional.swift */; }; + DCE67ABE4B977185BFD4A0092DD23C21 /* SerialDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E20129BA89498DA454383EA31532A751 /* SerialDisposable.swift */; }; + DD0D82EA0192E44DA541CEC3B4A673CA /* UIView+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34E024246E0C85234B9C2F4683A12A74 /* UIView+Utils.swift */; }; + DD13D1582CFCE65C448C2B56AB55ADB1 /* DDAudioService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53AACF49D169396199F59562A14A9B40 /* DDAudioService.swift */; }; + DD792E3784D6D144A65A189A78A58428 /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 691F57E326C3DEE81C09881290EF7A0C /* MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD7FD9534175BB8CA05C83AA8BDCF23A /* DDAudioPlayerKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C99EDFB2E551B870D8E8300A27ED9D3C /* DDAudioPlayerKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDF9F1CD51A0B6E3FAEEC690269482E6 /* NSSlider+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = A300462831ECE9BB9DAC511335E5FD95 /* NSSlider+Rx.swift */; }; + DDFE00C961BDCC08086F9939477303CD /* DDTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A19CBEEE4117AAD18E8F494E0ED107BA /* DDTextView.swift */; }; + DE4F489481A1E3AD69973B943DE2E414 /* DDBaseLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 63290D034B47854412A7ADEC135B525F /* DDBaseLabel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE63FE12234373986128740BCD872713 /* Observable+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = 199451E1057EB30B4F6597AE95CA1CC4 /* Observable+Bind.swift */; }; + DEA9C3D6CE995A50A590F7844D364C53 /* ZLCustomAlertProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D2A8B7CE35F9B80F3FE23830A770F95 /* ZLCustomAlertProtocol.swift */; }; + DEAAA0FB6DAC4E8D6E9F37F3FFF7FAE9 /* DDBaseViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CA7E506535DBB32097276C5F234E50C4 /* DDBaseViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF1E1A23A18388D51377D470426F495F /* KFImageRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 271CC52B3DB7767A2547236203540694 /* KFImageRenderer.swift */; }; + DF217CDC17FBC6B0860732A9547F6805 /* ZFNetworkSpeedMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BCF63B64FEF7B8D4CB5390621ACCCE0 /* ZFNetworkSpeedMonitor.m */; }; + DFA46412CF2FE571B31ECD6CC8EEB9BE /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 54FC966BFAF90C012BE6DABE0105D873 /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFF1DB48DB0640CE62267571AB775F15 /* DDAutoUIKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 053827E2F181829512858510033CE315 /* DDAutoUIKit_Private-dummy.m */; }; + E017B4EF323A0EBD732F33B9C92FBD0D /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = DF26E990F49A258AB52A06D13796BBBD /* UIImage+ExtendedCacheData.m */; }; + E01CDA460DAFCC348AFF41C35B802C89 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = FA2025431831AD62BB4AC05FCA005431 /* UIView+MJExtension.m */; }; + E034031C40FE734AB1A4ACF321EEB12D /* RxCollectionViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = C99EFD48AE56A50A5C6B8A95616C2B28 /* RxCollectionViewDataSourceProxy.swift */; }; + E0528E490DB59F03F3D21D2509CC36E9 /* EKContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31D6A3C885FC0DC86BB87846447CDA02 /* EKContentView.swift */; }; + E0535C22C58CFE61C7FC72412989EE7E /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = B93C9B1E9CAE4AA1A81684408EBE7421 /* SDFileAttributeHelper.m */; }; + E07F5D56A6657C9297ACEF8B1E6047A3 /* ZFVolumeBrightnessView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BB4838FDC3AF7A66CA0623B22D68497 /* ZFVolumeBrightnessView.m */; }; + E099D77ED3E1A5F226BBE067F3027382 /* LayoutConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 551315C765C362FE3E5FE52E04073406 /* LayoutConstraintItem.swift */; }; + E0A89DA4868F7CF7A5AACF7765FCBFAD /* SnapKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 57155DB9CE595E8AACB409106F4EC230 /* SnapKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0A97352EFF47010A3449A81255CE5FD /* DDCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DC20CADB7641A0A73E23084922704E2 /* DDCollectionView.swift */; }; + E10D81827E90CAC6A4289F11050C27A9 /* SkipUntil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 608A7E1D20A7A205087553870E508436 /* SkipUntil.swift */; }; + E1415C9189D5B03116F5A45C458E2411 /* ConstraintMaker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90F9FAA765F7B47D959C83CDBA64F581 /* ConstraintMaker.swift */; }; + E145D725BD762800F4C4A91DE1FD6350 /* SerialDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D74D0A422C3B16B8DA4F849EF7E9F8A /* SerialDispatchQueueScheduler.swift */; }; + E1FDB8D42137D8BF8709EE551862079B /* RxCollectionViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9422BCE04EF9FDF7731F727B1871ACC /* RxCollectionViewDataSourceType.swift */; }; + E24B4E923380A82510C81933D8ADEBC0 /* Asn1Parser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5100620B910F7AC35024398B7541BDD7 /* Asn1Parser.swift */; }; + E27EFB8F48312FC0268C6B922BA3474E /* MJRefreshTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 68C11471FE2D8B3FF3169547E7A039C1 /* MJRefreshTrailer.m */; }; + E2D1C8236E08CA248E758FF3BDDD2BB1 /* JXCategoryTitleImageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F8F3F332E659C9CBF1B9165708B4752 /* JXCategoryTitleImageCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2D3345435E9F597C1445F09F5BD5FF4 /* EKAttributes+Scroll.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CF28103E63746143E139DBE4C2F6184 /* EKAttributes+Scroll.swift */; }; + E2EF5387D71F2D5DEC1F9C0FE6026C1A /* EKEntryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8623294854633DE0EFEBC30ECAB902F4 /* EKEntryView.swift */; }; + E30D053236494B7F13FCF9171D8EF69A /* UINavigationController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D0A0350C270DBEAFE5F5B6703D7D716 /* UINavigationController+Rx.swift */; }; + E39D95FED7F76DEE16019CFAD26ED860 /* Single.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8B3DD439BC3748B0A4B65C42D2854B4 /* Single.swift */; }; + E425B1792B00EFB153A9BCAC85B730F4 /* DDViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EF83247660B7B1B045EDC7FE7F20651 /* DDViewController.swift */; }; + E42BF0E600D0189F7F9AD5329D385334 /* DDTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = B68D04C1C21C4D6BE48F329D78E42FA5 /* DDTextField.swift */; }; + E47049584BFDDD695E32A106A44E14E4 /* Amb.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A7B59AAC6E01A3567809323235B2261 /* Amb.swift */; }; + E490E2CF00F53E9A8B51740AA6213D85 /* SnapKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B217CD6894AE8790FEE93BB0B391A0A /* SnapKit-dummy.m */; }; + E52F5D4F79AAA4C07CA8474FEF5294AE /* DisposeBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70CA38B9B302CB892D83B42C9D260996 /* DisposeBase.swift */; }; + E5B3C04F705FCB65441CA1FE35CFC536 /* GCDTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83453B71AAADD3E63823E299371E7B30 /* GCDTimer.swift */; }; + E5CAE8413C26208D9E8ECBD35532F50B /* UICollectionViewCell+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 431E1D05FC37D52831B2B63F11611B8C /* UICollectionViewCell+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5F6C631FE32C41FFA4610E64AFEBEF6 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = A854712807C24CB9DB0126A588D0467E /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E60B45E5647579F76C24F8451C2EB8F7 /* RxTableViewReactiveArrayDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0D16C957D8EA73812F8C94BD9839EC2 /* RxTableViewReactiveArrayDataSource.swift */; }; + E62A2816F9FFAF952C0E47C31B28D461 /* ControlProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18436F4693AEBC2EDEACD10272721DF5 /* ControlProperty.swift */; }; + E62A3E33CD01B815039CCA9622117DC2 /* UIColor+JXAdd.h in Headers */ = {isa = PBXBuildFile; fileRef = B6B2DA1CF7575FFD6CC46E98A83B57D4 /* UIColor+JXAdd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E674B743DA97272AC8135AF21CF22F80 /* KVORepresentable+Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3DD7B37D9361E1A1F0624333F4892D6 /* KVORepresentable+Swift.swift */; }; + E6AAEB8C90F798D2176874B496FAED5B /* ZLPhotoUIConfiguration+Chaining.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2316927F6CBDF5DA591A652E5D3A60F /* ZLPhotoUIConfiguration+Chaining.swift */; }; + E89EA5216E074A8E2073062D8AF5EA40 /* JXCategoryIndicatorLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = A9BC4FEDEC0E2CC03F385735382E96E1 /* JXCategoryIndicatorLineView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8A2CDF5B1D642F2C3225619514140C4 /* EKAttributes+PositionConstraints.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E666189BEFEC43161A351859AECE9BD /* EKAttributes+PositionConstraints.swift */; }; + E8A52F0E687564B42DF8772734F36CFB /* AtomicInt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FF4587CF94C7858297417E9CB2B1625 /* AtomicInt.swift */; }; + E8F5C10BEE66E0A8E67F786EE75C4DE3 /* UISegmentedControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92A1FC1EFAC21F297A057B8E8B2F9F7C /* UISegmentedControl+Rx.swift */; }; + E9466C49123B6DB38997B61FBE1A864C /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 51EBA7400403C8380E5099940E7D57C5 /* SDImageCodersManager.m */; }; + E94B3EE66EBD1003468410DFEEBCA688 /* ZLPhotoPreviewPopInteractiveTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 274B5258F7A5EE570584968533AA7BFE /* ZLPhotoPreviewPopInteractiveTransition.swift */; }; + E97249855F88A9C0CF8C00620F730480 /* RxRelay-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 36BC95E1B7FB0EB339BF33169EA412F1 /* RxRelay-dummy.m */; }; + E9D877C0FC7A2087F6B5FEC67FFD4CFE /* JXCategoryView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BEDC1C283046864D0F120D249EDD3CA /* JXCategoryView-dummy.m */; }; + EA20E7451CE67E411DAE038C6EE49472 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = DA20B67B6F3CB9D1D49DAD9403C65C47 /* SDImageCoderHelper.m */; }; + EA26E753C4C87170AC67E76E0D26D91F /* NSTextAttachment+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11E85C9E1411241C96F207B5A7772A0D /* NSTextAttachment+Kingfisher.swift */; }; + EAB461EDD0B86B22F8743038A0078FA9 /* UIImage+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E6EAE5322A539E53BFFE55A0BD6C44D /* UIImage+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB34415A0817B6F0EA97C89773A6FB99 /* ZLEditImageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9366F2FA1CA95C3FB0D4140F61F80953 /* ZLEditImageViewController.swift */; }; + EB61A88EEE4FBE33623908DAA55492EA /* UIButton+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = E547F94527C61B623B7692BFFA58A7A7 /* UIButton+DDCategory.m */; }; + EB711E86947E555F69122716590BEDA3 /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D20DB404ABAFE99247C3AB55859F9AC /* RedirectHandler.swift */; }; + EBCEE8F5579114E5F617B63B87CF4B48 /* UIView+QLContentWrap.swift in Sources */ = {isa = PBXBuildFile; fileRef = D24C48658D0AA1DFDAFF96989D396D50 /* UIView+QLContentWrap.swift */; }; + EBD415C26D6A34A0BD3DC50D43856960 /* ZLAnimationUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = E256C0DF76156201C11546716B92F885 /* ZLAnimationUtils.swift */; }; + EC2B3804DBD7244270FE3CBB4076AE22 /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C2A9E7C637231DC6FE721DBDB627E4B /* Bag.swift */; }; + ECBF5772C6929483A777D2ABF40AED8E /* DistinctUntilChanged.swift in Sources */ = {isa = PBXBuildFile; fileRef = 373509CBF26220BD6D3A6892AFA34762 /* DistinctUntilChanged.swift */; }; + ED1968185CE8C94B18C6E5EF354022FE /* PrimitiveSequence+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60B5E16461A4E42F463FABB5D52B974B /* PrimitiveSequence+Zip+arity.swift */; }; + ED3F8719AE0C4D9464C372D0CB5D2E14 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = D45E1EAE02C54199896AF1626C1785EF /* SDInternalMacros.m */; }; + ED9F225882E966D67FD120629EE2B926 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 73FBC91F0B352BDC2DC1B1F28A44CFC3 /* SDDisplayLink.m */; }; + EDB30B0D5165C527F66FC84C8B32C47F /* ObservableConvertibleType+Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62B1828F05879B6F721502FE2006F6EC /* ObservableConvertibleType+Infallible.swift */; }; + EDB63409EB6B2D945EB157D8A6CB1E4D /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = F642166314CD6308CA3D4F6BA47E2F1E /* MJRefreshBackFooter.m */; }; + EDC4065EC27A50BCC6B13FC3ACD00185 /* JXCategoryTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F1A884A0A646C544F2F096D150AD492 /* JXCategoryTitleView.m */; }; + EE379B4848EDB17BE1C4D32E97B930A8 /* ZFPlayerView.h in Headers */ = {isa = PBXBuildFile; fileRef = D878230AD5A542C60F6DDE5CEBD1B58C /* ZFPlayerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE4F330BFC8B694E49B714C8A93CC916 /* RxTextStorageDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 113C279E26EF1A354F6C5903C633DBFB /* RxTextStorageDelegateProxy.swift */; }; + EF2F9EACC00057E58F231158C65E17F9 /* UIBarButtonItem+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 7118AE0E0A3BCFA850CB5C2126039708 /* UIBarButtonItem+DDCategory.m */; }; + EF5F3CF8BBFDE4BEA2A2380A503569E5 /* JXCategoryBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = D4AF302D9A9BB92C286E7CEB1C01C8B4 /* JXCategoryBaseView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F001B72EF2941419AF8310B30D8FF42C /* IQTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6D8C297B18F3C8BA6376EBBC8438357 /* IQTextView.swift */; }; + F0133CE9DC3178B35F2AF1F29D535F7F /* URLSession+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 498024A42237B97424CD53452A1785C8 /* URLSession+Rx.swift */; }; + F07D944FB9EE7D69319AEA7DF8818876 /* JXCategoryNumberView.m in Sources */ = {isa = PBXBuildFile; fileRef = CBDB9A6ED22F3A355A3D6DED3FD9B36B /* JXCategoryNumberView.m */; }; + F0B4282A102ACF883C5664EE6EFB2081 /* ZFSliderView.h in Headers */ = {isa = PBXBuildFile; fileRef = DAA467CA7CA1AA41758A2D239A606EEB /* ZFSliderView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0BFF5608C4202CA0453E53F57D91514 /* DDProgressHUDKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 72EC0B2A42D1B3D51A37987D533572E8 /* DDProgressHUDKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0F38230060D730610F5815650288F1A /* DDZFPlayerKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ECEE0571C90DC8C4C480210DE1824E8 /* DDZFPlayerKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F12EB53C336660D086638E8CD56C67AA /* UITabBarController+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 62AD7A36A987E5118EC1E481B7C276BD /* UITabBarController+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F17BED9A66F08C6647EB4CCED0A8EA8C /* DDBasicControls.h in Headers */ = {isa = PBXBuildFile; fileRef = 219C47F2ACA47B1DE4E1A5C4AD6F8C18 /* DDBasicControls.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F19174B6F08BC6807F7168938A624447 /* NSObject+Rx+RawRepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0B0C6CF37E5637050400DE2181AC707 /* NSObject+Rx+RawRepresentable.swift */; }; + F1B8D62196F1AEB3E7F0D9B1EFE4FD15 /* ZFPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = DD43A92F9FDDBA8FCF0D0F150900643C /* ZFPlayerController.m */; }; + F1CD6661FAFABF16CD930C30A0566C47 /* JXCategoryDotCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 378BF1E8082A530D9DC6DF78EA482EB5 /* JXCategoryDotCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3128567652CC62E62B1B8DBEEC5A304 /* UIEdgeInsets+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 808EF99244BC687EF8D40D1BD719230D /* UIEdgeInsets+Utils.swift */; }; + F3297C24B7F6D6AA6679633470AFD387 /* DDBasicControlsKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AB2935CB95B35B0475E94EC4BF8753C /* DDBasicControlsKit_Private-dummy.m */; }; + F39F0FA7DEC7786370959E557810E16D /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = E5F93560FC2C7A8AA71FC772667FF1A3 /* SDAnimatedImageRep.m */; }; + F4B076723D3EEFEE244EE1009B3CCF28 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B41E04BC8FD317EF74E8E6A776368CC /* MJRefreshBackNormalFooter.m */; }; + F4BA1100C7409E860A413BC0F2B3AEA4 /* DDBaseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E73E2323A80B4111342503B24A16CCB /* DDBaseModel.m */; }; + F4CEE8AEE1D3CC874439E8E5988CB8AC /* DriveRouteCustomAnnotation.h in Headers */ = {isa = PBXBuildFile; fileRef = CDA2C01C5C9E53D268788C255E2BC642 /* DriveRouteCustomAnnotation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F516F3D6A4D4372838C9043170D9D653 /* DDBaseImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = B2A4AC94A106CB444D55A3070F70FBD2 /* DDBaseImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F525906C5A016C296FF10CB143F624BD /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = AB9A7ED70E056014316D5B9946FD9C58 /* SDWebImageDownloader.m */; }; + F54C37C891B435E2517D3BF4070EA4E6 /* InvocableScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88C0FDBDD3131A48271ABA3AC630739F /* InvocableScheduledItem.swift */; }; + F5AE44F2D9AB1C11741C1DE2AB792979 /* ConstraintLayoutGuide+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6AD4B383AA40248F0A4DCFB58420DD4 /* ConstraintLayoutGuide+Extensions.swift */; }; + F5BB2BEFDB9F1EA2A0A168F46096A065 /* JXCategoryTitleVerticalZoomView.m in Sources */ = {isa = PBXBuildFile; fileRef = A4FACBB3E34B686DB4BCAF719C0DE592 /* JXCategoryTitleVerticalZoomView.m */; }; + F5D8728188EC93EA5FAF5CA84A2C3E3E /* SwiftEntryKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 46105430EB9B440A460AC3C9BC90A89B /* SwiftEntryKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5E07701094C970A9458F8BFDAB4F3B1 /* BRBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B1F32902B47B02DC2AC38B100BD02E9 /* BRBaseView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5F6F5A843B2EDC770A466CBA835F1B1 /* DDBaseCollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = A2751AA5A22F3247BC0019FA460876B3 /* DDBaseCollectionView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F610D4583B86C6599C47292F1D1AC91D /* UIBarButtonItem+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 172CA6C2DE6F83236959926EFB63D859 /* UIBarButtonItem+Rx.swift */; }; + F6771DBD2D0EFBDC47030E698BA56780 /* JXCategoryDotCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B36E9C9B0E261079E960880B35A0E07 /* JXCategoryDotCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6C5AC35B9ECC483F45F294038966103 /* PublishRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA54A3F1CE6E705C6D6B771F178C2C1B /* PublishRelay.swift */; }; + F6CC665ECC6B5DC553D7E3F19EAD0C65 /* UIApplication+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C0B12F8031E29824D61B55627480C97 /* UIApplication+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F731641647F916F19E65AF5641896E06 /* Zip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8234D79DB09F470ABBDD887A72BA9570 /* Zip.swift */; }; + F7869ECB08349199C0FCBC6ACA0DFA89 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = FAAFE1127015814792CD62384937C84E /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F79338C3D732C666311E9A66D3611901 /* JXCategoryIndicatorParamsModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 19A66243AD3D9485E9C5C83ED1938C2B /* JXCategoryIndicatorParamsModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7C6CD8D89208E53B6AFF9418C031654 /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E722947585C05E002BBAABE96FCC6B6 /* Bag.swift */; }; + F844A55CF6790D853D264312D6F883E0 /* UIColor+JXAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C85CE2B73266F48DD5943571B1513DD /* UIColor+JXAdd.m */; }; + F85954F8ECD9E80718B093791EA95425 /* IQUITextFieldView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C0D52FFA4662E72AE3483658BCA04A5 /* IQUITextFieldView+Additions.swift */; }; + F87C3F12FA754F2BF1068C663D2E8EDC /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = 30DCE5AC180C302B663E5373ADBD6769 /* SDWebImageError.m */; }; + F8A7F261739C12A8135E4A47FFA7772E /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AAF8AB7F98E7FBEFBA7A8185B481935 /* SDWebImageDefine.m */; }; + F8D7F2DD638C3D575DFEBDCF58514868 /* NSURL+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D3AD7C118DCCD7B7B303F30C66BA970 /* NSURL+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8DDC9D4E7FFBE6F0911E2D7A4DC9F80 /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 206578216F1E192490699C70AAEB7632 /* Queue.swift */; }; + F8E8481DC501D1D03DAFCE40C64C4E09 /* Delay.swift in Sources */ = {isa = PBXBuildFile; fileRef = F36B19F3BB62251835321071E1D44A0A /* Delay.swift */; }; + F8F722B95C950969CB8FCA2543BFE113 /* RxCocoa-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 318C619A33D0896D66A964DC0D9550F5 /* RxCocoa-dummy.m */; }; + F963C2EF8D3C0FF9A4BF1B11E6D584CE /* OperationQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 844B14AFA346AEC662C06514D3F2909E /* OperationQueueScheduler.swift */; }; + F997BA7304435360663ACF8799984DA4 /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFB14E26932DD42ECE2B3DF40655D499 /* ConstraintDescription.swift */; }; + F9E6C48FEF11BDA55B335E1060721D74 /* EKColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D69FE516AFF4FEDAA283BC7EA352AA0 /* EKColor.swift */; }; + FA145D73018E7D2FB142938415DB42E5 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = ACA9D816A5BFFC71D3DAAEE9BB33A387 /* SDImageFrame.m */; }; + FA398422E4E9153C85204F33651B6414 /* UIColor+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78EE8C2F0DC5558D2105E1033F631FAC /* UIColor+Utils.swift */; }; + FA46D15B11235046C6234111666D3BBE /* DDDateKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 00ACAF1649907249C4616F56A9E777CE /* DDDateKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB16503E903E5B60EE15B0DD4D8562D1 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 415712A434FFF7D19381559A03540D32 /* NSData+ImageContentType.m */; }; + FB185693FC50284088613D45DF3252CE /* Box.swift in Sources */ = {isa = PBXBuildFile; fileRef = 364384CF1B6BAFAF34AFAC6D64A0B2D7 /* Box.swift */; }; + FB543E6A5F8C2EC92FF45630C6D5F49E /* EKAttributes+Presets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AB2F590A429D7BB169C7BD4FCE4F86F /* EKAttributes+Presets.swift */; }; + FB726649DB4AFB1EF71F4D6F6F4FA5B0 /* NSDate+BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = F61E032198739A4870C53D72D9AD0BE7 /* NSDate+BRPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB93BFD463E794368CF501B065C31034 /* UINavigationController+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 94F80A165C2824F1820EAF58C60CFB22 /* UINavigationController+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBC89193D9C95C427AEB8FAAA0184E43 /* ZFKVOController.m in Sources */ = {isa = PBXBuildFile; fileRef = 99CE58B9ABC04158905A41A15EDF0313 /* ZFKVOController.m */; }; + FBDCDDC1AD0788E6439EA03992F1ECE4 /* PublishSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 227C901806BEBB3B2BCE64C2FAFC82DA /* PublishSubject.swift */; }; + FBDFCD081BBCFC13948DD0197E13F073 /* UITextView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = DCB224F266E399DCEDEDC6891CABD5F2 /* UITextView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBFC887E3133465DDFE6B3D8A52EC67D /* DDTimerSwiftKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E972F07E22D9205AFB655E75709F394A /* DDTimerSwiftKit_Private-dummy.m */; }; + FC061D954352F832FBE08C01973F7DF7 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = D811070CCA6CA50FC7CAA836707267AB /* ResponseSerialization.swift */; }; + FCE0195D7162767F6AC4D175B13F24E7 /* Kingfisher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 900AF2390E6431427C998DCE7EFB2624 /* Kingfisher-dummy.m */; }; + FCED5EA34F470E1DE64CB9C632245922 /* ObservableConvertibleType+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD6684E1FA8C54AFC92D5FB4D158832A /* ObservableConvertibleType+Signal.swift */; }; + FD0574A25469F0713B34ED1B682755F2 /* ESTabBarItemContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5AD2886EEC92A41102AFA180454BE80 /* ESTabBarItemContainer.swift */; }; + FD70F673A044AAAE0C5AA9739516065A /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = A865D99D9F7E97AA7DF4420835BC98B1 /* MJRefreshAutoGifFooter.m */; }; + FD7228A6A8B2236D44BE57275510EEAC /* ZFReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 590F4DBBFD1721BB98FCC7CD15CC5D52 /* ZFReachabilityManager.m */; }; + FDE175AAA2CB3652B67AA421E7AF96AF /* IQKeyboardReturnKeyHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AFBA4821317DD2FFE3A0D4390AF1848 /* IQKeyboardReturnKeyHandler.swift */; }; + FE20744885FCBBEFACEA58867A812C6C /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ACD19B87346CDED4320D92E05273EC5 /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE669681BDBF41AE3F0736ABE3CF6C05 /* UINavigationBar+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CAC48F6B20494CE156685ACBB595423 /* UINavigationBar+DDCategory.m */; }; + FEBB46CA0C8F7DD486C7E979531DA4E3 /* Timer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41AF1F2AF9D17DF44C12C7DD6B6A5117 /* Timer.swift */; }; + FECCBE261F33AEC088A20F087809AF6E /* UIViewController+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = CA6DFF43188781594F72C45869D3D810 /* UIViewController+DDCategory.m */; }; + FFA171B211AC028D0A9375105738BDC1 /* ZFPlayerNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E915487FBA27FB58B360BD2274EE32D /* ZFPlayerNotification.m */; }; + FFAA74F5A2EF6804BF1496B33FF45C9E /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 2986CDC423DAB128C688D13C96B5315E /* UIScrollView+MJExtension.m */; }; + FFB9E82FF0E210BFEB30F4D221DD476C /* RxSearchControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26C02A007CB73331CC3CC0B9F14690D2 /* RxSearchControllerDelegateProxy.swift */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 05A718EB8A330BAA37885CEB8E25B35B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6056870867CC4728BCEF2E5EBDD1DCB3; - remoteInfo = "DDMAMapKit_Private-DDMAMapKit_Private"; - }; - 0730CC7866993FF8F9AFFAE9715CB307 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA849029E6A899F45F613165943A6C68; - remoteInfo = DDDateKit_Private; - }; - 125F73EE576FF11E4B3BF53FD411CE41 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; - remoteInfo = "AMapFoundation-NO-IDFA"; - }; - 12C92AE01462BC4A43972FDC9A4E9750 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D505645C3F99EB1E8B6529D64D2C3E1C; - remoteInfo = BRPickerView; - }; - 137DE7DEC8EF22EFCC9853183A1D0314 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F1379598302C9160590B3650C10E1A5; - remoteInfo = "AMapSearch-NO-IDFA"; - }; - 16C337DE09945517C18A666A0A4B8170 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2160840D78FCB958CABE1B88300E38C5; - remoteInfo = "AMapTrack-NO-IDFA"; - }; - 1885E6266BD73E31A7E0607EC13D1A0E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D; - remoteInfo = Alamofire; - }; - 21C7655DBC6F648850C86B4DC521E22E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; - remoteInfo = "AMapFoundation-NO-IDFA"; - }; - 227731D4F5073A8E951B1DBA77A3D0CC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4BD4E22D3419D68A85BDD6119CB37C6C; - remoteInfo = "AMapLocation-NO-IDFA"; - }; - 2458C9662E756CEB6AB3CFA32E12BC90 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; - remoteInfo = DDLogKit_Private; - }; - 25EC59D9D98A444257F82EDC57251855 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3F83465BA81F6E581B3A431642D2992E; - remoteInfo = "ESTabBarController-swift"; - }; - 2724C4A0BC56D0C0C3EC266744776AA2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CFF5B7CDF57A32781D2AD4CC98E95B29; - remoteInfo = DDToastKit_Private; - }; - 28A24A3CFA0E3C9B881E43FCF69C9A31 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E94C558142469C11984D67CA883BAB1F; - remoteInfo = "AMapNavi-NO-IDFA"; - }; - 2AF77DDC770F5B5B41240E66B9E86CD0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 387C7767E705FE68450F97CBA4348CC0; - remoteInfo = DDProgressHUDKit_Private; - }; - 2BAD665495BC167915E2954FD558C60C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; - remoteInfo = Kingfisher; - }; - 36DAD848ED5CB9505CA320C3916638F6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5FB6AB0A09E7A2F2BE11AD6BAEFD9AED; - remoteInfo = JPush; - }; - 3A6B1B949EE097BEAC5A63F83C128D3A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 035D1842293C4AA08F442FFD899F7F28; - remoteInfo = DDControlsKit_Private; - }; - 3A7C3203B0BE54E7C29C0C142F475C9B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2FAF03761A44702490259F857A848B42; - remoteInfo = ZLPhotoBrowser; - }; - 3B283DDFA0D6ACA1656F4BAD8F338BF1 /* PBXContainerItemProxy */ = { + 015FBD41600F70BC7DC1549EA3B9F2BB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; remoteInfo = RxSwift; }; - 44ED9AED48E5FA6252592B44EFB53D91 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FEA6FF0588A91CCD972EDCD698B85647; - remoteInfo = SwiftEntryKit; - }; - 465712AA7A92B820353DC8784D57ACEE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 92A1C13902E7ACDA3ABB5BA1FEACC86C; - remoteInfo = SwiftyRSA; - }; - 466FB97684F0A608F3587C8D1AF2CD8F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BFED7668E8D0960F3873C9C1329EB63F; - remoteInfo = DDColorKit_Private; - }; - 47C9B124B80F514FD5621A1FCF965631 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53463808DD395EFE0C9E0CDCB79A6C0A; - remoteInfo = DDAutoUIKit_Private; - }; - 54787061518D3E2801C615FEF8F6D033 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A8B712B20F60AB02004557B884A28FD4; - remoteInfo = DDUtilsSwiftKit_Private; - }; - 5485D68A1B2A6F78F406693DA61FA8B1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B490E7485944099E16C9CBD79119D1D4; - remoteInfo = IQKeyboardManagerSwift; - }; - 5948499A9A0340522F14D2A38DAC80C1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4622BFEF3DC16E8BD15EEFC30D4D0084; - remoteInfo = RxRelay; - }; - 5A63985DC51703F223290FA5E891DC1A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2160840D78FCB958CABE1B88300E38C5; - remoteInfo = "AMapTrack-NO-IDFA"; - }; - 5ACDCE47B8CEA8DE395B006542C6B317 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; - remoteInfo = RxSwift; - }; - 5CCCFAA6803B6D57CFD31E46716F93EA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6868056D761E163D10FDAF8CF1C4D9B8; - remoteInfo = MJRefresh; - }; - 691073DAD950E06A82917B1346CE53BE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B68A4B40517CF9B14050FA0A4A618B04; - remoteInfo = DDNetworkingOfAlamofireKit_Private; - }; - 6C5E9266A1756932861307725E3E0279 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D504B99928659EA67A1C3A9E981EB8FF; - remoteInfo = JCore; - }; - 6D8F3621032724713B1B6D1F43C944B5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; - remoteInfo = Kingfisher; - }; - 6D93DCB38361D2D4EFAB1178073F92A8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4BD4E22D3419D68A85BDD6119CB37C6C; - remoteInfo = "AMapLocation-NO-IDFA"; - }; - 6DB04555069F7BA6277D2CAD7A381DF7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8BEAFAA726C1965864B79B4B441AA513; - remoteInfo = JXCategoryView; - }; - 718BC7F1752EEB5AC062564B125B47E9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 609276B985CD7549B9F1DEE4969208FF; - remoteInfo = JPushExtension; - }; - 7581E968FBF954223C53C823B99ED66D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 19622742EBA51E823D6DAE3F8CDBFAD4; - remoteInfo = SnapKit; - }; - 7D02AE2C00D38AA0EAA944E3190FF257 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2864923095274ACF5E5F99312F360AEB; - remoteInfo = DDZFPlayerKit_Private; - }; - 7D6B9FD754B53541CE2AFFF77E695840 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; - remoteInfo = DDCategoryKit_Private; - }; - 80F671E327B7FC63B1F69A2F5CA6EA61 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; - remoteInfo = DDCategoryKit_Private; - }; - 83B7A83B569670CA446315839D2ECDFA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; - remoteInfo = DDLogKit_Private; - }; - 844D87BC1CC75F93ECFAF11CEEB4F791 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 19622742EBA51E823D6DAE3F8CDBFAD4; - remoteInfo = SnapKit; - }; - 8F76BC2B7FFF85C20B8D2EC6EBCB2EEA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0D4DC618BC2D969E8743E01C79FFB7BD; - remoteInfo = DDTimerSwiftKit_Private; - }; - 9321BD25C34DE3A27879C0B320E73137 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; - remoteInfo = DDLogKit_Private; - }; - 96C054883BF771C38255E374653E3F8B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 477926D6FB1DCEFB352517A19636405D; - remoteInfo = DDWebImageKit_Private; - }; - 9AF7B346536AAC3D966FA1EAB313C11B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D504B99928659EA67A1C3A9E981EB8FF; - remoteInfo = JCore; - }; - 9CC72F880FEC87F0963E8E45200A0CC1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; - remoteInfo = "AMapFoundation-NO-IDFA"; - }; - A2171A808A18DF5EA103FB3D8FF3F438 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D; - remoteInfo = Alamofire; - }; - A27C38FB0FED830931FDCC6453DBCDD8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; - remoteInfo = DDCategoryKit_Private; - }; - A43C104AB0C55C08E638F779377275C1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 087B100C5691B6A3C04A45198E6C32F6; - remoteInfo = DDBasicControlsKit_Private; - }; - A63D196986F0642D2A9E29052785B731 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B41F58F2856AB275B4CF75F359937653; - remoteInfo = DDMAMapKit_Private; - }; - A770EC2249A0E57D88FFD4C47356E84C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F8AE53003F66B148774CFC6EBDEB9425; - remoteInfo = DDPersistenceKit_Private; - }; - A99610F5D93EFED804FBE3C2705EEB88 /* PBXContainerItemProxy */ = { + 045D63BC52AB8E117AC62EE7F1BC79FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6; remoteInfo = RxCocoa; }; - AAC9064C436CD3E6F06EAFBACBC348DC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C23965029860967865B3429B5E29092; - remoteInfo = "DDBasicControlsKit_Private-DDBaseViewController"; - }; - B67D2CEC356CF42F1C0CE70ACAF6CCF4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; - remoteInfo = "AMapFoundation-NO-IDFA"; - }; - BAD0E3C994C7BDD41C219BC3DF3EF909 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; - remoteInfo = RxSwift; - }; - C1F125237D2E8503BA057A60A9E2E09A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E94C558142469C11984D67CA883BAB1F; - remoteInfo = "AMapNavi-NO-IDFA"; - }; - C60C38A7A2B3D2689C1FBB3D8F4FAB4C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; - remoteInfo = RxSwift; - }; - D00B99190052C315DAE460387F3BBC49 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; - remoteInfo = DDCategoryKit_Private; - }; - D19511B04E78449AC8233B9306EB0B96 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F1379598302C9160590B3650C10E1A5; - remoteInfo = "AMapSearch-NO-IDFA"; - }; - D3D39F48B22B32B2283F34D5365484CF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E72BE4C94039A951B47CCC942F6B4B8F; - remoteInfo = DDAudioPlayerKit_Private; - }; - E05972E4712FE667187224674F62B1FB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; - remoteInfo = "AMapFoundation-NO-IDFA"; - }; - E1E5E0BCF078D51EE043810F70618EBD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8F3F4D8426620E7E4A06FE4BCDB96FDE; - remoteInfo = DDFontKit_Private; - }; - E9110B436EC146DD71A1A3B4BE787D1C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; - remoteInfo = DDLogKit_Private; - }; - ECC2A315C740CC29896569D3F6772F43 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 087B100C5691B6A3C04A45198E6C32F6; - remoteInfo = DDBasicControlsKit_Private; - }; - F21C6064C80A3543028B8F08D7471A4C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4622BFEF3DC16E8BD15EEFC30D4D0084; - remoteInfo = RxRelay; - }; - F6614369B0C6062C3AD3C7151E9ABC17 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4BD4E22D3419D68A85BDD6119CB37C6C; - remoteInfo = "AMapLocation-NO-IDFA"; - }; - F78E3DF17056D351B8524E83F5CB614B /* PBXContainerItemProxy */ = { + 0B79596FB6C32D1D9ACA4156857266ED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 4A68CFD979D413A619DF631BB121D98F; remoteInfo = Bugly; }; + 0D6DD0FDD88A476027E1C374F1FFD0EA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D; + remoteInfo = Alamofire; + }; + 0E3A83915BBE2E87BB7961878AE912E6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8F3F4D8426620E7E4A06FE4BCDB96FDE; + remoteInfo = DDFontKit_Private; + }; + 0F33851B83ABBD42E04A133F46F266D1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E94C558142469C11984D67CA883BAB1F; + remoteInfo = "AMapNavi-NO-IDFA"; + }; + 1338E24FB217F31BCA423998CDCE1ECD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA849029E6A899F45F613165943A6C68; + remoteInfo = DDDateKit_Private; + }; + 13428DC2845B520BB2655812F38453D1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; + remoteInfo = "AMapFoundation-NO-IDFA"; + }; + 14F5804C95FF79B0A06A92D561D756EC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 19622742EBA51E823D6DAE3F8CDBFAD4; + remoteInfo = SnapKit; + }; + 159C85AE33B7CD08DA491124AA71975D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; + remoteInfo = DDLogKit_Private; + }; + 299D2CACE162A8C176078F35801091D5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D504B99928659EA67A1C3A9E981EB8FF; + remoteInfo = JCore; + }; + 31A39EC21D549D5059C6E473B11B3EFB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F1379598302C9160590B3650C10E1A5; + remoteInfo = "AMapSearch-NO-IDFA"; + }; + 39A1B1DFB7B9C71099E51E176A384C10 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; + remoteInfo = Kingfisher; + }; + 3D8C01DEC7CD62EA27DDDCF0672E151E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D505645C3F99EB1E8B6529D64D2C3E1C; + remoteInfo = BRPickerView; + }; + 487430702D09E26B7FFDFB9589D778AB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 609276B985CD7549B9F1DEE4969208FF; + remoteInfo = JPushExtension; + }; + 4965F6D5AEFC1323470C72EADB89CC04 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 087B100C5691B6A3C04A45198E6C32F6; + remoteInfo = DDBasicControlsKit_Private; + }; + 4B000CB7708AD1655F95962021241FC7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E72BE4C94039A951B47CCC942F6B4B8F; + remoteInfo = DDAudioPlayerKit_Private; + }; + 5A322D45A943436DC70E747740A5A0AB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E94C558142469C11984D67CA883BAB1F; + remoteInfo = "AMapNavi-NO-IDFA"; + }; + 5B3DC89457BE56128A2E3C7E8461EB42 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 19622742EBA51E823D6DAE3F8CDBFAD4; + remoteInfo = SnapKit; + }; + 5C8C50151282B174AA6E3842FE8A6564 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 92A1C13902E7ACDA3ABB5BA1FEACC86C; + remoteInfo = SwiftyRSA; + }; + 5C9295ACB2FEED5B934D244BC8D962E2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2160840D78FCB958CABE1B88300E38C5; + remoteInfo = "AMapTrack-NO-IDFA"; + }; + 5D2ABA623096D340B9CB503FCC43E0A0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; + remoteInfo = RxSwift; + }; + 5FC3216C3D3F40B3317278C43F80EDE3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B68A4B40517CF9B14050FA0A4A618B04; + remoteInfo = DDNetworkingOfAlamofireKit_Private; + }; + 65749D3A36E5EAD58B470F9C9E4A6057 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4BD4E22D3419D68A85BDD6119CB37C6C; + remoteInfo = "AMapLocation-NO-IDFA"; + }; + 721F08DF7ACEB3F0925F0D29B0FEC711 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B41F58F2856AB275B4CF75F359937653; + remoteInfo = DDMAMapKit_Private; + }; + 734C0F5ABD6483E28F14083BCFAF4FC3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4BD4E22D3419D68A85BDD6119CB37C6C; + remoteInfo = "AMapLocation-NO-IDFA"; + }; + 75827B1368D4DDADE9A2E16515DC17E6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2160840D78FCB958CABE1B88300E38C5; + remoteInfo = "AMapTrack-NO-IDFA"; + }; + 758553AF0D41A48A2618EAEFACF8BDFC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8BEAFAA726C1965864B79B4B441AA513; + remoteInfo = JXCategoryView; + }; + 773BE81536F20097DE440C7A10B32315 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; + remoteInfo = "AMapFoundation-NO-IDFA"; + }; + 7CF1767C347E123E6F80DEF22E23BEAF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 53463808DD395EFE0C9E0CDCB79A6C0A; + remoteInfo = DDAutoUIKit_Private; + }; + 7D9E0E1B6F2E1EA0CCC7A9501E2BC35C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FEA6FF0588A91CCD972EDCD698B85647; + remoteInfo = SwiftEntryKit; + }; + 83A6961C29F7570EE9CBEBB95EB54070 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 477926D6FB1DCEFB352517A19636405D; + remoteInfo = DDWebImageKit_Private; + }; + 8576659F21F4BBBCACA0C3DB3DCBC719 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; + remoteInfo = "AMapFoundation-NO-IDFA"; + }; + 883D014A196A70E8EF48AEB15791B6E7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0D4DC618BC2D969E8743E01C79FFB7BD; + remoteInfo = DDTimerSwiftKit_Private; + }; + 88477F2EB1A08579C2E0A4EAB1E9FF5D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F8AE53003F66B148774CFC6EBDEB9425; + remoteInfo = DDPersistenceKit_Private; + }; + 8AC02A1EBAC4BC5653413FB3DE7D8615 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2FAF03761A44702490259F857A848B42; + remoteInfo = ZLPhotoBrowser; + }; + 8D2373BDFB9F2025653FA46380D25938 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; + remoteInfo = DDCategoryKit_Private; + }; + 9B0E4098CA7503090E72368B37353004 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BFED7668E8D0960F3873C9C1329EB63F; + remoteInfo = DDColorKit_Private; + }; + A320A6D4B9BCA31A4F781D1F1BFF3AAC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 035D1842293C4AA08F442FFD899F7F28; + remoteInfo = DDControlsKit_Private; + }; + AB82569C7505F44BF2330AB3702C60EF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F1379598302C9160590B3650C10E1A5; + remoteInfo = "AMapSearch-NO-IDFA"; + }; + ADBE7C78C85830CC4D653503722CE3DD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; + remoteInfo = "AMapFoundation-NO-IDFA"; + }; + B237C651CAFF3574BA1CDEEF22398F8B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5FB6AB0A09E7A2F2BE11AD6BAEFD9AED; + remoteInfo = JPush; + }; + B31AC466EE5DE11662D36ABF8CDBBBAA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; + remoteInfo = DDCategoryKit_Private; + }; + B4C343F1E3CBE4801D1CD99896EC56D7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D; + remoteInfo = Alamofire; + }; + BB28D366DA34BB004C000DE74A903425 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4622BFEF3DC16E8BD15EEFC30D4D0084; + remoteInfo = RxRelay; + }; + BD3E16F9C982AAD2A266EE08BB6BD4A4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6868056D761E163D10FDAF8CF1C4D9B8; + remoteInfo = MJRefresh; + }; + BD82F8828207A8E0550E6AAF01EC5C3B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3F83465BA81F6E581B3A431642D2992E; + remoteInfo = "ESTabBarController-swift"; + }; + C366ED926B48D6BF8DA0AC6C730E8D17 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B490E7485944099E16C9CBD79119D1D4; + remoteInfo = IQKeyboardManagerSwift; + }; + C47E7690F39635A4BE41E958A8A3F52C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; + remoteInfo = DDCategoryKit_Private; + }; + C5179645BB0BE6CE0103A513655BFDD1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; + remoteInfo = DDLogKit_Private; + }; + C92ADCE23ACB85DB174F2C19AD8027F5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5C23965029860967865B3429B5E29092; + remoteInfo = "DDBasicControlsKit_Private-DDBaseViewController"; + }; + CBB430E9B541876CA7F6D35C7A63EFA3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; + remoteInfo = "AMapFoundation-NO-IDFA"; + }; + CCC40A5D186967182A2931AA7E67BCD6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2864923095274ACF5E5F99312F360AEB; + remoteInfo = DDZFPlayerKit_Private; + }; + CCEDDAB0BB203A89179A2FE1662F19A1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; + remoteInfo = RxSwift; + }; + CFF29CC84F961DCC64FB935A84211D84 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; + remoteInfo = DDCategoryKit_Private; + }; + D06EE6A78D9BA354B2E64330F7E79396 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4622BFEF3DC16E8BD15EEFC30D4D0084; + remoteInfo = RxRelay; + }; + D6B627BC440D1941C3AD06FE60C5887E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6056870867CC4728BCEF2E5EBDD1DCB3; + remoteInfo = "DDMAMapKit_Private-DDMAMapKit_Private"; + }; + D862A0219F7C7A193B48E2CA2C90131C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 387C7767E705FE68450F97CBA4348CC0; + remoteInfo = DDProgressHUDKit_Private; + }; + D8A377B0FAD2A61132489F12A4C1D719 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 087B100C5691B6A3C04A45198E6C32F6; + remoteInfo = DDBasicControlsKit_Private; + }; + DC195669CB08C50F17ECF5B83229CE2A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A8B712B20F60AB02004557B884A28FD4; + remoteInfo = DDUtilsSwiftKit_Private; + }; + E319EA63D6EE71762E2849C6842F7C41 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; + remoteInfo = Kingfisher; + }; + E6C1A93C29A0310E3D9D646B82C974B9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; + remoteInfo = DDLogKit_Private; + }; + E9C767028D09A24927224EB68ABBDFE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CFF5B7CDF57A32781D2AD4CC98E95B29; + remoteInfo = DDToastKit_Private; + }; + F2D8EE943DBA4842E325BA31CE16FDF8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; + remoteInfo = DDLogKit_Private; + }; + F6A8D18C1AFF744DA27709A310A99935 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D504B99928659EA67A1C3A9E981EB8FF; + remoteInfo = JCore; + }; + FB43E8D2095ADD88E51B6DDBB7ADE1CB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; + remoteInfo = RxSwift; + }; + FE661D39020167A14F60F8560E8AF469 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4BD4E22D3419D68A85BDD6119CB37C6C; + remoteInfo = "AMapLocation-NO-IDFA"; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 0004EA356C9835AA546B3FC4EE6CEFEB /* IQKeyboardManagerSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardManagerSwift-dummy.m"; sourceTree = ""; }; - 00762648F87378B421D9E8CDFE71A057 /* JXCategoryIndicatorComponentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorComponentView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorComponentView.m; sourceTree = ""; }; - 00D20C4C1F970E3E4CFF73E4F37008D6 /* RxCollectionViewDataSourcePrefetchingProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourcePrefetchingProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDataSourcePrefetchingProxy.swift; sourceTree = ""; }; - 01122F2913AAEB4DE71A78D263C4FA14 /* ZLThumbnailViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLThumbnailViewController.swift; path = Sources/General/ZLThumbnailViewController.swift; sourceTree = ""; }; - 0112A6353EDAD9C4C4FEB00304992211 /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; - 0128DC284C15E608A75AD80CCEFED959 /* AMapSearchKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapSearchKit.framework; sourceTree = ""; }; - 012908900A79A28B68FA6139B3149FE2 /* MAIndoorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAIndoorInfo.h; path = AMapNaviKit.framework/Headers/MAIndoorInfo.h; sourceTree = ""; }; - 0148B2379F13E382A0BB89A55BA61982 /* MAAnimatedAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnimatedAnnotation.h; path = AMapNaviKit.framework/Headers/MAAnimatedAnnotation.h; sourceTree = ""; }; - 01A475B134DD14A921A42BE8DE4DB594 /* RTLManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RTLManager.h; path = Sources/RLTManager/RTLManager.h; sourceTree = ""; }; - 01CB0DAE7EE2185A60E5254888222198 /* ZLPhotoBrowser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ZLPhotoBrowser.release.xcconfig; sourceTree = ""; }; - 01D0EA99062418CCAB1182100B3FFEFC /* KFImageRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageRenderer.swift; path = Sources/SwiftUI/KFImageRenderer.swift; sourceTree = ""; }; - 021840F3237EF92607CF6AFD69AA02CB /* UIViewArray+QuickLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewArray+QuickLayout.swift"; path = "Source/Extensions/QuickLayout/UIViewArray+QuickLayout.swift"; sourceTree = ""; }; - 027E73ADA442942B942931E217508A38 /* AtomicInt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AtomicInt.swift; path = Platform/AtomicInt.swift; sourceTree = ""; }; - 02ABE119D91795701827AEEA87EFD224 /* RxTableViewReactiveArrayDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewReactiveArrayDataSource.swift; path = RxCocoa/iOS/DataSources/RxTableViewReactiveArrayDataSource.swift; sourceTree = ""; }; - 02BF9C5967569BA29EAF7CFC6674992A /* Driver+Subscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Driver+Subscription.swift"; path = "RxCocoa/Traits/Driver/Driver+Subscription.swift"; sourceTree = ""; }; - 036CB30248C3E4844C34996061A14975 /* MainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MainScheduler.swift; path = RxSwift/Schedulers/MainScheduler.swift; sourceTree = ""; }; - 03BDCBB30B6BF9E9B16313E806FE3E2B /* SwiftEntryKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftEntryKit.release.xcconfig; sourceTree = ""; }; - 03C1CDFBC2D3D029A3ECB0017E938D8D /* MATraceReplayOverlayRender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceReplayOverlayRender.h; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlayRender.h; sourceTree = ""; }; - 040E7B3FC9AD97527E01AAA6692F03FC /* AMapNaviDriveView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviDriveView.h; path = AMapNaviKit.framework/Headers/AMapNaviDriveView.h; sourceTree = ""; }; - 0436294A00804FAE3E7C9243FB523E7D /* ZFPortraitViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPortraitViewController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPortraitViewController.h; sourceTree = ""; }; - 04A4D8C22ADEBBFF6A7BB0745BF06E12 /* ObservableConvertibleType+Infallible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Infallible.swift"; path = "RxSwift/Traits/Infallible/ObservableConvertibleType+Infallible.swift"; sourceTree = ""; }; - 050B017433C17B15A5712EE1BECB5E53 /* UIImage+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIImage+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIImage+ZLPhotoBrowser.swift"; sourceTree = ""; }; - 05259CD0832517649132AB0DB1A78B8D /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; - 054D62F0C7624C280147AA1537D8B733 /* MATraceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceManager.h; path = AMapNaviKit.framework/Headers/MATraceManager.h; sourceTree = ""; }; - 05692E2644C9553991BB866D88887C35 /* Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Image.swift; path = Sources/Image/Image.swift; sourceTree = ""; }; - 057F7456D5D387EC14E07A6B1800E0E5 /* Do.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Do.swift; path = RxSwift/Observables/Do.swift; sourceTree = ""; }; - 05894F3097B344E973E9BB65B70F9941 /* SDImageAWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAWebPCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAWebPCoder.h; sourceTree = ""; }; - 0595A2C45A2C807F199AE3CE85C23090 /* ZFPlayerGestureControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerGestureControl.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerGestureControl.h; sourceTree = ""; }; - 05CB0A3CA10B5CF701B5EDA39EB4D04D /* MAOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAOverlayRenderer.h; sourceTree = ""; }; - 0603369D29C08BBD4B780229EB57C5F2 /* ZFLandScapeControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLandScapeControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLandScapeControlView.h; sourceTree = ""; }; - 061B9FF6E752E48C8E7BE29D4C251688 /* MACircle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACircle.h; path = AMapNaviKit.framework/Headers/MACircle.h; sourceTree = ""; }; - 0621A1A82709D12B551256E0A8DCF213 /* RxCocoaObjCRuntimeError+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "RxCocoaObjCRuntimeError+Extensions.swift"; path = "RxCocoa/Common/RxCocoaObjCRuntimeError+Extensions.swift"; sourceTree = ""; }; - 062373D2B5395BB15D1631C91C264690 /* JXCategoryIndicatorLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorLineView.m; sourceTree = ""; }; - 06291C1D83A727065BC98E83B89FF8CF /* DDProgressHUDKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDProgressHUDKit_Private.modulemap; sourceTree = ""; }; - 062DDB33C6E18D36A77C4A3EAAEC87C0 /* MJRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-umbrella.h"; sourceTree = ""; }; - 065D268617DD88D760B9AE0ABFEC338F /* CombineLatest+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+Collection.swift"; path = "RxSwift/Observables/CombineLatest+Collection.swift"; sourceTree = ""; }; - 0697135A5700E37C37D709774F076F78 /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJExtension.h"; path = "MJRefresh/UIScrollView+MJExtension.h"; sourceTree = ""; }; - 070B86A959C60844EB59723B8B506DC7 /* ZLEditImageViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditImageViewController.swift; path = Sources/Edit/ZLEditImageViewController.swift; sourceTree = ""; }; - 07292771F5B6BFDAEEF7BB781539B2C9 /* Binder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Binder.swift; path = RxSwift/Binder.swift; sourceTree = ""; }; - 072E7AF6289749220B171AB2A5F0EAFE /* DDMAMapView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMAMapView.h; path = DDMAMapKit_Private/Classes/DDMAMap/MapView/DDMAMapView.h; sourceTree = ""; }; - 073E35FB94CABC121A278062FD177FA4 /* RxSearchControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxSearchControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxSearchControllerDelegateProxy.swift; sourceTree = ""; }; - 074C5B0A05A05333EC1249D280EB36BA /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; - 07A4D50E178A36E1C1AD78E6EE7344CE /* RxRelay-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxRelay-prefix.pch"; sourceTree = ""; }; - 07BE5A812FE9D7C903912CDD409219A6 /* IJKMediaFramework.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IJKMediaFramework.framework; path = DDZFPlayerKit_Private/Classes/ijkplayer/IJKMediaFramework.framework; sourceTree = ""; }; - 07C87AB00B467E1A54C7A824E629F0EF /* DDWebImageKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDWebImageKit_Private-prefix.pch"; sourceTree = ""; }; - 07FA13CEA097E4AAD46BA385250D6929 /* DDBaseTableView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTableView.m; path = DDBasicControlsKit_Private/Classes/DDBaseTableView/DDBaseTableView.m; sourceTree = ""; }; - 08232915BE097677A51DB6928DFF4C8B /* RetryPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryPolicy.swift; path = Source/RetryPolicy.swift; sourceTree = ""; }; - 084C0809EB423BF009DFA1252716A7B6 /* AMapNaviHeaderHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviHeaderHandler.h; path = AMapNaviKit.framework/Headers/AMapNaviHeaderHandler.h; sourceTree = ""; }; - 085EBB286BA30648750A2071DC11BEE0 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; - 0860D31ABF0729C6270013AEF0C938E7 /* JXCategoryImageCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageCell.h; path = Sources/Image/JXCategoryImageCell.h; sourceTree = ""; }; - 08E46A417F995AC6613569AB8A4ECF93 /* AVAssetImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AVAssetImageDataProvider.swift; path = Sources/General/ImageSource/AVAssetImageDataProvider.swift; sourceTree = ""; }; - 09103C0249FF8D552D57F8C6C00E1A8D /* AMapNearbySearchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNearbySearchManager.h; path = AMapSearchKit.framework/Headers/AMapNearbySearchManager.h; sourceTree = ""; }; - 094D221D1D0D1B16AAD099F94E9E17F1 /* AMapNaviEleBikeDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviEleBikeDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviEleBikeDataRepresentable.h; sourceTree = ""; }; - 095AEB4D2B39A75A3C5CDB20D42CCFD9 /* DDControlsKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDControlsKit_Private.debug.xcconfig; sourceTree = ""; }; - 09992FAE0A936CC4D45EB725F658957A /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+MJRefresh.h"; path = "MJRefresh/NSBundle+MJRefresh.h"; sourceTree = ""; }; - 09A2C0481DADD9F31D999C4EBA7FDECE /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; + 000C79CC6867D594F7FD77C78DE94F8D /* JPushExtension-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "JPushExtension-xcframeworks.sh"; sourceTree = ""; }; + 00268894DDF3544121282102C01F415E /* Protected.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Protected.swift; path = Source/Protected.swift; sourceTree = ""; }; + 00ACAF1649907249C4616F56A9E777CE /* DDDateKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDDateKit_Private-umbrella.h"; sourceTree = ""; }; + 00B3B25C64476F85A3F7A2A0B23E182B /* MAMapAccessibilityIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapAccessibilityIdentifier.h; path = AMapNaviKit.framework/Headers/MAMapAccessibilityIdentifier.h; sourceTree = ""; }; + 01EBE524E1748F7C27B8739BEABEFDDB /* DDLogKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDLogKit_Private.modulemap; sourceTree = ""; }; + 02782A46E1E62D1A0ECBA5FEBD511E0C /* BRStringPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRStringPickerView.h; path = BRPickerView/StringPickerView/BRStringPickerView.h; sourceTree = ""; }; + 02ADB14AF5456465D9166F44567CCE0C /* CombineLatest+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+arity.swift"; path = "RxSwift/Observables/CombineLatest+arity.swift"; sourceTree = ""; }; + 02FEDAD1C01965FBD955DF32016D6989 /* JXCategoryBaseCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseCell.h; path = Sources/Base/JXCategoryBaseCell.h; sourceTree = ""; }; + 03401D6508115645BE1A11726E428603 /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; + 0349A346D47724A1023509E89D07E8E7 /* EKNotificationMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKNotificationMessageView.swift; path = Source/MessageViews/EKNotificationMessageView.swift; sourceTree = ""; }; + 0364DE9DE9160B4FA7D6B950AA386194 /* DDMASearch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMASearch.h; path = DDMAMapKit_Private/Classes/DDMASearch/DDMASearch.h; sourceTree = ""; }; + 0367BA5D256555C97DCDC38BFA1B3254 /* UISearchBar+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISearchBar+Rx.swift"; path = "RxCocoa/iOS/UISearchBar+Rx.swift"; sourceTree = ""; }; + 03A02BAA630E73118EF5478DDF1BF1CB /* DDLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDLabel.swift; path = DDControlsKit_Private/Classes/DDLabel/DDLabel.swift; sourceTree = ""; }; + 03AD58EE70814C745F8D212420ECA322 /* Signal+Subscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Signal+Subscription.swift"; path = "RxCocoa/Traits/Signal/Signal+Subscription.swift"; sourceTree = ""; }; + 042B16BEFD36308DABC26C34A19823CC /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = ""; }; + 0450DC13CC441C0967176B8071579F56 /* EKAttributes+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Position.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Position.swift"; sourceTree = ""; }; + 04680C30179DB334D62404E12DED62B4 /* AMapGeoFenceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceManager.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceManager.h; sourceTree = ""; }; + 04A51F1AAC8D966A3CF17F3552628174 /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = ""; }; + 04ADAC8C01EA757A396D3761DCD700BD /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = ""; }; + 04E04463C5F453870A53A7E2F5492ED6 /* UICollectionView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UICollectionView+Rx.swift"; path = "RxCocoa/iOS/UICollectionView+Rx.swift"; sourceTree = ""; }; + 04EE0EBD02463316BE1F289617518D8E /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = ""; }; + 04F09DEB4460226E152BE7C0845F6C63 /* RxTableViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDelegateProxy.swift; sourceTree = ""; }; + 050F16DB2CBDAB93A9D77C31F931607F /* MAOfflineMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineMap.h; path = AMapNaviKit.framework/Headers/MAOfflineMap.h; sourceTree = ""; }; + 051BA53CB2192FF6D24C7F99747C8FDB /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; + 051C5739886E46AEF20E44D2E243D885 /* AMapTrackVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackVersion.h; path = AMapTrackKit.framework/Headers/AMapTrackVersion.h; sourceTree = ""; }; + 0534B13FCA2DFF43E09894EA05A05799 /* EKFormMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKFormMessageView.swift; path = Source/MessageViews/EKFormMessageView.swift; sourceTree = ""; }; + 053827E2F181829512858510033CE315 /* DDAutoUIKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDAutoUIKit_Private-dummy.m"; sourceTree = ""; }; + 0540B7376A7488B6BB1B632766911E50 /* DDBaseCollectionViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseCollectionViewCell.m; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionViewCell/DDBaseCollectionViewCell.m; sourceTree = ""; }; + 0598E7DDE673DDF7484F63904625B4DE /* WithUnretained.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WithUnretained.swift; path = RxSwift/Observables/WithUnretained.swift; sourceTree = ""; }; + 05B5BE576D8D1CAC569EE43EB76E62D7 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; + 05C288F5773FAA8DC4E25B88D7FB406C /* IQKeyboardManager+UITextFieldViewNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+UITextFieldViewNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+UITextFieldViewNotification.swift"; sourceTree = ""; }; + 0613FE7A99BDEDD322F3D8DE00061E1B /* RxCocoa-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxCocoa-umbrella.h"; sourceTree = ""; }; + 06297B3403F1501663AFC128A815A060 /* AMapLocation-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapLocation-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; + 066F5F846256BBAE99269E61C0B20F77 /* ZLCollectionViewFlowLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCollectionViewFlowLayout.swift; path = Sources/General/ZLCollectionViewFlowLayout.swift; sourceTree = ""; }; + 067EF8AF841EA5E5B143B31013C9EB20 /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/AFError.swift; sourceTree = ""; }; + 06848B23C75BA91EF719A27ECEE5150D /* UIFont+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIFont+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIFont+DDCategory/UIFont+DDCategory.m"; sourceTree = ""; }; + 06AD5FB52419005F20815434AA453A42 /* MALineDrawType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MALineDrawType.h; path = AMapNaviKit.framework/Headers/MALineDrawType.h; sourceTree = ""; }; + 06E0DD37506E441F6CA5E93B1717C661 /* ZLCameraCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCameraCell.swift; path = Sources/General/ZLCameraCell.swift; sourceTree = ""; }; + 0703C1305BA1E5944F40D95E645CCC2E /* AMapURLSearchConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearchConfig.h; path = AMapFoundationKit.framework/Headers/AMapURLSearchConfig.h; sourceTree = ""; }; + 07328B577DB8D183B9FE834B1E4D5F8B /* DDBaseTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTableViewCell.h; path = DDBasicControlsKit_Private/Classes/DDBaseTableViewCell/DDBaseTableViewCell.h; sourceTree = ""; }; + 0786DA9CD174F13D7BC2C6587FAF4C3F /* RxRelay.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxRelay.modulemap; sourceTree = ""; }; + 07C7BB6A20C3D9D02A2634F44201E6DB /* SynchronizedDisposeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedDisposeType.swift; path = RxSwift/Concurrency/SynchronizedDisposeType.swift; sourceTree = ""; }; + 07E3AE01D1547BF2F1CFD22F207B2F5D /* ZFPlayerConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerConst.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerConst.h; sourceTree = ""; }; + 081E5C402ACBD0B56D7B56AB8E8F3A00 /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = ""; }; + 087A44DF367E8FC146EB3959FE9394CE /* DDImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDImageView.swift; path = DDControlsKit_Private/Classes/DDImageView/DDImageView.swift; sourceTree = ""; }; + 08C4E00CBE0B1151594901A3D003F685 /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = ""; }; + 08D28D7A055CD03744D4D1D70503ED98 /* ZFPlayerNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerNotification.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerNotification.h; sourceTree = ""; }; + 091DBEDBDEDF1ED2890ACDE092228429 /* IQNSArray+Sort.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQNSArray+Sort.swift"; path = "IQKeyboardManagerSwift/Categories/IQNSArray+Sort.swift"; sourceTree = ""; }; + 095C772CA9D287E8F32E25742AC62AF2 /* Source.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Source.swift; path = Sources/General/ImageSource/Source.swift; sourceTree = ""; }; + 097D55AD7298F8DA7BD811924DF2FA7F /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; + 09A1D3229C8D052062027ABBB1539377 /* DDAudioPlayerKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDAudioPlayerKit_Private.release.xcconfig; sourceTree = ""; }; 09B4C59FAB38D6054E5993BD78205023 /* DDAudioPlayerKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDAudioPlayerKit_Private; path = libDDAudioPlayerKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 09BFB08AE8AE4E82BD025F7B802797BE /* JXCategoryIndicatorBallView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorBallView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBallView.m; sourceTree = ""; }; - 0A3EC880FE2B8C0BDB59287FB1C6D1B4 /* ConstraintLayoutGuide.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuide.swift; path = Sources/ConstraintLayoutGuide.swift; sourceTree = ""; }; - 0AE10BB627FA715E039B5C0237B0D4DB /* JXCategoryDotCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotCell.h; path = Sources/Dot/JXCategoryDotCell.h; sourceTree = ""; }; - 0B11228B1AF736F146243539B5D390FA /* MAPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolyline.h; path = AMapNaviKit.framework/Headers/MAPolyline.h; sourceTree = ""; }; - 0B12CAE691E5E12854AAEFF502D48134 /* MAOfflineMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineMap.h; path = AMapNaviKit.framework/Headers/MAOfflineMap.h; sourceTree = ""; }; - 0B1E8288ADDE2F4142A6C7152BB42C76 /* UILabel+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UILabel+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UILabel+DDCategory/UILabel+DDCategory.h"; sourceTree = ""; }; - 0B9125A3B47E8794D3F0EFB133D96169 /* JXCategoryDotCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotCellModel.h; path = Sources/Dot/JXCategoryDotCellModel.h; sourceTree = ""; }; - 0B9C8E56726505D59BB4B6125A16D941 /* UIRectCorner+Short.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIRectCorner+Short.swift"; path = "Source/Extensions/UIRectCorner+Short.swift"; sourceTree = ""; }; - 0B9CAB0DE89C0BFCBEDDE2F08E332CF7 /* ConstraintRelation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelation.swift; path = Sources/ConstraintRelation.swift; sourceTree = ""; }; - 0BD7484B8382516B76A6BBF7D36C7213 /* BRPickerView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BRPickerView-prefix.pch"; sourceTree = ""; }; - 0BE13097EC2D93EF260C8A3AF9799E10 /* DriveRouteCustomAnnotation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DriveRouteCustomAnnotation.m; path = DDMAMapKit_Private/Classes/DDMAMap/Annotation/DriveRouteCustomAnnotation.m; sourceTree = ""; }; - 0C1B0962ACB69DFB81C49FCBFAB49D70 /* CALayer+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+DDCategory.h"; path = "DDCategoryKit_Private/Classes/CALayer+DDCategory/CALayer+DDCategory.h"; sourceTree = ""; }; - 0CAFC967A9D7EA0E7F13E290D08BCA82 /* SwiftyRSA-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftyRSA-dummy.m"; sourceTree = ""; }; - 0CBC071BBFBE072143A9361C97B83CC7 /* MAMapCustomStyleOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapCustomStyleOptions.h; path = AMapNaviKit.framework/Headers/MAMapCustomStyleOptions.h; sourceTree = ""; }; - 0D379821807920A04BDA1B9C4AAE05A2 /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; - 0D522B239E95E125274CFAA3A5D14A78 /* DDBaseTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTableViewCell.h; path = DDBasicControlsKit_Private/Classes/DDBaseTableViewCell/DDBaseTableViewCell.h; sourceTree = ""; }; - 0D58BECCF834BC7C0F2CAD00747A9431 /* QLUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QLUtils.swift; path = Source/Extensions/QuickLayout/QLUtils.swift; sourceTree = ""; }; - 0D7BBFB7922A0612AEC12DA177C7AB4B /* ZLImageNavController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLImageNavController.swift; path = Sources/General/ZLImageNavController.swift; sourceTree = ""; }; - 0D88E96BD30113C71AD4225F185AD871 /* UICollectionViewLayout+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewLayout+MJRefresh.m"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.m"; sourceTree = ""; }; - 0D956E59E5C250E632E98F7114CD0FB3 /* MATileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATileOverlay.h; path = AMapNaviKit.framework/Headers/MATileOverlay.h; sourceTree = ""; }; + 09C0EE387BC54891D09ED7F95D00203C /* DDFontKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDFontKit_Private.debug.xcconfig; sourceTree = ""; }; + 09F7D2E7C9DB8F796D68D5765F3F9431 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; + 0A02B7486D3CD326965C39EBDF255BBA /* BRBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRBaseView.m; path = BRPickerView/Base/BRBaseView.m; sourceTree = ""; }; + 0A04C5D4A4446DD2265AF171D126DBF9 /* ImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProvider.swift; path = Sources/General/ImageSource/ImageDataProvider.swift; sourceTree = ""; }; + 0A55B4C27BC6F39FDDC74AD8A0E87382 /* AMapSearch-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapSearch-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; + 0A7B59AAC6E01A3567809323235B2261 /* Amb.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Amb.swift; path = RxSwift/Observables/Amb.swift; sourceTree = ""; }; + 0AA020CDC58FE075FCE7F605D7C71C36 /* AMapTrackManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackManager.h; path = AMapTrackKit.framework/Headers/AMapTrackManager.h; sourceTree = ""; }; + 0AE38A3F9708F4BF8E26C436B4013776 /* ZFPlayerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerController.h; sourceTree = ""; }; + 0AE9159ADDD65D612717506EF1015A40 /* AMapFoundationVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationVersion.h; path = AMapFoundationKit.framework/Headers/AMapFoundationVersion.h; sourceTree = ""; }; + 0B217CD6894AE8790FEE93BB0B391A0A /* SnapKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SnapKit-dummy.m"; sourceTree = ""; }; + 0B41E04BC8FD317EF74E8E6A776368CC /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackNormalFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m; sourceTree = ""; }; + 0B58963D08961F381D42EB0456E355AE /* KF.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KF.swift; path = Sources/General/KF.swift; sourceTree = ""; }; + 0B91C070B5B833ABCE6DBA6261E0539B /* JXCategoryIndicatorLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorLineView.m; sourceTree = ""; }; + 0BD5EAC0031F82E3E2E469DF874AF715 /* Event.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Event.swift; path = RxSwift/Event.swift; sourceTree = ""; }; + 0C6107E803B1F866AD69FCA7C2F0514B /* ZLEnlargeButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEnlargeButton.swift; path = Sources/General/ZLEnlargeButton.swift; sourceTree = ""; }; + 0C9CAA5A5E610917C349EC6ED701550F /* FontUtil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FontUtil.swift; path = DDFontKit_Private/Classes/FontUtil.swift; sourceTree = ""; }; + 0CDCD98CD8548CF04A7D44BC78B3E9AD /* FormatIndicatedCacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatIndicatedCacheSerializer.swift; path = Sources/Cache/FormatIndicatedCacheSerializer.swift; sourceTree = ""; }; + 0D73D0FE814F287483B64EC3DCA05E85 /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+MJExtension.h"; path = "MJRefresh/UIView+MJExtension.h"; sourceTree = ""; }; + 0D939F5318634975C98B836DD17AC80E /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoNormalFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m; sourceTree = ""; }; 0DA4828908E30CE4A29CB9AD3A405635 /* SwiftyRSA */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = SwiftyRSA; path = libSwiftyRSA.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 0DAB8458DAF8C56A553FAAF494D6BBD2 /* WithUnretained.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WithUnretained.swift; path = RxSwift/Observables/WithUnretained.swift; sourceTree = ""; }; - 0E23994B38823A2C0B09406E96E37D71 /* Runtime.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Runtime.swift; path = Sources/Utility/Runtime.swift; sourceTree = ""; }; - 0E61804F5B643F8F44E1B885B206DE28 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; - 0E9EE5CD60A63114E41152F3B4402920 /* NSMutableAttributedString+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableAttributedString+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableAttributedString+DDCategory.m"; sourceTree = ""; }; - 0EC187E4E9767E7D3DEC80E5FD12876F /* UIBarButtonItem+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIBarButtonItem+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIBarButtonItem+DDCategory/UIBarButtonItem+DDCategory.m"; sourceTree = ""; }; - 0ED51AB88BD31A962749880147DDCC94 /* ZLEnlargeButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEnlargeButton.swift; path = Sources/General/ZLEnlargeButton.swift; sourceTree = ""; }; - 0EE30168F12596011B0BB7565F9C67C2 /* UIView+Responder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Responder.swift"; path = "Source/Utils/UIView+Responder.swift"; sourceTree = ""; }; - 0F0B3FA98291615813B74700D35BDBCB /* SerialDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDispatchQueueScheduler.swift; path = RxSwift/Schedulers/SerialDispatchQueueScheduler.swift; sourceTree = ""; }; - 0F322581389CF2B36529FC2DD37D9CFC /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = MJRefresh.bundle; path = MJRefresh/MJRefresh.bundle; sourceTree = ""; }; - 0F7E2EFC10113572603ACEDC0104B9DB /* EKContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKContentView.swift; path = Source/Infra/EKContentView.swift; sourceTree = ""; }; - 0F95AD77B334DC3AC2477F1A3AC313F7 /* JCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JCore.debug.xcconfig; sourceTree = ""; }; - 0FD669CF3EA8DE0C2942DD07C16B30E9 /* RxTextViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTextViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTextViewDelegateProxy.swift; sourceTree = ""; }; - 103D674CFB66E101CAC882F6747C5733 /* DDToastKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDToastKit_Private-dummy.m"; sourceTree = ""; }; - 1068152D2EF51248E7CC22802E41CBCC /* _RXDelegateProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXDelegateProxy.h; path = RxCocoa/Runtime/include/_RXDelegateProxy.h; sourceTree = ""; }; - 10BB65D216F0A89EF3DDE22B631B39C0 /* DDMATrackManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMATrackManager.h; path = DDMAMapKit_Private/Classes/DDMATrackManager/DDMATrackManager.h; sourceTree = ""; }; - 10DC75BD948DEA4ED79A527B33D05B8E /* NSDate+BRPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDate+BRPickerView.m"; path = "BRPickerView/DatePickerView/NSDate+BRPickerView.m"; sourceTree = ""; }; - 115AE99B48C7DA31E3E6CE5F23873A5B /* UISegmentedControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISegmentedControl+Rx.swift"; path = "RxCocoa/iOS/UISegmentedControl+Rx.swift"; sourceTree = ""; }; - 116BB0872C9EBB9F68AAF275261CBE2D /* DDBaseNavigationController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseNavigationController.m; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDBaseNavigationController.m; sourceTree = ""; }; - 11BC256610DB359EA9B92C007DFBBC7E /* MKAnnotationView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MKAnnotationView+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImageMapKit/MapKit/MKAnnotationView+WebCache.h"; sourceTree = ""; }; - 11E135200DF2568A9B210DBB3C1F2DEB /* Timer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timer.swift; path = RxSwift/Observables/Timer.swift; sourceTree = ""; }; - 11F1FB07A7985B49D4B2287D27B5E3DE /* ZLPhotoPreviewAnimatedTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewAnimatedTransition.swift; path = Sources/Animation/ZLPhotoPreviewAnimatedTransition.swift; sourceTree = ""; }; - 12040674009B1DE69C26FE331A5DDD56 /* MAMultiTexturePolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiTexturePolylineRenderer.h; path = AMapNaviKit.framework/Headers/MAMultiTexturePolylineRenderer.h; sourceTree = ""; }; - 124EB9CE1EBA4FD11BC091A4994501C8 /* JXCategoryView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JXCategoryView-dummy.m"; sourceTree = ""; }; - 12518713B31AC6922131E90E7B9777E0 /* ZLInputTextViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLInputTextViewController.swift; path = Sources/Edit/ZLInputTextViewController.swift; sourceTree = ""; }; - 125AC62E8FD4987214EBC213BC04D9DE /* MAMultiPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPolyline.h; path = AMapNaviKit.framework/Headers/MAMultiPolyline.h; sourceTree = ""; }; - 127AFCC80D26CF08EA0F94463459870C /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; - 12DD950669C9B3775079F542F4E99B86 /* ImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProvider.swift; path = Sources/General/ImageSource/ImageDataProvider.swift; sourceTree = ""; }; - 135F1BF0D88B0375A90716E7B1A1727E /* MAMVTTileOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMVTTileOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAMVTTileOverlayRenderer.h; sourceTree = ""; }; - 138086460796A09E7D9CEC5BAADC340A /* ScheduledItemType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItemType.swift; path = RxSwift/Schedulers/Internal/ScheduledItemType.swift; sourceTree = ""; }; - 13ABA4D5A71236BB7E6AC1A51A1C1A7A /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; - 13B84C97A0658E5BF9785ED3D7F2382B /* Completable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Completable.swift; path = RxSwift/Traits/PrimitiveSequence/Completable.swift; sourceTree = ""; }; - 13CD0B97A5CB9BCBB452F8D951B61292 /* BRPickerView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BRPickerView.debug.xcconfig; sourceTree = ""; }; - 143439C363DA0CE003872C86522EC8C6 /* MAGroundOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGroundOverlay.h; path = AMapNaviKit.framework/Headers/MAGroundOverlay.h; sourceTree = ""; }; - 1462B6AC3BC1CA282AC70DAB36436FC5 /* Date+Dispatch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Dispatch.swift"; path = "RxSwift/Date+Dispatch.swift"; sourceTree = ""; }; - 152A805B7E968298AC27A46F277C1B8D /* First.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = First.swift; path = RxSwift/Observables/First.swift; sourceTree = ""; }; - 15592CAF3A93120CE0198A039024E10F /* _RX.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RX.m; path = RxCocoa/Runtime/_RX.m; sourceTree = ""; }; - 155DD87F7F232F6CE6A79AE12B725191 /* UIButton+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIButton+DDCategory/UIButton+DDCategory.m"; sourceTree = ""; }; - 15A3D781D1A99E34FA083B4FB5E7662B /* DDFontKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDFontKit_Private.release.xcconfig; sourceTree = ""; }; - 15BFF5C6E6682F26915F98663252A32F /* ExtensionHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExtensionHelpers.swift; path = Sources/Utility/ExtensionHelpers.swift; sourceTree = ""; }; - 15D6BA666326C03F80A85BFEDF295B13 /* SwiftyRSA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyRSA.release.xcconfig; sourceTree = ""; }; - 164D33F7625E9F75A71B0CE124AEB18E /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; + 0DAD147264FA2FBE6ED5247E9B66774D /* StartWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StartWith.swift; path = RxSwift/Observables/StartWith.swift; sourceTree = ""; }; + 0E3CEAA25B59FE6453C4320D43FB8D67 /* EKPopUpMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKPopUpMessageView.swift; path = Source/MessageViews/EKPopUpMessageView.swift; sourceTree = ""; }; + 0E637AD0363C979CEAEC2DDEDD522239 /* UIWindow+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWindow+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIWindow+DDCategory/UIWindow+DDCategory.h"; sourceTree = ""; }; + 0E6EAE5322A539E53BFFE55A0BD6C44D /* UIImage+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIImage+DDCategory/UIImage+DDCategory.h"; sourceTree = ""; }; + 0EACC7D0FC7D81D43E10FACEDD2FB4F4 /* MAParticleOverlayOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlayOptions.h; path = AMapNaviKit.framework/Headers/MAParticleOverlayOptions.h; sourceTree = ""; }; + 0ECCEAE57EDDB8B2A3E8AC0E0F20AE1B /* ConstraintConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConfig.swift; path = Sources/ConstraintConfig.swift; sourceTree = ""; }; + 0EE7B33AFFF74BF666E6DCF8AD495093 /* _RX.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RX.h; path = RxCocoa/Runtime/include/_RX.h; sourceTree = ""; }; + 0EEE68C206377454090E8B7562573D2B /* JXCategoryIndicatorCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorCell.m; path = Sources/Indicator/JXCategoryIndicatorCell.m; sourceTree = ""; }; + 0F00EBA0CC49C54513B299B4D73663EF /* NSButton+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Rx.swift"; path = "RxCocoa/macOS/NSButton+Rx.swift"; sourceTree = ""; }; + 0F4302B33BDFB56164A2CA552E1A0AF1 /* JXCategoryTitleImageCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageCellModel.h; path = Sources/TitleImage/JXCategoryTitleImageCellModel.h; sourceTree = ""; }; + 0F741998B15409C128197BB366CC306E /* DDBasicControlsKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDBasicControlsKit_Private.debug.xcconfig; sourceTree = ""; }; + 0F8FA6F87D4192760BED3F1DDCDF771F /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; + 0FD5270C8F324A664F43825F1FB622D2 /* ZFPersentInteractiveTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPersentInteractiveTransition.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPersentInteractiveTransition.h; sourceTree = ""; }; + 0FE35758BD8F68C0937204A63AD8C001 /* SchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SchedulerType.swift; path = RxSwift/SchedulerType.swift; sourceTree = ""; }; + 0FE5A60DF91E96F0F10C756A85D274BB /* NSTextStorage+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextStorage+Rx.swift"; path = "RxCocoa/iOS/NSTextStorage+Rx.swift"; sourceTree = ""; }; + 10076D03A2C1594266879172E57A97F1 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; + 103D13B1AC5D7F9F135AA9B5F778A1FA /* ESTabBarController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarController.swift; path = Sources/ESTabBarController.swift; sourceTree = ""; }; + 106058C76A549394D008ABF56DCD29C8 /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = ""; }; + 10963CD3644E0716EE62F49301E46B79 /* Skip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Skip.swift; path = RxSwift/Observables/Skip.swift; sourceTree = ""; }; + 109DEBF28F16126F32DDDCE9500BF311 /* ObserverType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverType.swift; path = RxSwift/ObserverType.swift; sourceTree = ""; }; + 10EE53D4E57EA2E1FA40BC7FADE3D694 /* JXCategoryImageCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageCell.m; path = Sources/Image/JXCategoryImageCell.m; sourceTree = ""; }; + 113C279E26EF1A354F6C5903C633DBFB /* RxTextStorageDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTextStorageDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTextStorageDelegateProxy.swift; sourceTree = ""; }; + 116D3EAFD40C577B2129B15287B2C59D /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; + 117F315C434C3863D42FD21EB781CA98 /* ConstraintMultiplierTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMultiplierTarget.swift; path = Sources/ConstraintMultiplierTarget.swift; sourceTree = ""; }; + 11E85C9E1411241C96F207B5A7772A0D /* NSTextAttachment+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextAttachment+Kingfisher.swift"; path = "Sources/Extensions/NSTextAttachment+Kingfisher.swift"; sourceTree = ""; }; + 12329F74B8F5ED5590CC69C6AEB393AA /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; + 1251C85209716C617C7B9F371BC3DEAE /* ObservableType+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+Extensions.swift"; path = "RxSwift/ObservableType+Extensions.swift"; sourceTree = ""; }; + 12A4A336045BC0B40DB025D6F491EE26 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; + 12FFF6F7F693F3BB234800879918D57A /* NSTextView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextView+Rx.swift"; path = "RxCocoa/macOS/NSTextView+Rx.swift"; sourceTree = ""; }; + 130427CD684A106C0D0EE642A156C063 /* UIView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIView+DDCategory/UIView+DDCategory.m"; sourceTree = ""; }; + 13A5925CA69C7E17C422B691E2D692A6 /* ImageDataProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProcessor.swift; path = Sources/Networking/ImageDataProcessor.swift; sourceTree = ""; }; + 14528C5646AD08C6BD7757FC6C312568 /* UIStepper+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIStepper+Rx.swift"; path = "RxCocoa/iOS/UIStepper+Rx.swift"; sourceTree = ""; }; + 149E0EBE3D08C3F6A2CFB834CEBB8562 /* Catch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Catch.swift; path = RxSwift/Observables/Catch.swift; sourceTree = ""; }; + 14ED87EA32575BCF5C15E9871F5DE178 /* IQUIScrollView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIScrollView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIScrollView+Additions.swift"; sourceTree = ""; }; + 154133F8696D45C09E50268F96410941 /* IQKeyboardManagerSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.debug.xcconfig; sourceTree = ""; }; + 157D5E57858CF3184E2D48690C8EBF16 /* jcore-ios-4.2.1.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = "jcore-ios-4.2.1.xcframework"; sourceTree = ""; }; + 15C1CCF5C9AC68567C8EB642366E48D3 /* MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJRefresh-dummy.m"; sourceTree = ""; }; + 15C521A39AE11898E33A5894C1A91596 /* JXCategoryIndicatorCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorCellModel.m; path = Sources/Indicator/JXCategoryIndicatorCellModel.m; sourceTree = ""; }; + 15DA3ADBEAC86681642ECC349F4440FC /* Infallible+Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Create.swift"; path = "RxSwift/Traits/Infallible/Infallible+Create.swift"; sourceTree = ""; }; + 1615A11842BF97FF0AB14145E054EDB7 /* Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Map.swift; path = RxSwift/Observables/Map.swift; sourceTree = ""; }; + 1615AE46D5BA6D7B2DDF2EF81B402EAD /* DDAutoUIKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDAutoUIKit_Private.release.xcconfig; sourceTree = ""; }; + 164362782043234383B02483B232185E /* Typealiases.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Typealiases.swift; path = Sources/Typealiases.swift; sourceTree = ""; }; + 164CCF231070D9275F9846118DED7BF7 /* DDBaseTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTableViewCell.m; path = DDBasicControlsKit_Private/Classes/DDBaseTableViewCell/DDBaseTableViewCell.m; sourceTree = ""; }; + 165809E2D10BE431114740055F22B5BA /* SnapKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.release.xcconfig; sourceTree = ""; }; + 167F100B148EB72ED6464CA9FDA1DB82 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = ""; }; + 16A88B0F2E7CE77CF00D82E7D5A39E82 /* AMapNaviKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapNaviKit.framework; sourceTree = ""; }; 16ADD43AE08E88D6F7A3498152249608 /* DDAutoUIKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDAutoUIKit_Private; path = libDDAutoUIKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 16E2C1798806CF3C978D11648C8B0C0B /* ObserverType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverType.swift; path = RxSwift/ObserverType.swift; sourceTree = ""; }; - 16FBE302620BFE6480BD81F8D2AA07D0 /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; - 170BBE76A34DB894858F4A1C6CBF9FB2 /* NSError+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSError+ZLPhotoBrowser.swift"; path = "Sources/Extensions/NSError+ZLPhotoBrowser.swift"; sourceTree = ""; }; - 172DC173929CF37802A7EE6F1D8DB741 /* ParameterEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoder.swift; path = Source/ParameterEncoder.swift; sourceTree = ""; }; - 17B24D9588F2DF70F55E988A1A6CB2A0 /* IQKeyboardManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Internal.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Internal.swift"; sourceTree = ""; }; - 17EBBEE913E72CA4F1A7C775F7547836 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; - 18650E478F40BBC9768C627BD7407442 /* ScheduledDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledDisposable.swift; path = RxSwift/Disposables/ScheduledDisposable.swift; sourceTree = ""; }; - 1882ECCFC89D22852AAA5A86111E8FC9 /* ObservableType+PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+PrimitiveSequence.swift"; path = "RxSwift/Traits/PrimitiveSequence/ObservableType+PrimitiveSequence.swift"; sourceTree = ""; }; + 16C32707552F7339A83EED2DE21747AB /* MAPointAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPointAnnotation.h; path = AMapNaviKit.framework/Headers/MAPointAnnotation.h; sourceTree = ""; }; + 16DB07449022B7EC1471F18E7849F2F4 /* JXCategoryView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXCategoryView-prefix.pch"; sourceTree = ""; }; + 172C51BE1DD73A6B9E6FBCDF85F07222 /* UICollectionView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UICollectionView+DDCategory/UICollectionView+DDCategory.h"; sourceTree = ""; }; + 172CA6C2DE6F83236959926EFB63D859 /* UIBarButtonItem+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIBarButtonItem+Rx.swift"; path = "RxCocoa/iOS/UIBarButtonItem+Rx.swift"; sourceTree = ""; }; + 176CA123F6C4804576C556235D98057E /* Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Kingfisher.swift; path = Sources/General/Kingfisher.swift; sourceTree = ""; }; + 1780C08F8DCAEC4F2BD176907EF082A4 /* DDAudioPlayerKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDAudioPlayerKit_Private.debug.xcconfig; sourceTree = ""; }; + 17A99E15DB682AFB974C54B55AC66AB0 /* DDWebImageKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDWebImageKit_Private-dummy.m"; sourceTree = ""; }; + 18436F4693AEBC2EDEACD10272721DF5 /* ControlProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlProperty.swift; path = RxCocoa/Traits/ControlProperty.swift; sourceTree = ""; }; + 185958D2BB6C4837F0905CE716E82B50 /* RxPickerViewAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewAdapter.swift; path = RxCocoa/iOS/DataSources/RxPickerViewAdapter.swift; sourceTree = ""; }; + 186146230847B35699BD062A17AC4F67 /* JXCategoryIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorView.m; path = Sources/Indicator/JXCategoryIndicatorView.m; sourceTree = ""; }; 18BCA08F5CEEE178EA4B5E4C7521ECB7 /* Pods-OrderSchedulingNotificationService.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OrderSchedulingNotificationService.release.xcconfig"; sourceTree = ""; }; - 193030B448D45A623A5D67C4437BD0E3 /* Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debug.swift; path = RxSwift/Observables/Debug.swift; sourceTree = ""; }; - 1948244474DF58002D4014BB5950A23D /* AMapLocationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapLocationKit.framework; sourceTree = ""; }; - 1956A59B6F641145AE9B88C7B729CDBB /* AsMaybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsMaybe.swift; path = RxSwift/Observables/AsMaybe.swift; sourceTree = ""; }; - 19A1A393BBB8C3687E353285CE7CB828 /* BRAddressPickerView.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = BRAddressPickerView.bundle; path = BRPickerView/AddressPickerView/BRAddressPickerView.bundle; sourceTree = ""; }; - 19E76A4A9B93AC93EB19D6EE1B74BF22 /* SwitchIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwitchIfEmpty.swift; path = RxSwift/Observables/SwitchIfEmpty.swift; sourceTree = ""; }; - 19FBC541AA06F373125EE9F7B4D1203A /* SchedulerServices+Emulation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SchedulerServices+Emulation.swift"; path = "RxSwift/Schedulers/SchedulerServices+Emulation.swift"; sourceTree = ""; }; - 1A3A303562921D64DF80A79B6C1D7FCF /* _RXObjCRuntime.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXObjCRuntime.m; path = RxCocoa/Runtime/_RXObjCRuntime.m; sourceTree = ""; }; - 1A41DF6CD1AD6889E66B8CA963800B7F /* EKButtonBarView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKButtonBarView.swift; path = Source/MessageViews/MessagesUtils/EKButtonBarView.swift; sourceTree = ""; }; - 1A5C5ED621289AE94E383AA5F3845B8E /* ImageBinder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageBinder.swift; path = Sources/SwiftUI/ImageBinder.swift; sourceTree = ""; }; - 1A6BBB547BC2B91A84450DB7B519B693 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; - 1A822AFE2F2931497A0367242C37EBE0 /* MultipartUpload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartUpload.swift; path = Source/MultipartUpload.swift; sourceTree = ""; }; - 1A893797B0F1B377CFA94E91DF9AECF7 /* RxTabBarControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTabBarControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTabBarControllerDelegateProxy.swift; sourceTree = ""; }; - 1ACE7652E6C9AF597184643F45EC253B /* MJRefresh.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.debug.xcconfig; sourceTree = ""; }; - 1AD048FA87F3189F04BF1D246C5222CB /* AMapNaviRideView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRideView.h; path = AMapNaviKit.framework/Headers/AMapNaviRideView.h; sourceTree = ""; }; - 1AD09C01043C3998ACFE02F2B1748431 /* Kingfisher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Kingfisher-dummy.m"; sourceTree = ""; }; - 1B0292668A5955F282EED93CB6DED521 /* JXCategoryBaseCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseCellModel.h; path = Sources/Base/JXCategoryBaseCellModel.h; sourceTree = ""; }; - 1B17520F1937523A7BEB4CC81A1D91D7 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; - 1BD1740FB29D1A3807461CA2C01462D7 /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = ""; }; - 1BD51C9DAF8DF4365E17BA2C13CCA14F /* ZLGeneralDefine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLGeneralDefine.swift; path = Sources/General/ZLGeneralDefine.swift; sourceTree = ""; }; - 1BE4D837B0B86270E94A66C6621DD744 /* ObservableConvertibleType+SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+SharedSequence.swift"; path = "RxCocoa/Traits/SharedSequence/ObservableConvertibleType+SharedSequence.swift"; sourceTree = ""; }; - 1C0CD23B7B066BEEB1E8B88E149CC35F /* UIApplication+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIApplication+DDCategory/UIApplication+DDCategory.m"; sourceTree = ""; }; - 1C144673DA81368C881E591519555C40 /* OperationQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OperationQueueScheduler.swift; path = RxSwift/Schedulers/OperationQueueScheduler.swift; sourceTree = ""; }; - 1C298E694BE1435C44BD309B7BF4845B /* IQKeyboardManager+UITextFieldViewNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+UITextFieldViewNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+UITextFieldViewNotification.swift"; sourceTree = ""; }; - 1C6E0CE6E040E868C4B0B105196EE7D4 /* EKNotificationMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKNotificationMessage.swift; path = Source/Model/EKNotificationMessage.swift; sourceTree = ""; }; - 1C89DDCB6B76E6E74991155BDD7417BF /* EKAttributes+BackgroundStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+BackgroundStyle.swift"; path = "Source/Model/EntryAttributes/EKAttributes+BackgroundStyle.swift"; sourceTree = ""; }; - 1CCC32A15E2D7DF8024C4214D3BEB275 /* ZLPhotoBrowser.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = ZLPhotoBrowser.bundle; path = Sources/ZLPhotoBrowser.bundle; sourceTree = ""; }; - 1CCDEC305D8C287F103BFB6BBF51CBB3 /* EKRatingSymbolView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingSymbolView.swift; path = Source/MessageViews/MessagesUtils/EKRatingSymbolView.swift; sourceTree = ""; }; - 1D0E7E5057462F655D8F4E52508E671F /* DDBaseTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTextView.m; path = DDBasicControlsKit_Private/Classes/DDBaseTextView/DDBaseTextView.m; sourceTree = ""; }; - 1D3379D26F54ACFD9C0723474C82A4B3 /* Observable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Observable.swift; path = RxSwift/Observable.swift; sourceTree = ""; }; - 1D422E0445C0E667A8DDCAB237B98C88 /* ScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItem.swift; path = RxSwift/Schedulers/Internal/ScheduledItem.swift; sourceTree = ""; }; - 1D4D92896859D0470BA3C9A6954E5BB3 /* DDProgressHUDKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDProgressHUDKit_Private-prefix.pch"; sourceTree = ""; }; - 1D859E0B839D8C5D9A193A0ADCD27C54 /* ZLBaseStickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLBaseStickerView.swift; path = Sources/Edit/ZLBaseStickerView.swift; sourceTree = ""; }; - 1D9DC55FA6FB4B58435F022F362C91DB /* Decode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Decode.swift; path = RxSwift/Observables/Decode.swift; sourceTree = ""; }; - 1DC323E839BF784EB9C9F36F4A2E2734 /* WKWebView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKWebView+Rx.swift"; path = "RxCocoa/iOS/WKWebView+Rx.swift"; sourceTree = ""; }; - 1DC5AF843CBB66628ABAF8646D0C4FCD /* UISwitch+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UISwitch+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UISwitch+DDCategory/UISwitch+DDCategory.h"; sourceTree = ""; }; - 1DD865475CC7F8FA72B9919D6A1D6FBA /* ConstraintViewDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintViewDSL.swift; path = Sources/ConstraintViewDSL.swift; sourceTree = ""; }; - 1E091CB31E02C49432290E464888C472 /* Deferred.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Deferred.swift; path = RxSwift/Observables/Deferred.swift; sourceTree = ""; }; - 1E0E4BEDFFDAE8979598322B432BFA24 /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Source/RedirectHandler.swift; sourceTree = ""; }; - 1E177604F0AA8AF2D9B5A390DCBD4E74 /* PrivateKey.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrivateKey.swift; path = Source/PrivateKey.swift; sourceTree = ""; }; - 1ECD6B430CCCC5B4F68E166B0F782276 /* Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Create.swift; path = RxSwift/Observables/Create.swift; sourceTree = ""; }; - 1ED82EF26DC052CDEA216CFC0F9950C2 /* AMapNaviHUDView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviHUDView.h; path = AMapNaviKit.framework/Headers/AMapNaviHUDView.h; sourceTree = ""; }; - 1F508EB41ABEA68EA374915014019AF1 /* ESTabBarItemContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemContentView.swift; path = Sources/ESTabBarItemContentView.swift; sourceTree = ""; }; - 1F6FDCC5D94436426954BECC9C3B4E54 /* Asn1Parser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Asn1Parser.swift; path = Source/Asn1Parser.swift; sourceTree = ""; }; - 1F7572392C42E5FF330B624CEA619EEB /* BRDatePickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRDatePickerView.m; path = BRPickerView/DatePickerView/BRDatePickerView.m; sourceTree = ""; }; - 1FD819AFD8BCF3C957BC508893DE12FF /* DDCollectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDCollectionView.swift; path = DDControlsKit_Private/Classes/DDCollectionView/DDCollectionView.swift; sourceTree = ""; }; + 19377254733005E955657128E33E1A6F /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; + 199451E1057EB30B4F6597AE95CA1CC4 /* Observable+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Bind.swift"; path = "RxCocoa/Common/Observable+Bind.swift"; sourceTree = ""; }; + 19A66243AD3D9485E9C5C83ED1938C2B /* JXCategoryIndicatorParamsModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorParamsModel.h; path = Sources/Common/JXCategoryIndicatorParamsModel.h; sourceTree = ""; }; + 19B36D11F1778EE188D91A45B09616FF /* MATraceReplayOverlayRender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceReplayOverlayRender.h; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlayRender.h; sourceTree = ""; }; + 19C56CF2A70806FCBCD97D965F5DC0E2 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; + 19C9E3C0327C1C76ED844B140C91B730 /* AMapFoundationConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationConst.h; path = AMapFoundationKit.framework/Headers/AMapFoundationConst.h; sourceTree = ""; }; + 19F3DA811C0F7DCEA9A0881CACECA189 /* ZLPhotoBrowser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ZLPhotoBrowser.release.xcconfig; sourceTree = ""; }; + 1A20EC5473D4EB7A737C9176FC08B43E /* ZLImagePreviewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLImagePreviewController.swift; path = Sources/General/ZLImagePreviewController.swift; sourceTree = ""; }; + 1A2A45B5E4896678A3B84E99DD436039 /* MACircleRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACircleRenderer.h; path = AMapNaviKit.framework/Headers/MACircleRenderer.h; sourceTree = ""; }; + 1A4F8FD648081A3FA0E9481699E9BFAA /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; + 1A9117C665F3DBE47DD02469FDD738FD /* MAUserLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAUserLocation.h; path = AMapNaviKit.framework/Headers/MAUserLocation.h; sourceTree = ""; }; + 1A99C320D0B8CC707AD90CDAE1641751 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; + 1AAECDCE5C859A0FE0383D1EB2F5E8FA /* EKAttributes+Animation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Animation.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Animation.swift"; sourceTree = ""; }; + 1AAF8AB7F98E7FBEFBA7A8185B481935 /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; + 1AB8E151032EACAC5DF0370A209F5024 /* SubscribeOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscribeOn.swift; path = RxSwift/Observables/SubscribeOn.swift; sourceTree = ""; }; + 1AD0733D9FE75FC636F2208A06CEDD0A /* UIView+Responder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Responder.swift"; path = "Source/Utils/UIView+Responder.swift"; sourceTree = ""; }; + 1AF3DB056FF768A884948A7AC1886EBC /* ZLAlbumListModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAlbumListModel.swift; path = Sources/General/ZLAlbumListModel.swift; sourceTree = ""; }; + 1B0C75E56DF0CA9B77277AFE7D089A7E /* DefaultIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultIfEmpty.swift; path = RxSwift/Observables/DefaultIfEmpty.swift; sourceTree = ""; }; + 1B1F32902B47B02DC2AC38B100BD02E9 /* BRBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRBaseView.h; path = BRPickerView/Base/BRBaseView.h; sourceTree = ""; }; + 1B7C4C7E7DFC21015CF8FC51298CC504 /* LayoutConstraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraint.swift; path = Sources/LayoutConstraint.swift; sourceTree = ""; }; + 1B8338C72FAAE8A7C988D9DE8E51D4EC /* DDMAMapKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDMAMapKit_Private-umbrella.h"; sourceTree = ""; }; + 1B9E173A3B3BD8F758DF24A5F3C04B8F /* ZLPhotoBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZLPhotoBrowser.h; path = Sources/ZLPhotoBrowser.h; sourceTree = ""; }; + 1BA63FF274F9C8199BF6CA2EC71544AA /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Sources/Networking/SessionDelegate.swift; sourceTree = ""; }; + 1BB675B7481C947546D1269F1A55B716 /* Never.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Never.swift; path = RxSwift/Observables/Never.swift; sourceTree = ""; }; + 1C27224308E926D6CED76DDD40C340F0 /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; + 1C59BB130807F6D550642F3D750E40AA /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; + 1CF20CD29054C5545336588BB54FD196 /* DDMAGeometry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMAGeometry.h; path = DDMAMapKit_Private/Classes/DDMAUtil/DDMAGeometry.h; sourceTree = ""; }; + 1CF28103E63746143E139DBE4C2F6184 /* EKAttributes+Scroll.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Scroll.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Scroll.swift"; sourceTree = ""; }; + 1CFF71A147395732903140C250F76BB7 /* UILabel+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UILabel+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UILabel+DDCategory/UILabel+DDCategory.m"; sourceTree = ""; }; + 1D0FC67721BD9964D43BF569D58461A2 /* DDSwitch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDSwitch.swift; path = DDControlsKit_Private/Classes/DDSwitch/DDSwitch.swift; sourceTree = ""; }; + 1D3FDEBB3AEBC446882DCBE9DA2B10A3 /* DDBaseScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseScrollView.h; path = DDBasicControlsKit_Private/Classes/DDBaseScrollView/DDBaseScrollView.h; sourceTree = ""; }; + 1D5F1E5E3E2084D1B61C8124D66FF6AB /* RxCocoaObjCRuntimeError+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "RxCocoaObjCRuntimeError+Extensions.swift"; path = "RxCocoa/Common/RxCocoaObjCRuntimeError+Extensions.swift"; sourceTree = ""; }; + 1D69FE516AFF4FEDAA283BC7EA352AA0 /* EKColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKColor.swift; path = Source/Model/EKColor.swift; sourceTree = ""; }; + 1DF9904B080AB593E51305111BF571A5 /* ObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableType.swift; path = RxSwift/ObservableType.swift; sourceTree = ""; }; + 1DF9F2AADF58D671D0B90DF444BB06C0 /* AMapGeoFenceRegionObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceRegionObj.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceRegionObj.h; sourceTree = ""; }; + 1E1818EA7CE77044E29D069768BD2A2C /* UIViewArray+QuickLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewArray+QuickLayout.swift"; path = "Source/Extensions/QuickLayout/UIViewArray+QuickLayout.swift"; sourceTree = ""; }; + 1EA80EA9DCB270302DAC7F65AFE579B0 /* Alamofire.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.release.xcconfig; sourceTree = ""; }; + 1EC2252F82D266AE7F938DE967080413 /* DDLogKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDLogKit_Private.release.xcconfig; sourceTree = ""; }; + 1F22983D02B664189D884F954DC89577 /* UIImageView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIImageView+DDCategory/UIImageView+DDCategory.h"; sourceTree = ""; }; + 1F39DFB50C0CEE5C07570D1F53966326 /* UIViewController+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIViewController+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 1F5D5731FD78A7C35393153B615F88C5 /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; + 1FD8A32D512C40D754E44C9DC3B771BE /* AMapNaviRideView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRideView.h; path = AMapNaviKit.framework/Headers/AMapNaviRideView.h; sourceTree = ""; }; 1FEA06F110D30604A9FB015A9790A954 /* DDControlsKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDControlsKit_Private; path = libDDControlsKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 1FFD4C7D986D5A9ABF7146B92D6428E3 /* AMapNavi-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapNavi-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; - 2009FB64C9E51FAA7F1C661FBE926B1F /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; - 20422D1E4E74FD8DB3FB1E917DE53AC8 /* RxCollectionViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDelegateProxy.swift; sourceTree = ""; }; - 2073F87C6D23FB4C08394F7AF94D01AC /* ConstraintMakerRelatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerRelatable.swift; path = Sources/ConstraintMakerRelatable.swift; sourceTree = ""; }; - 2128C02D27F0F82C309D006D82574219 /* ZLLanguageDefine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLLanguageDefine.swift; path = Sources/General/ZLLanguageDefine.swift; sourceTree = ""; }; - 2128F15BA4C86E8ED3189D13DE1E8C27 /* ObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableType.swift; path = RxSwift/ObservableType.swift; sourceTree = ""; }; - 217C866C59E4E876CAFEA4A8B18EED9A /* KingfisherOptionsInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherOptionsInfo.swift; path = Sources/General/KingfisherOptionsInfo.swift; sourceTree = ""; }; - 21C35D978DC1A48371A558E2F5FD5458 /* UISwitch+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISwitch+Rx.swift"; path = "RxCocoa/iOS/UISwitch+Rx.swift"; sourceTree = ""; }; - 21E4511CFC5B86415FF903568EFE0E96 /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; - 220C9FC125102C212017E3D5360E40F5 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; - 2215CA305EB28F8BC752F56AC206D861 /* ZLThumbnailPhotoCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLThumbnailPhotoCell.swift; path = Sources/General/ZLThumbnailPhotoCell.swift; sourceTree = ""; }; - 227D5C20DAC5A6882624BCFF84BFCF3D /* JXCategoryViewDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryViewDefines.h; path = Sources/Common/JXCategoryViewDefines.h; sourceTree = ""; }; - 228670185E76FB0C1D655D0C6B53DD63 /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefresh/Base/MJRefreshFooter.h; sourceTree = ""; }; - 22B514849D5A4983887C1F4075AE7139 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; - 22FC17AF43D343B080C6CA75FDBBDD57 /* JXCategoryIndicatorRainbowLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorRainbowLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorRainbowLineView.h; sourceTree = ""; }; - 231CC4A3A4CF964F93469DDAE4FE160D /* ZLPhotoPreviewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewController.swift; path = Sources/General/ZLPhotoPreviewController.swift; sourceTree = ""; }; - 2334399E5D1C6D76014E4C3364A55748 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; - 234A9E46F3A62219A136813138A64ABD /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; - 237571514748449C9DEBBF69C47A7CFD /* AMapFoundation-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapFoundation-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; - 23AB951B57ABE40ECC7FB7C1FC61C520 /* Alamofire.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.debug.xcconfig; sourceTree = ""; }; - 23AF7D4DBA46967614A06F4D9C5D1AEF /* MAGltfOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGltfOverlay.h; path = AMapNaviKit.framework/Headers/MAGltfOverlay.h; sourceTree = ""; }; - 23CB2A5AB8A31970200D390366725669 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; - 23EAA9F6CCD8479449A971A22B0C2129 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; - 23F066A38F0BF399965EB84BC9A90B8D /* ConstraintMultiplierTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMultiplierTarget.swift; path = Sources/ConstraintMultiplierTarget.swift; sourceTree = ""; }; - 23F812061A0FADB75F57187E35DD1A70 /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = ""; }; - 242042ABEF57F226FFBE5440B5CF22C4 /* DefaultIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultIfEmpty.swift; path = RxSwift/Observables/DefaultIfEmpty.swift; sourceTree = ""; }; - 2422A0E8F83A9C488ECE5FAA44DD210A /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; - 249A441A40E84569CF5DBB1D09DCEDD3 /* SkipWhile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipWhile.swift; path = RxSwift/Observables/SkipWhile.swift; sourceTree = ""; }; - 24A468DAB9A7D9E988E0E9267BDAE322 /* IQKeyboardManager+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Position.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Position.swift"; sourceTree = ""; }; - 24AB60430C88BAE9A51BB73EDF64E5B7 /* MemoryStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MemoryStorage.swift; path = Sources/Cache/MemoryStorage.swift; sourceTree = ""; }; - 24DB28A9C633662C130D493AC963ACBA /* ESTabBarController-swift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ESTabBarController-swift-dummy.m"; sourceTree = ""; }; - 250899CFA9E35E2EDB9D0E6E2472E8F5 /* Infallible+Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Zip+arity.swift"; path = "RxSwift/Traits/Infallible/Infallible+Zip+arity.swift"; sourceTree = ""; }; - 2592CA66B11529AEE021D8C5D77FF70E /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; - 259A4B15C93543FAE7C4573300F2A1C8 /* ZFVolumeBrightnessView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFVolumeBrightnessView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFVolumeBrightnessView.m; sourceTree = ""; }; - 25B1751F5E34DD87BCE7F7214B19DF6C /* DDTimerSwiftKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDTimerSwiftKit_Private-prefix.pch"; sourceTree = ""; }; - 25B7C49E434F0FD6481719D7A1CAF359 /* CGFloat+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CGFloat+ZLPhotoBrowser.swift"; path = "Sources/Extensions/CGFloat+ZLPhotoBrowser.swift"; sourceTree = ""; }; - 25D5B0EC7853FA1611F5ECF6F9051834 /* EKImageNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKImageNoteMessageView.swift; path = Source/MessageViews/Notes/EKImageNoteMessageView.swift; sourceTree = ""; }; - 264D957F0C6D44F8ED6DFEF13A47CA89 /* NSButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Kingfisher.swift"; path = "Sources/Extensions/NSButton+Kingfisher.swift"; sourceTree = ""; }; - 26C10877BAE09CF271CA0D8362D7A023 /* EKPopUpMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKPopUpMessage.swift; path = Source/Model/EKPopUpMessage.swift; sourceTree = ""; }; - 26DA83B37022F6C75CB8CFA3FD5178F0 /* MACustomCalloutView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomCalloutView.h; path = AMapNaviKit.framework/Headers/MACustomCalloutView.h; sourceTree = ""; }; - 270E907EF3D91D93989F546596E95202 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; - 271DC27C2C97DCB807D0E4EAED6C02B7 /* UINavigationItem+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationItem+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UINavigationItem+DDCategory/UINavigationItem+DDCategory.h"; sourceTree = ""; }; - 275B2489357F6B943066C4950DD73452 /* Maybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Maybe.swift; path = RxSwift/Traits/PrimitiveSequence/Maybe.swift; sourceTree = ""; }; - 27867E8B8A05DC2157DBFE83F620C286 /* UIControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIControl+Rx.swift"; path = "RxCocoa/iOS/UIControl+Rx.swift"; sourceTree = ""; }; - 27A0DE390500D96C03B183EF0D429F0F /* IQKeyboardManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Debug.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Debug.swift"; sourceTree = ""; }; - 27DA64E3F20EB1C1EC08004508E2C16E /* SchedulerType+SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SchedulerType+SharedSequence.swift"; path = "RxCocoa/Traits/SharedSequence/SchedulerType+SharedSequence.swift"; sourceTree = ""; }; - 27E04B72848207C13EF142E2492B2AEE /* AMapNaviRideManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRideManager.h; path = AMapNaviKit.framework/Headers/AMapNaviRideManager.h; sourceTree = ""; }; - 27E2F9777D905718F97C32C42E876362 /* EKProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKProperty.swift; path = Source/Model/EKProperty.swift; sourceTree = ""; }; - 27EB391616D427D471D8EB2DBF510931 /* AuthenticationChallengeResponsable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationChallengeResponsable.swift; path = Sources/Networking/AuthenticationChallengeResponsable.swift; sourceTree = ""; }; - 280840CA64E5DDE7D388A8A799F735DB /* AMapURLSearchType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearchType.h; path = AMapFoundationKit.framework/Headers/AMapURLSearchType.h; sourceTree = ""; }; - 281A8CB84D21A4F9EB382BAE155A0A60 /* DDZFPlayerKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDZFPlayerKit_Private-prefix.pch"; sourceTree = ""; }; - 282D7124F31EF80A3F99C92CE1C7C639 /* ConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintItem.swift; path = Sources/ConstraintItem.swift; sourceTree = ""; }; - 283576C304850D61EA0ED1A252988D7B /* RxRelay-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxRelay-dummy.m"; sourceTree = ""; }; - 2855E06F9F10691B595A8F17B10255C7 /* UINavigationController+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationController+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UINavigationController+DDCategory/UINavigationController+DDCategory.h"; sourceTree = ""; }; - 286FEC52CAA80C8D342492E81E89B954 /* IQUIView+Hierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+Hierarchy.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIView+Hierarchy.swift"; sourceTree = ""; }; - 28A85DE8B5EA004C49BEBEE2B8077FC7 /* MAHeatMapVectorGridOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorGridOverlay.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorGridOverlay.h; sourceTree = ""; }; - 28F61DE58C2CA5F8307902466CA8FADF /* Timeout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeout.swift; path = RxSwift/Observables/Timeout.swift; sourceTree = ""; }; - 29432EDCCC5432693311FB3A1E4390F0 /* NSBundle+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSBundle+DDCategory/NSBundle+DDCategory.h"; sourceTree = ""; }; - 29A451DB1577B4AA8431FE05F486FAAB /* DDTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTableViewCell.swift; path = DDControlsKit_Private/Classes/DDTableViewCell/DDTableViewCell.swift; sourceTree = ""; }; - 29B5A2AC78B79FBD6F1A3E3B149F7EB7 /* MABaseOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MABaseOverlay.h; path = AMapNaviKit.framework/Headers/MABaseOverlay.h; sourceTree = ""; }; - 29BE9E31903DAE10D2A89D3008DFA912 /* JXCategoryView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXCategoryView.release.xcconfig; sourceTree = ""; }; - 29D4E98A792538E2D480C26BDC1FAD50 /* CombineLatest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombineLatest.swift; path = RxSwift/Observables/CombineLatest.swift; sourceTree = ""; }; - 29FBEA5D9CBA481C1FD1C39CC9087173 /* NSObject+Rx+RawRepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx+RawRepresentable.swift"; path = "RxCocoa/Foundation/NSObject+Rx+RawRepresentable.swift"; sourceTree = ""; }; - 2A041EDFB1FF2B65289829FED4D388B5 /* AMapTrackKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapTrackKit.framework; sourceTree = ""; }; + 206578216F1E192490699C70AAEB7632 /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = ""; }; + 209A87D1B9BC2D6301BB2F2E7E07F885 /* DDMAMapKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDMAMapKit_Private-dummy.m"; sourceTree = ""; }; + 20B6D10CE1EA2CC1F2289F56B4BA9C52 /* BRDatePickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRDatePickerView.m; path = BRPickerView/DatePickerView/BRDatePickerView.m; sourceTree = ""; }; + 20D1ED4F3728D5F8DA90CE2EFB37B3AE /* DDDateKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDDateKit_Private.release.xcconfig; sourceTree = ""; }; + 2103A0E2B86EC485F69470ADE31B8FF5 /* ESTabBarItemBadgeView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemBadgeView.swift; path = Sources/ESTabBarItemBadgeView.swift; sourceTree = ""; }; + 21086E62CBCB8C87E3823CB9DB3A9820 /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJRefresh.h"; path = "MJRefresh/UIScrollView+MJRefresh.h"; sourceTree = ""; }; + 217353BBD997FEDD07AC1E006782A2EE /* Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Driver.swift; path = RxCocoa/Traits/Driver/Driver.swift; sourceTree = ""; }; + 219C47F2ACA47B1DE4E1A5C4AD6F8C18 /* DDBasicControls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBasicControls.h; path = DDBasicControlsKit_Private/Classes/DDBasicControls.h; sourceTree = ""; }; + 219FF9A5CBF2C4CCFA4820510911BA99 /* AMapTrack-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapTrack-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; + 21C4F5A3DAC4DDD6756FB22ECD673F94 /* BRAddressModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRAddressModel.m; path = BRPickerView/AddressPickerView/BRAddressModel.m; sourceTree = ""; }; + 227C901806BEBB3B2BCE64C2FAFC82DA /* PublishSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublishSubject.swift; path = RxSwift/Subjects/PublishSubject.swift; sourceTree = ""; }; + 22913BCCD6BFD108964E1970FBEF5781 /* RxTableViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDataSourceProxy.swift; sourceTree = ""; }; + 22A3E590F18A1E4CC779908BF80B0078 /* MBProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MBProgressHUD.h; path = DDProgressHUDKit_Private/Classes/MBProgressHUD.h; sourceTree = ""; }; + 22AEEDDA173FD7544482C5B759F88974 /* NSView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSView+Rx.swift"; path = "RxCocoa/macOS/NSView+Rx.swift"; sourceTree = ""; }; + 22D0C1EF358F431DAAC79A38578A86A8 /* ZFPersentInteractiveTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPersentInteractiveTransition.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPersentInteractiveTransition.m; sourceTree = ""; }; + 22EE85281F54BFC5F4671A79A568D09B /* IQTitleBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTitleBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQTitleBarButtonItem.swift; sourceTree = ""; }; + 23667F434A1D0EDA99357240B9ACA071 /* DDAudioPlayerKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDAudioPlayerKit_Private-dummy.m"; sourceTree = ""; }; + 2387FD481EB9A586057BBA4A9B5CD802 /* ColorUtil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorUtil.swift; path = DDColorKit_Private/Classes/ColorUtil.swift; sourceTree = ""; }; + 242E4C5F280D6D8DDFD21AF74E6C9233 /* DDProgressHUDKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDProgressHUDKit_Private-prefix.pch"; sourceTree = ""; }; + 246DD005FE72D8AFB15ED94629772925 /* MAShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAShape.h; path = AMapNaviKit.framework/Headers/MAShape.h; sourceTree = ""; }; + 24E7683549AA9D8976E42E20C05780AB /* DDScrollView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDScrollView.swift; path = DDControlsKit_Private/Classes/DDScrollView/DDScrollView.swift; sourceTree = ""; }; + 253569B5607BC7CDC1692A171D3F00C5 /* Materialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Materialize.swift; path = RxSwift/Observables/Materialize.swift; sourceTree = ""; }; + 2571F104F558D56AA1643BF2B7EEC96D /* ConstraintMakerRelatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerRelatable.swift; path = Sources/ConstraintMakerRelatable.swift; sourceTree = ""; }; + 25A2DEB47C7C6C38DE3079489E65FFF3 /* BRAddressModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRAddressModel.h; path = BRPickerView/AddressPickerView/BRAddressModel.h; sourceTree = ""; }; + 25A7C94C223765D5352599C368C2AB96 /* UIPickerView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIPickerView+Rx.swift"; path = "RxCocoa/iOS/UIPickerView+Rx.swift"; sourceTree = ""; }; + 25AB617439A133C50AD2EA048343F2F7 /* Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concurrency.swift; path = Source/Concurrency.swift; sourceTree = ""; }; + 25C18D2ED6904B58299AE0D9D68D1827 /* UIGestureRecognizer+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIGestureRecognizer+Rx.swift"; path = "RxCocoa/iOS/UIGestureRecognizer+Rx.swift"; sourceTree = ""; }; + 25EED2E2DDEE943C33233A0324F90CF1 /* JXCategoryFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryFactory.h; path = Sources/Common/JXCategoryFactory.h; sourceTree = ""; }; + 25FEB7887415C9D27CEE1AA31063DDAB /* RxScrollViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxScrollViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift; sourceTree = ""; }; + 26507EB4300CCB37EBAF50B26684BBF6 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; + 26C02A007CB73331CC3CC0B9F14690D2 /* RxSearchControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxSearchControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxSearchControllerDelegateProxy.swift; sourceTree = ""; }; + 26E78BD5FC32215B65E95514969DDDA2 /* MACustomBuildingOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomBuildingOverlay.h; path = AMapNaviKit.framework/Headers/MACustomBuildingOverlay.h; sourceTree = ""; }; + 271CC52B3DB7767A2547236203540694 /* KFImageRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageRenderer.swift; path = Sources/SwiftUI/KFImageRenderer.swift; sourceTree = ""; }; + 2736D0DCE22AAB9DA94E6406E9BB71EB /* MAGltfOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGltfOverlay.h; path = AMapNaviKit.framework/Headers/MAGltfOverlay.h; sourceTree = ""; }; + 2746EBB01091E25AB7A6DC9257CAE0A5 /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefresh/Base/MJRefreshFooter.h; sourceTree = ""; }; + 274B5258F7A5EE570584968533AA7BFE /* ZLPhotoPreviewPopInteractiveTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewPopInteractiveTransition.swift; path = Sources/Animation/ZLPhotoPreviewPopInteractiveTransition.swift; sourceTree = ""; }; + 275603A8F528E82EE55999D086F5CA34 /* ConstraintViewDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintViewDSL.swift; path = Sources/ConstraintViewDSL.swift; sourceTree = ""; }; + 275FD406E006154083E0BB8AA7257F93 /* DDWebImageKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDWebImageKit_Private-umbrella.h"; sourceTree = ""; }; + 27E2A3A98DDCE32BBC890AA4DAF2127D /* MAGltfOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGltfOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAGltfOverlayRenderer.h; sourceTree = ""; }; + 27E4356DDCEF88BD5CD7BB072F6550C9 /* EKAttributes+WindowLevel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+WindowLevel.swift"; path = "Source/Model/EntryAttributes/EKAttributes+WindowLevel.swift"; sourceTree = ""; }; + 2821BA426AC4839F9D0D22A12836DFFB /* ImageBinder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageBinder.swift; path = Sources/SwiftUI/ImageBinder.swift; sourceTree = ""; }; + 28A9933BD3E7F403EB5ED19E803A74C2 /* EKRatingSymbolView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingSymbolView.swift; path = Source/MessageViews/MessagesUtils/EKRatingSymbolView.swift; sourceTree = ""; }; + 29051B3C942AD92F5CA34995E6CDEA2A /* ZLEmbedAlbumListView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEmbedAlbumListView.swift; path = Sources/General/ZLEmbedAlbumListView.swift; sourceTree = ""; }; + 290E927FC45FEC741770263CB43552BC /* HistoricalScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalScheduler.swift; path = RxSwift/Schedulers/HistoricalScheduler.swift; sourceTree = ""; }; + 29336668B4EF47445FF254CF2AFA0390 /* JXCategoryImageCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageCellModel.m; path = Sources/Image/JXCategoryImageCellModel.m; sourceTree = ""; }; + 2979AAFAF45228E1D3AA831D8D4B5177 /* DDCategoryKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDCategoryKit_Private-prefix.pch"; sourceTree = ""; }; + 2986CDC423DAB128C688D13C96B5315E /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJExtension.m"; path = "MJRefresh/UIScrollView+MJExtension.m"; sourceTree = ""; }; + 29AD65CB230B1E0FB98002F011CF7879 /* BRPickerStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRPickerStyle.h; path = BRPickerView/Base/BRPickerStyle.h; sourceTree = ""; }; + 29B0911F2AC65F45EB9C0EEEB034DFB9 /* ZFPortraitViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPortraitViewController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPortraitViewController.m; sourceTree = ""; }; + 29C345A668B64C44B7B0A74B0206470F /* RxSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxSwift-dummy.m"; sourceTree = ""; }; + 29EE5F2D2B9F6E7178A70E8FFA12F663 /* ObservableConvertibleType+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Driver.swift"; path = "RxCocoa/Traits/Driver/ObservableConvertibleType+Driver.swift"; sourceTree = ""; }; + 29F460B5E3AEFB6C7975B90E4F750ED4 /* BRResultModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRResultModel.m; path = BRPickerView/StringPickerView/BRResultModel.m; sourceTree = ""; }; + 29FB5B40453AF7C6CC5769DC995B0EDD /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; + 29FDB4081ED8501C10FD8223CC672335 /* ImageDrawing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDrawing.swift; path = Sources/Image/ImageDrawing.swift; sourceTree = ""; }; + 2A3C0274768B12039B1D8F80F51CC5DC /* AMapTrackError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackError.h; path = AMapTrackKit.framework/Headers/AMapTrackError.h; sourceTree = ""; }; 2A524049697F59E68FFBB0F0895F87E7 /* DDTimerSwiftKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDTimerSwiftKit_Private; path = libDDTimerSwiftKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 2AA1EC1952D263A77C915AFAEC91B876 /* MAOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlay.h; path = AMapNaviKit.framework/Headers/MAOverlay.h; sourceTree = ""; }; 2AB85225A76FD605AAA4578E1A765164 /* Pods-OrderScheduling.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OrderScheduling.release.xcconfig"; sourceTree = ""; }; - 2B21E4FEE4BE8BB22168C0E276B9E408 /* AMapLocation-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapLocation-NO-IDFA.release.xcconfig"; sourceTree = ""; }; - 2B3217B6B8CBB512FA28BE40CFDC46B4 /* Reduce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reduce.swift; path = RxSwift/Observables/Reduce.swift; sourceTree = ""; }; - 2BD24545FF0C25F096F800E3A25C25FA /* DDBaseAttributedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseAttributedString.h; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseAttributedString.h; sourceTree = ""; }; - 2BE1AF4101D5E139FF57742189DED998 /* _RXDelegateProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXDelegateProxy.m; path = RxCocoa/Runtime/_RXDelegateProxy.m; sourceTree = ""; }; - 2BEE02510443289CC465BEEA27A176F7 /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = ""; }; - 2C7505690BF8923788AFD38D392D2462 /* BRPickerViewMacro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRPickerViewMacro.h; path = BRPickerView/Base/BRPickerViewMacro.h; sourceTree = ""; }; - 2C883774E369C0F5862125ECD434BC24 /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = ""; }; - 2CAEAE92A90918D389D7CCD82333E57F /* ZLPhotoModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoModel.swift; path = Sources/General/ZLPhotoModel.swift; sourceTree = ""; }; - 2CE97EE2B7A3CD85FD69E3D8F826F2EB /* MKAnnotationView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "MKAnnotationView+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImageMapKit/MapKit/MKAnnotationView+WebCache.m"; sourceTree = ""; }; - 2D5BCD92C44C72931F824CC5A99B1E0A /* ReplayRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplayRelay.swift; path = RxRelay/ReplayRelay.swift; sourceTree = ""; }; - 2D7A7CED1D8CA82CC44D38208D97D306 /* IQKeyboardManager+Toolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Toolbar.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Toolbar.swift"; sourceTree = ""; }; - 2D9C4E6F91B5E65465DDF67DD6BCFDB0 /* UIView+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIView+ZLPhotoBrowser.swift"; sourceTree = ""; }; - 2DA6006EE90D86899E8A7B8E7F9B2983 /* KFImageProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageProtocol.swift; path = Sources/SwiftUI/KFImageProtocol.swift; sourceTree = ""; }; - 2DAD91B5A94EC9486D38B47694177423 /* SnapKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SnapKit-dummy.m"; sourceTree = ""; }; - 2DBCDA3159346DB0B5B1268A5B555A35 /* BRPickerView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BRPickerView.release.xcconfig; sourceTree = ""; }; - 2DE360277EB2A96E676EC9DE5ACB5BD2 /* OperationQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "OperationQueue+Alamofire.swift"; path = "Source/OperationQueue+Alamofire.swift"; sourceTree = ""; }; + 2AD0BE79D933DFDEB5DFAD79244E3BA8 /* HTTPHeaders.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPHeaders.swift; path = Source/HTTPHeaders.swift; sourceTree = ""; }; + 2ADBB69FF1BE40BBFAA006BD803A3F2F /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; + 2AE8B7F8D62D93BC27053C5698F252FF /* UIControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIControl+Rx.swift"; path = "RxCocoa/iOS/UIControl+Rx.swift"; sourceTree = ""; }; + 2AFBA4821317DD2FFE3A0D4390AF1848 /* IQKeyboardReturnKeyHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardReturnKeyHandler.swift; path = IQKeyboardManagerSwift/IQKeyboardReturnKeyHandler.swift; sourceTree = ""; }; + 2B14377420F487586B958101587AA8AA /* AMapNavi.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = AMapNavi.bundle; path = AMapNaviKit.framework/AMapNavi.bundle; sourceTree = ""; }; + 2B420DC9E7E878F705D9118F5CE92256 /* Debounce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debounce.swift; path = RxSwift/Observables/Debounce.swift; sourceTree = ""; }; + 2BD8457D4685C7868DBF890E8B00BB76 /* ParameterEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoder.swift; path = Source/ParameterEncoder.swift; sourceTree = ""; }; + 2C2DA1167FE33CA58E41E634B332A355 /* ConstraintLayoutGuide.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuide.swift; path = Sources/ConstraintLayoutGuide.swift; sourceTree = ""; }; + 2C412CF3FDA3A33E826EF4504893471B /* MAIndoorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAIndoorInfo.h; path = AMapNaviKit.framework/Headers/MAIndoorInfo.h; sourceTree = ""; }; + 2C46EA8EF1DE47563CC626D13BD71006 /* ZLImageNavController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLImageNavController.swift; path = Sources/General/ZLImageNavController.swift; sourceTree = ""; }; + 2C528017A7AB37E2EC46C8AF82F85321 /* Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utils.swift; path = RxRelay/Utils.swift; sourceTree = ""; }; + 2C5BA44FF41AA4CD65CEE4EC878C5577 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; + 2C85CE2B73266F48DD5943571B1513DD /* UIColor+JXAdd.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+JXAdd.m"; path = "Sources/Common/UIColor+JXAdd.m"; sourceTree = ""; }; + 2CC7D35DE0658E1E65BD001B3AFA5702 /* DDBaseCollectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseCollectionView.m; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionView/DDBaseCollectionView.m; sourceTree = ""; }; + 2D2A8B7CE35F9B80F3FE23830A770F95 /* ZLCustomAlertProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCustomAlertProtocol.swift; path = Sources/General/ZLCustomAlertProtocol.swift; sourceTree = ""; }; + 2DCA1D5196E0C449181AE06F962959AB /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = ""; }; 2DE47AF6516BB19369CA020EA7C48A4A /* DDNetworkingOfAlamofireKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDNetworkingOfAlamofireKit_Private; path = libDDNetworkingOfAlamofireKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2E9E083F0E2F9D06F39EE0F1D719CA9C /* Switch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Switch.swift; path = RxSwift/Observables/Switch.swift; sourceTree = ""; }; - 2EDA71E4655ACBB46694E637A6E3BDCB /* RequestModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModifier.swift; path = Sources/Networking/RequestModifier.swift; sourceTree = ""; }; - 2F13E0CF91EE62BAB0EC24793238658D /* Window.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Window.swift; path = RxSwift/Observables/Window.swift; sourceTree = ""; }; - 2F5C9A218E5415CFA35CA923E6EC4496 /* UIScrollView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+Rx.swift"; path = "RxCocoa/iOS/UIScrollView+Rx.swift"; sourceTree = ""; }; - 2F731D3A2045EA7A0F28A26D17305C70 /* UIView+QuickLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+QuickLayout.swift"; path = "Source/Extensions/QuickLayout/UIView+QuickLayout.swift"; sourceTree = ""; }; - 2FBE6873B0C89E6BAB94AE9BEDD667CE /* ObservableConvertibleType+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Signal.swift"; path = "RxCocoa/Traits/Signal/ObservableConvertibleType+Signal.swift"; sourceTree = ""; }; - 30056FBAD7F3AEC99E3F310D37F827BE /* DDFontKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDFontKit_Private.modulemap; sourceTree = ""; }; - 306D8D12ACFB3F1875A3E3A4A66EA5E7 /* UIWindow+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWindow+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIWindow+DDCategory/UIWindow+DDCategory.m"; sourceTree = ""; }; - 30BADF20AD9B3D04B4345970340F3962 /* DDSwiftLog.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDSwiftLog.swift; path = DDLogKit_Private/Classes/SwiftLog/DDSwiftLog.swift; sourceTree = ""; }; - 30D2EC85BE224E4817DB8095561AC045 /* ZLPhotoUIConfiguration+Chaining.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ZLPhotoUIConfiguration+Chaining.swift"; path = "Sources/General/ZLPhotoUIConfiguration+Chaining.swift"; sourceTree = ""; }; - 30E10978E25A8EAB4EE7F0EA8C1BD658 /* DDAudioPlayerKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDAudioPlayerKit_Private.modulemap; sourceTree = ""; }; - 30F546E8BCAFA33862B493120D44F9FF /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = ""; }; - 3161DAA35E3B01FCA4D8B391F2FF0500 /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; - 319A6DEF8780E66CED6DA98807DAF3D6 /* PrimitiveSequence+Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PrimitiveSequence+Zip+arity.swift"; path = "RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Zip+arity.swift"; sourceTree = ""; }; - 31BC6730AB61CDCE8150E16A76F2B7D6 /* DeviceInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DeviceInfo.swift; path = DDUtilsSwiftKit_Private/Classes/DeviceInfo/DeviceInfo.swift; sourceTree = ""; }; - 32583965F8BE185C5BB2B774ADDDC881 /* ESTabBarItemBadgeView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemBadgeView.swift; path = Sources/ESTabBarItemBadgeView.swift; sourceTree = ""; }; - 32873B078B8FB04C3E580A3AEED3F4BF /* EKRatingMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingMessage.swift; path = Source/Model/EKRatingMessage.swift; sourceTree = ""; }; - 32C6983D879B23B0B91040F47B2AD467 /* Producer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Producer.swift; path = RxSwift/Observables/Producer.swift; sourceTree = ""; }; - 32EAB44870B9BE5FF389C54AF303C863 /* SharedSequence+Operators+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Operators+arity.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Operators+arity.swift"; sourceTree = ""; }; - 33131CB1B44363868718F6FE67AC609A /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; - 3326B8E894952633ABD4D8A111550A6C /* SwiftyRSA.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftyRSA.modulemap; sourceTree = ""; }; - 333FF0F744DCCC8F8DC31833B4ADA3BE /* UIView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIView+DDCategory/UIView+DDCategory.m"; sourceTree = ""; }; - 3340C67728F3719BEB95E3EB0E40AA68 /* Cancelable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Cancelable.swift; path = RxSwift/Cancelable.swift; sourceTree = ""; }; - 3394196353A57EE194E8B5AC1A4F66BD /* MAMultiPointOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPointOverlay.h; path = AMapNaviKit.framework/Headers/MAMultiPointOverlay.h; sourceTree = ""; }; - 339C2A6152F51EA6AF9CA57D40E54E6A /* RxSearchBarDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxSearchBarDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxSearchBarDelegateProxy.swift; sourceTree = ""; }; + 2E0C37DE99D9731B1B1A4C331F9E1300 /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = ""; }; + 2E135BA13E044F528DBAE1E55D9157FA /* DDToastKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDToastKit_Private.modulemap; sourceTree = ""; }; + 2E2C40F1237C7A4F2125EAD78AEE68F5 /* ZLAdjustSlider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAdjustSlider.swift; path = Sources/Edit/ZLAdjustSlider.swift; sourceTree = ""; }; + 2E3AF6E52FF4E796B60018BCAF921F14 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; + 2E6DFAFE27EEC553B733AE781B308FDB /* Reduce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reduce.swift; path = RxSwift/Observables/Reduce.swift; sourceTree = ""; }; + 2E8BA8E66DB61DCD64911E5F2259AEDA /* ImagePrefetcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImagePrefetcher.swift; path = Sources/Networking/ImagePrefetcher.swift; sourceTree = ""; }; + 2E9594BEBA6789D3BF4232BD9ECD2AFE /* MAMapStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapStatus.h; path = AMapNaviKit.framework/Headers/MAMapStatus.h; sourceTree = ""; }; + 2EC2F7BED63C64F28AA65BD7B25A61A4 /* MAGroundOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGroundOverlay.h; path = AMapNaviKit.framework/Headers/MAGroundOverlay.h; sourceTree = ""; }; + 2F00728D7064C5080BED01B0574930D2 /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJRefresh.m"; path = "MJRefresh/UIScrollView+MJRefresh.m"; sourceTree = ""; }; + 2F01D43E87A09342667E2389BEE515CF /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; + 2FA941672D04EEFDD5A25A4A3B555643 /* DDWebImageKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDWebImageKit_Private.modulemap; sourceTree = ""; }; + 2FD81226AD6B428809B3690452F1589A /* SwiftyRSA-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftyRSA-dummy.m"; sourceTree = ""; }; + 2FDFF23D0CA9275C1C9B3BF37FC20772 /* GroupedObservable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupedObservable.swift; path = RxSwift/GroupedObservable.swift; sourceTree = ""; }; + 2FE0EAB85043C11DEFD666CF542EEBF0 /* ZLEditVideoViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditVideoViewController.swift; path = Sources/Edit/ZLEditVideoViewController.swift; sourceTree = ""; }; + 3043EDD79265F99BAB8C607B74DB57C2 /* ExtensionHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExtensionHelpers.swift; path = Sources/Utility/ExtensionHelpers.swift; sourceTree = ""; }; + 304994798CCDFA55DBD2260E3A7C0B30 /* UITextField+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextField+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITextField+DDCategory/UITextField+DDCategory.m"; sourceTree = ""; }; + 30A1628A5729F85121E84E554EE77014 /* ZFVolumeBrightnessView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFVolumeBrightnessView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFVolumeBrightnessView.h; sourceTree = ""; }; + 30CDAB8F0A186D15D7DDA9D9C9175411 /* MemoryStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MemoryStorage.swift; path = Sources/Cache/MemoryStorage.swift; sourceTree = ""; }; + 30D781AC3C405856C160630398633026 /* UIBarButtonItem+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIBarButtonItem+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIBarButtonItem+DDCategory/UIBarButtonItem+DDCategory.h"; sourceTree = ""; }; + 30DCE5AC180C302B663E5373ADBD6769 /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; + 314B021694CE8545DE6A4314F037B601 /* BehaviorRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorRelay.swift; path = RxRelay/BehaviorRelay.swift; sourceTree = ""; }; + 318C619A33D0896D66A964DC0D9550F5 /* RxCocoa-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxCocoa-dummy.m"; sourceTree = ""; }; + 31D6A3C885FC0DC86BB87846447CDA02 /* EKContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKContentView.swift; path = Source/Infra/EKContentView.swift; sourceTree = ""; }; + 31FCBAD90AAC22C4F1029ED36E1071EA /* DDZFPlayerKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDZFPlayerKit_Private-dummy.m"; sourceTree = ""; }; + 3215F98470867A2FCB4E605785C27CB5 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; + 32160D9FB5932DE0FC0B26B94BABF671 /* HTTPMethod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPMethod.swift; path = Source/HTTPMethod.swift; sourceTree = ""; }; + 32401D1F033150760A66639F648D97DD /* ESTabBarController-swift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ESTabBarController-swift-dummy.m"; sourceTree = ""; }; + 32758B14C4EA1965F4718EEEA3DC0B5F /* DDTableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTableView.swift; path = DDControlsKit_Private/Classes/DDTableView/DDTableView.swift; sourceTree = ""; }; + 32C1A959F514B7502F8CA5C6AFA186D1 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; + 32EC1C5CBEF89285AC6C31291332B527 /* ZLPhotoBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ZLPhotoBrowser-prefix.pch"; sourceTree = ""; }; + 33232CA544685755203F36FB9CAD8B4B /* UIColor+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIColor+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 334B064273CA052BCDF0EE09B6D1C80D /* JXCategoryTitleCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleCell.h; path = Sources/Title/JXCategoryTitleCell.h; sourceTree = ""; }; + 33F547B7B60AE95D9BE75E69263E8212 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; + 33FDE16A5277EC7BA28DA5C74ECC367D /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; 3431A513DD5CF052B33F1798DE98E1E6 /* Pods-OrderScheduling-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-OrderScheduling-acknowledgements.markdown"; sourceTree = ""; }; - 346A7BA293D6FC8483EC393283E87CE9 /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = ""; }; - 34CDD1CE37AFFBCF7003739F05D75EA0 /* JXCategoryNumberCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberCell.h; path = Sources/Number/JXCategoryNumberCell.h; sourceTree = ""; }; - 3521E43909548D5C449F95A3DB220912 /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; - 3525D33EE1B318F86A3991C54B87DAE1 /* RxCocoa.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxCocoa.modulemap; sourceTree = ""; }; - 35450C3C90041047307AFA530B4FB58B /* ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoBrowser.swift; path = Sources/General/ZLPhotoBrowser.swift; sourceTree = ""; }; + 3433DB6885A6D5358FE7F8A29CC19A8A /* DDControlsKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDControlsKit_Private.modulemap; sourceTree = ""; }; + 3454D0E998C8F3834C9D1943D6E1E228 /* SwiftEntryKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftEntryKit.modulemap; sourceTree = ""; }; + 34C0423C439638DEAA0AD83515D1439B /* AMapNaviLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviLocation.h; path = AMapNaviKit.framework/Headers/AMapNaviLocation.h; sourceTree = ""; }; + 34DC138CDF8598CC0A058B3CB89AEB00 /* JXCategoryBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseView.m; path = Sources/Base/JXCategoryBaseView.m; sourceTree = ""; }; + 34E024246E0C85234B9C2F4683A12A74 /* UIView+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Utils.swift"; path = "Source/Extensions/UIView+Utils.swift"; sourceTree = ""; }; + 35429E16EE003FB5FB9C52D02F481771 /* JXCategoryTitleCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleCellModel.m; path = Sources/Title/JXCategoryTitleCellModel.m; sourceTree = ""; }; + 358CE46A9949752CF428266851F93D2E /* JXCategoryImageCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageCell.h; path = Sources/Image/JXCategoryImageCell.h; sourceTree = ""; }; + 359D77A8531D10C70D9424D02DE1BA87 /* URLConvertible+URLRequestConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLConvertible+URLRequestConvertible.swift"; path = "Source/URLConvertible+URLRequestConvertible.swift"; sourceTree = ""; }; + 359D99688C36585ED1AC1C583B3B20CC /* MAHeatMapVectorOverlayRender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorOverlayRender.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorOverlayRender.h; sourceTree = ""; }; + 35A827FD3B260942A337B9BB317FEE1F /* NSAttributedString+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSAttributedString+DDCategory.h"; sourceTree = ""; }; 35BC09180850FDD03C450D14BD310714 /* DDProgressHUDKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDProgressHUDKit_Private; path = libDDProgressHUDKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 35BDCD95DEAEFFC45B03A2677FA44305 /* AMapGeoFenceError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceError.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceError.h; sourceTree = ""; }; - 35C47EE90EB8C0E8B997E7D10C024B1A /* ZFFloatView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFFloatView.h; path = DDZFPlayerKit_Private/Classes/Core/ZFFloatView.h; sourceTree = ""; }; - 366C157EEC0CEC5951E19F411CD4ADEC /* UITabBar+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITabBar+Rx.swift"; path = "RxCocoa/iOS/UITabBar+Rx.swift"; sourceTree = ""; }; - 36882266D56742AF3E97A83FB24DCAEA /* ESTabBarController-swift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "ESTabBarController-swift.debug.xcconfig"; sourceTree = ""; }; - 36A8D3011FE0D727683CB9388B8D0B8A /* Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+arity.swift"; path = "RxSwift/Observables/Zip+arity.swift"; sourceTree = ""; }; - 373622AAF0D5DB4A6E1B048BD51DCB54 /* DriveRouteCustomAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DriveRouteCustomAnnotationView.h; path = DDMAMapKit_Private/Classes/DDMAMap/AnnotationView/DriveRouteCustomAnnotationView.h; sourceTree = ""; }; - 378042B17205B4AF9E31C1411F3392E0 /* SkipUntil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipUntil.swift; path = RxSwift/Observables/SkipUntil.swift; sourceTree = ""; }; - 378E05D526BC6532FFE1FD5E4CC5DEDE /* RxMutableBox.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxMutableBox.swift; path = RxSwift/RxMutableBox.swift; sourceTree = ""; }; - 37B78C25010DAB73DB43D284B5A0CC04 /* Zip+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+Collection.swift"; path = "RxSwift/Observables/Zip+Collection.swift"; sourceTree = ""; }; - 37D3D04490451704B11D7D43D18068B4 /* EKNotificationMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKNotificationMessageView.swift; path = Source/MessageViews/EKNotificationMessageView.swift; sourceTree = ""; }; - 37FF1B198B116FFE6A7C4E3FEE9969D1 /* ZLPhotoBrowser-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ZLPhotoBrowser-umbrella.h"; sourceTree = ""; }; - 381A53D47F78F15CFB699071AC466B0E /* AMapTrack-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapTrack-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; - 383AE731664CE428798D9444028D70FC /* SwiftEntryKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftEntryKit-umbrella.h"; sourceTree = ""; }; - 3875BD4A5D39F47F13368B8F6434E5F4 /* ZLPhotoBrowser.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ZLPhotoBrowser.modulemap; sourceTree = ""; }; - 38C5E69575397A824ACC20EEE48A7C48 /* Disposables.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposables.swift; path = RxSwift/Disposables/Disposables.swift; sourceTree = ""; }; - 38D8626C967C244EE734475FEA1D1B66 /* DDBaseSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseSwitch.m; path = DDBasicControlsKit_Private/Classes/DDBaseSwitch/DDBaseSwitch.m; sourceTree = ""; }; - 38F344FEA99B81836A0E8C25B2A98111 /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = ""; }; - 38F6F6E8AAF50A0C90F9A6CAE4B8CDF5 /* EncryptedMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EncryptedMessage.swift; path = Source/EncryptedMessage.swift; sourceTree = ""; }; - 391B2BDE22603532A69DA3183B9889A8 /* Box.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Box.swift; path = Sources/Utility/Box.swift; sourceTree = ""; }; - 394A07D6CA58B775867B883F0C07FC81 /* MAOfflineItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItem.h; path = AMapNaviKit.framework/Headers/MAOfflineItem.h; sourceTree = ""; }; - 39747070E76BCD6148E337EFB621459A /* DDZFPlayerKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDZFPlayerKit_Private-dummy.m"; sourceTree = ""; }; - 39885DFE53079DA33C3AF6C34E8644EA /* ZFSpeedLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFSpeedLoadingView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSpeedLoadingView.m; sourceTree = ""; }; + 35E8155188ECCFFCEBCE7AC43E612947 /* DDDateKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDDateKit_Private-dummy.m"; sourceTree = ""; }; + 364384CF1B6BAFAF34AFAC6D64A0B2D7 /* Box.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Box.swift; path = Sources/Utility/Box.swift; sourceTree = ""; }; + 3651E0BF8409EC9EBB8C8115BF0C1727 /* WKInterfaceImage+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKInterfaceImage+Kingfisher.swift"; path = "Sources/Extensions/WKInterfaceImage+Kingfisher.swift"; sourceTree = ""; }; + 3667D48D78F4EB9E9A9A8982E3A1F6BA /* AsMaybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsMaybe.swift; path = RxSwift/Observables/AsMaybe.swift; sourceTree = ""; }; + 36BC95E1B7FB0EB339BF33169EA412F1 /* RxRelay-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxRelay-dummy.m"; sourceTree = ""; }; + 36C9C18CC42223BE667D8F0C182D1D56 /* RxSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-prefix.pch"; sourceTree = ""; }; + 370BE790B2678C2C7C8A43B2B8A9159D /* DriveRouteCustomAnnotation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DriveRouteCustomAnnotation.m; path = DDMAMapKit_Private/Classes/DDMAMap/Annotation/DriveRouteCustomAnnotation.m; sourceTree = ""; }; + 3732C756B9A8F8A504B32D6494F93598 /* GIFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GIFAnimatedImage.swift; path = Sources/Image/GIFAnimatedImage.swift; sourceTree = ""; }; + 373509CBF26220BD6D3A6892AFA34762 /* DistinctUntilChanged.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DistinctUntilChanged.swift; path = RxSwift/Observables/DistinctUntilChanged.swift; sourceTree = ""; }; + 37365AF186EE02D7D1EAB44D1CC09F9F /* Indicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Indicator.swift; path = Sources/Views/Indicator.swift; sourceTree = ""; }; + 37520C2DA05C5C77F4D1CFD5DC48D787 /* JXCategoryTitleVerticalZoomCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomCell.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCell.m; sourceTree = ""; }; + 3753B74746DACEC042103493B829DB68 /* ZFPlayerMediaControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerMediaControl.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerMediaControl.h; sourceTree = ""; }; + 37823DB9A4881236466DB30127339D61 /* ImmediateSchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImmediateSchedulerType.swift; path = RxSwift/ImmediateSchedulerType.swift; sourceTree = ""; }; + 378BF1E8082A530D9DC6DF78EA482EB5 /* JXCategoryDotCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotCell.h; path = Sources/Dot/JXCategoryDotCell.h; sourceTree = ""; }; + 37D03742B7BCEF1AF4020C53BB2CEEBC /* ImageCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageCache.swift; path = Sources/Cache/ImageCache.swift; sourceTree = ""; }; + 386871F6B44C76133AF3313A373A10F4 /* BRPickerView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BRPickerView-umbrella.h"; sourceTree = ""; }; + 38B4BE3790A38C9083BABC50AA41A6B9 /* MJRefreshConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConfig.h; path = MJRefresh/MJRefreshConfig.h; sourceTree = ""; }; + 38FE20A4392B6C1C37B12107CC19D53E /* MAMultiPointOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPointOverlay.h; path = AMapNaviKit.framework/Headers/MAMultiPointOverlay.h; sourceTree = ""; }; + 399515456B2D238C4E62CBEBE8BFE8B4 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; 39C2ABB7EE85CD6B4D61998636DB33BB /* Pods-OrderSchedulingNotificationService-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-OrderSchedulingNotificationService-acknowledgements.plist"; sourceTree = ""; }; - 39E388348852B7D5BCF7B5D0820E7305 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; - 3A821BEBE1EAF20B2D22D0B87ADE6CA4 /* UIScrollView+ZFPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+ZFPlayer.h"; path = "DDZFPlayerKit_Private/Classes/Core/UIScrollView+ZFPlayer.h"; sourceTree = ""; }; - 3B25C17A130C7D0803E27E8E5E9F32A2 /* EKAttributes+Shadow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Shadow.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Shadow.swift"; sourceTree = ""; }; - 3BF5D3C8E5F8607DB7612921FDEE0AFD /* HapticFeedbackGenerator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HapticFeedbackGenerator.swift; path = Source/Utils/HapticFeedbackGenerator.swift; sourceTree = ""; }; - 3C47F9FA2DF062E010573C727B9870A7 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; - 3C8A4DFD485152B53E1EEFEA1C8B36D7 /* URLEncodedFormEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLEncodedFormEncoder.swift; path = Source/URLEncodedFormEncoder.swift; sourceTree = ""; }; - 3C92185A2626CC518730C6C24F19F24E /* UINavigationController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UINavigationController+Rx.swift"; path = "RxCocoa/iOS/UINavigationController+Rx.swift"; sourceTree = ""; }; - 3C92E49EA9EEE93BF98BBBE2040F381E /* MAGroundOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGroundOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAGroundOverlayRenderer.h; sourceTree = ""; }; - 3C991CF2D3C6D6F087F1081D318A46D5 /* DispatchQueueConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DispatchQueueConfiguration.swift; path = RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift; sourceTree = ""; }; - 3C9F229151B8B259B893B17EAB1CECCF /* Multicast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Multicast.swift; path = RxSwift/Observables/Multicast.swift; sourceTree = ""; }; - 3CAD3E3A21F8ADE24E4B8F7C2D348734 /* DisposeBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBase.swift; path = RxSwift/Disposables/DisposeBase.swift; sourceTree = ""; }; - 3CD0D764119E17C6F7EF48E8D95A4101 /* JXCategoryIndicatorRainbowLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorRainbowLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorRainbowLineView.m; sourceTree = ""; }; - 3CD57B719C962B526E7559FF4BD48281 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; - 3D01EE13B02828DBBBDF6CE75703D077 /* RecursiveScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveScheduler.swift; path = RxSwift/Schedulers/RecursiveScheduler.swift; sourceTree = ""; }; - 3DEC0246C9CE3F03DAFAB667BC9038DC /* DDBaseTableView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTableView.h; path = DDBasicControlsKit_Private/Classes/DDBaseTableView/DDBaseTableView.h; sourceTree = ""; }; - 3DEF2C80E3775C1069BA968CD0083DDE /* JXCategoryView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXCategoryView.debug.xcconfig; sourceTree = ""; }; - 3E10BAD04178D8BC9A360ACB84AC6AAD /* DDBaseButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseButton.h; path = DDBasicControlsKit_Private/Classes/DDBaseButton/DDBaseButton.h; sourceTree = ""; }; - 3E453A6D776B4C2DD2CE4853902DC43E /* UIWindow+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWindow+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIWindow+DDCategory/UIWindow+DDCategory.h"; sourceTree = ""; }; - 3E8E12E076DE37165D6768298B761E78 /* NSControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSControl+Rx.swift"; path = "RxCocoa/macOS/NSControl+Rx.swift"; sourceTree = ""; }; - 3EB7402D9902C9EA57FD6402B339105D /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalHeader.m; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.m; sourceTree = ""; }; - 3EC0CFDA55763B0AAA7A9D848A94D804 /* BRAddressModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRAddressModel.m; path = BRPickerView/AddressPickerView/BRAddressModel.m; sourceTree = ""; }; - 3EE914869B44DC1FBBD1CDD946DF2DD5 /* KFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFAnimatedImage.swift; path = Sources/SwiftUI/KFAnimatedImage.swift; sourceTree = ""; }; - 3EE9CEF2C2F5BCD9EFE90ABC09A789C6 /* UITextView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITextView+DDCategory/UITextView+DDCategory.m"; sourceTree = ""; }; - 3EF2E47916B8F5D713ABA226E6EA4F2C /* DDMANaviManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMANaviManager.h; path = DDMAMapKit_Private/Classes/DDMANaviManager/DDMANaviManager.h; sourceTree = ""; }; - 3F04B1853928E65D1147C54AA9AA215B /* JXCategoryNumberCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberCellModel.h; path = Sources/Number/JXCategoryNumberCellModel.h; sourceTree = ""; }; - 3F4232BD92254081C73BD42125C7A7D1 /* MAUserLocationRepresentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAUserLocationRepresentation.h; path = AMapNaviKit.framework/Headers/MAUserLocationRepresentation.h; sourceTree = ""; }; - 3F641FC0A6633569487EC5A9C670088E /* JXCategoryNumberCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberCellModel.m; path = Sources/Number/JXCategoryNumberCellModel.m; sourceTree = ""; }; - 3FB7ADB70FD266CCCE0EEF823CBD32F0 /* ImageContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageContext.swift; path = Sources/SwiftUI/ImageContext.swift; sourceTree = ""; }; - 3FDBD918659A95261D4BFD1E57869778 /* SynchronizedDisposeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedDisposeType.swift; path = RxSwift/Concurrency/SynchronizedDisposeType.swift; sourceTree = ""; }; - 3FFFE787FDE9FF77F02B01967B7C7A35 /* ZFNetworkSpeedMonitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFNetworkSpeedMonitor.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFNetworkSpeedMonitor.h; sourceTree = ""; }; - 40090592359A38AC6F1DC5284EAE1B15 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; - 404CEB52EF15A5EAF66C8A5C26A2189E /* KVORepresentable+CoreGraphics.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KVORepresentable+CoreGraphics.swift"; path = "RxCocoa/Foundation/KVORepresentable+CoreGraphics.swift"; sourceTree = ""; }; - 40CAABF70D0D6257D468B81F5748A553 /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = ""; }; - 4113C8ED94FBCD13D365DB0F00746A7F /* RxCocoa.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCocoa.swift; path = RxCocoa/RxCocoa.swift; sourceTree = ""; }; - 4145F91C15D126896258C26700097C7F /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; - 41F1115AC7B6E578068DBF01F1D2B305 /* Buffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Buffer.swift; path = RxSwift/Observables/Buffer.swift; sourceTree = ""; }; - 4249F397EFF56F60B4492677A318880C /* JPush-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "JPush-xcframeworks.sh"; sourceTree = ""; }; - 428BB213BB5CB7CF5DD1520FAD9BC61D /* NSBundle+BRPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+BRPickerView.h"; path = "BRPickerView/Base/NSBundle+BRPickerView.h"; sourceTree = ""; }; - 42A15DD2ACA65F9A5BE1A8067126DBBA /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefresh/Base/MJRefreshHeader.h; sourceTree = ""; }; - 42A5F7B3DA5278625FEC28DD31FA1A0C /* DDMASearch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMASearch.m; path = DDMAMapKit_Private/Classes/DDMASearch/DDMASearch.m; sourceTree = ""; }; - 42AFF5E4167F1AAB0C38B6D04AF48FF0 /* _RX.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RX.h; path = RxCocoa/Runtime/include/_RX.h; sourceTree = ""; }; - 42CF39FFA5F10D498E7F7E91B1E4F8C7 /* DDBaseSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseSwitch.h; path = DDBasicControlsKit_Private/Classes/DDBaseSwitch/DDBaseSwitch.h; sourceTree = ""; }; + 3A1AB87A7484DFD8846AA2132C2A1C52 /* PrimitiveSequence+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PrimitiveSequence+Concurrency.swift"; path = "RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Concurrency.swift"; sourceTree = ""; }; + 3A1ACA8A0153DF4092625A188EED2169 /* VirtualTimeScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeScheduler.swift; path = RxSwift/Schedulers/VirtualTimeScheduler.swift; sourceTree = ""; }; + 3A32C5ED700D85A465A27E07FAD94176 /* AMapTrackManagerOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackManagerOptions.h; path = AMapTrackKit.framework/Headers/AMapTrackManagerOptions.h; sourceTree = ""; }; + 3A5283D5CDCF7F930F4EBD8F066BDA4D /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; + 3A6946E3778D6DC2C13697F173C8331D /* DDMATrackManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMATrackManager.m; path = DDMAMapKit_Private/Classes/DDMATrackManager/DDMATrackManager.m; sourceTree = ""; }; + 3A75A95EB84953B276F45E0F5FAD4E37 /* SwiftyRSA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyRSA.release.xcconfig; sourceTree = ""; }; + 3AB55D8C3A814E1459CBDF302E4F2D56 /* JXCategoryIndicatorComponentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorComponentView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorComponentView.m; sourceTree = ""; }; + 3AEEEFD95098C323DFA3B33969BE5333 /* MAOfflineCity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineCity.h; path = AMapNaviKit.framework/Headers/MAOfflineCity.h; sourceTree = ""; }; + 3AF10A8C2B0D16227BD534F00A18EB04 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; + 3AF905524A3B1FC4EDB46CF9D9FF1875 /* SharedSequence+Operators+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Operators+arity.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Operators+arity.swift"; sourceTree = ""; }; + 3B76E2FE549CB4865142D5E14A38069A /* ZFUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFUtilities.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFUtilities.h; sourceTree = ""; }; + 3BCBB8FB675A628DC92EFE21CFE1E683 /* ZLAlbumListCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAlbumListCell.swift; path = Sources/General/ZLAlbumListCell.swift; sourceTree = ""; }; + 3BD69EF40759F9D8FA64ED40014A9891 /* Lock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Lock.swift; path = RxSwift/Concurrency/Lock.swift; sourceTree = ""; }; + 3C93DF9F137469B6087FF40ED2C39675 /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = RxSwift/Observables/Error.swift; sourceTree = ""; }; + 3CEA965E2B5B8DF81084049EDDB5235F /* AMapNaviBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviBaseManager.h; path = AMapNaviKit.framework/Headers/AMapNaviBaseManager.h; sourceTree = ""; }; + 3D133C2E25C41089F9392231ED2B0385 /* JXCategoryImageCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageCellModel.h; path = Sources/Image/JXCategoryImageCellModel.h; sourceTree = ""; }; + 3D20DB404ABAFE99247C3AB55859F9AC /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Sources/Networking/RedirectHandler.swift; sourceTree = ""; }; + 3D8B6DD0FA2A6289D2344172BEC79FFD /* AMapGeoFenceError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceError.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceError.h; sourceTree = ""; }; + 3D9996BD70338BDB9BF8703FAFFDBA70 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; + 3DEB92004F24D012A2DD2A749EA68696 /* Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Rx.swift; path = RxSwift/Rx.swift; sourceTree = ""; }; + 3E189C0003B00E49B74050ACD7FC65DB /* _RXObjCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXObjCRuntime.h; path = RxCocoa/Runtime/include/_RXObjCRuntime.h; sourceTree = ""; }; + 3E371F103D80A5C5A2DDFB2FB39F2526 /* AMapNaviEleBikeDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviEleBikeDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviEleBikeDataRepresentable.h; sourceTree = ""; }; + 3E3FB624BCADCA3DEAE2F3779026AEEC /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; + 3E6850B62AE527DFF6DA66A3009D736D /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; + 3E7D32E5BF69B7556FCADF853E3231A9 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; + 3E80CF754935616F3D07EC39D0154570 /* NSObject+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSObject+DDCategory/NSObject+DDCategory.m"; sourceTree = ""; }; + 3EA5A49C90CE9D1F0413EFFBDDD9867C /* DDCategoryKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDCategoryKit_Private.modulemap; sourceTree = ""; }; + 3ED6B9AEBE20C1AFCCCFFF1EE7527E28 /* ZLProgressView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLProgressView.swift; path = Sources/General/ZLProgressView.swift; sourceTree = ""; }; + 3EF83247660B7B1B045EDC7FE7F20651 /* DDViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDViewController.swift; path = DDControlsKit_Private/Classes/DDViewController/DDViewController.swift; sourceTree = ""; }; + 3F3E69CB942B27EDDF39B17D0250CD8E /* ZLThumbnailViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLThumbnailViewController.swift; path = Sources/General/ZLThumbnailViewController.swift; sourceTree = ""; }; + 3F96DB6047A34C7BE2BC18D14E341982 /* BRPickerViewMacro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRPickerViewMacro.h; path = BRPickerView/Base/BRPickerViewMacro.h; sourceTree = ""; }; + 3FAFFEFCFBC53914E82A0ED097431AA0 /* EKAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAttributes.swift; path = Source/Model/EntryAttributes/EKAttributes.swift; sourceTree = ""; }; + 3FF4587CF94C7858297417E9CB2B1625 /* AtomicInt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AtomicInt.swift; path = Platform/AtomicInt.swift; sourceTree = ""; }; + 400211ECF73A18F5EF80A57BF4FAC8E6 /* Infallible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Infallible.swift; path = RxSwift/Traits/Infallible/Infallible.swift; sourceTree = ""; }; + 401C887AD28468D21FC95529F3966CEC /* ZFPortraitControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPortraitControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPortraitControlView.h; sourceTree = ""; }; + 4041940F5DF4EA21CAA442DCF7056FE9 /* ConstraintLayoutSupportDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupportDSL.swift; path = Sources/ConstraintLayoutSupportDSL.swift; sourceTree = ""; }; + 40AA1E749EE38E18136003816BDC4AAF /* MAPinAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPinAnnotationView.h; path = AMapNaviKit.framework/Headers/MAPinAnnotationView.h; sourceTree = ""; }; + 40B6E1DB42A71F22EB136A5C69D993E6 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; + 40C03F1C09C42BDD9F51B5EC1218B9C1 /* DDSwiftLog.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDSwiftLog.swift; path = DDLogKit_Private/Classes/SwiftLog/DDSwiftLog.swift; sourceTree = ""; }; + 40E0CD4E04E3FBD7A47B1B210224AC01 /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackFooter.h; path = MJRefresh/Base/MJRefreshBackFooter.h; sourceTree = ""; }; + 40FFC8A40D03A307B5CCBE11F93D1B12 /* JXCategoryCollectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryCollectionView.m; path = Sources/Common/JXCategoryCollectionView.m; sourceTree = ""; }; + 4103A3DF6E2BE0040B400F3FEDF94592 /* DDMAMapKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDMAMapKit_Private-prefix.pch"; sourceTree = ""; }; + 4143CB6BC609E3B0C55CDCB262048484 /* JCore-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "JCore-xcframeworks.sh"; sourceTree = ""; }; + 415712A434FFF7D19381559A03540D32 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; + 418576B499736076EB0BA9C49A6CCCB8 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; + 4196E0258D2495B44EB2C947F1F40EFB /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; + 41AF1F2AF9D17DF44C12C7DD6B6A5117 /* Timer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timer.swift; path = RxSwift/Observables/Timer.swift; sourceTree = ""; }; + 41D9FBF1BC149AD34E28B9F14094D61F /* ZFOrientationObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFOrientationObserver.m; path = DDZFPlayerKit_Private/Classes/Core/ZFOrientationObserver.m; sourceTree = ""; }; + 41DA497EF073626C5D9A197F3F90A790 /* GroupBy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupBy.swift; path = RxSwift/Observables/GroupBy.swift; sourceTree = ""; }; + 4212E078321E7E7B1165889060125DCC /* NSTextField+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextField+Rx.swift"; path = "RxCocoa/macOS/NSTextField+Rx.swift"; sourceTree = ""; }; + 422A37EF2714EFE0B89DFEB631341555 /* RTLManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RTLManager.m; path = Sources/RLTManager/RTLManager.m; sourceTree = ""; }; + 422D0406870D7669AE5338E20EDB217C /* Sequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sequence.swift; path = RxSwift/Observables/Sequence.swift; sourceTree = ""; }; + 42379670954CB9100261148A12A2A754 /* Infallible+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Bind.swift"; path = "RxCocoa/Common/Infallible+Bind.swift"; sourceTree = ""; }; + 42557D5F13A9A26D67F53810DF2D4AFB /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; + 42583EE86A5BB9F9DC1D5D9AD849DDA3 /* UIFont+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIFont+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIFont+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 42E1733F0A54462DABFD18A9696013D4 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = ""; }; 42F10DB6CED6AC3E9AA446F86C16A0F5 /* DDBasicControlsKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDBasicControlsKit_Private; path = libDDBasicControlsKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 43077E18310DC4A0F50CC96A0DE2B0E9 /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = ""; }; - 432F362B416AB2A0E3095E57C7DA1939 /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefresh/Base/MJRefreshFooter.m; sourceTree = ""; }; + 431E1D05FC37D52831B2B63F11611B8C /* UICollectionViewCell+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewCell+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UICollectionViewCell+DDCategory/UICollectionViewCell+DDCategory.h"; sourceTree = ""; }; + 434CFEDAB464EEA10B068B7300D13E51 /* TailRecursiveSink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TailRecursiveSink.swift; path = RxSwift/Observers/TailRecursiveSink.swift; sourceTree = ""; }; + 43557F21A43221E5EA5D40D4D9FEFD97 /* AMapNaviEleBikeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviEleBikeManager.h; path = AMapNaviKit.framework/Headers/AMapNaviEleBikeManager.h; sourceTree = ""; }; + 43626F977713AEAF0E58929CE8CDB3CA /* MAPointAnnotation+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MAPointAnnotation+DDCategory.h"; path = "DDMAMapKit_Private/Classes/DDMAMap/Annotation/MAPointAnnotation+DDCategory.h"; sourceTree = ""; }; 439EA354473F5B1B44C857E4C3A7D7D7 /* Pods-OrderScheduling-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-OrderScheduling-dummy.m"; sourceTree = ""; }; - 43A7CD4FD0ABE5E6DC4CBB2A311F14F0 /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; - 43BCDBABD77CC7F5297BD82BB819F04D /* ZLPhotoPreviewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewCell.swift; path = Sources/General/ZLPhotoPreviewCell.swift; sourceTree = ""; }; - 43E04632ED25C05453AE399B81ACCCA9 /* AMapNaviStatisticsInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviStatisticsInfo.h; path = AMapNaviKit.framework/Headers/AMapNaviStatisticsInfo.h; sourceTree = ""; }; - 43F05E04C13FEA025791F0C90AF64A3A /* Infallible+Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Create.swift"; path = "RxSwift/Traits/Infallible/Infallible+Create.swift"; sourceTree = ""; }; - 44FF7ADECB2E95216184CEC65C7538F6 /* BRAddressPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRAddressPickerView.m; path = BRPickerView/AddressPickerView/BRAddressPickerView.m; sourceTree = ""; }; - 4501AB0D576E6AE3E09907423AD2BB24 /* Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concurrency.swift; path = Source/Concurrency.swift; sourceTree = ""; }; - 450EDB90DA887F1591A7E3715563CE5F /* ZFPresentTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPresentTransition.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPresentTransition.m; sourceTree = ""; }; - 452399CF8D0225CB3D278F7746158C03 /* Combine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Combine.swift; path = Source/Combine.swift; sourceTree = ""; }; - 45312A1792518423AAA4BF2D2477900F /* ZFNetworkSpeedMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFNetworkSpeedMonitor.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFNetworkSpeedMonitor.m; sourceTree = ""; }; - 4542046C28F3D70E296E394B873C6719 /* HTTPMethod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPMethod.swift; path = Source/HTTPMethod.swift; sourceTree = ""; }; - 45477B3077E56B158D2A0B3597158935 /* JXCategoryTitleVerticalZoomCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomCell.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCell.m; sourceTree = ""; }; - 4577B9EBD4673186634D390BE66F1F1F /* IQTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextView.swift; path = IQKeyboardManagerSwift/IQTextView/IQTextView.swift; sourceTree = ""; }; - 45852B116DAC5E9D5C836CB6D908A7CB /* AddRef.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AddRef.swift; path = RxSwift/Observables/AddRef.swift; sourceTree = ""; }; - 45B0433A65006C9585B4DDDF463F1C62 /* DDBasicControlsKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDBasicControlsKit_Private-dummy.m"; sourceTree = ""; }; - 45B36304D4FF5D68342CA29B891F9637 /* FontUtil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FontUtil.swift; path = DDFontKit_Private/Classes/FontUtil.swift; sourceTree = ""; }; - 462F2AFFF36630D973AD2FEF84494576 /* DDMAMapKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDMAMapKit_Private-umbrella.h"; sourceTree = ""; }; - 464ADB2A55FAC4862428B1C0F3830314 /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = ""; }; - 464E9109E881EAAD942E3CA3F335F40B /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefresh/MJRefresh.h; sourceTree = ""; }; - 4690C0C6E98072041DB84B803F2207AA /* JPushExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPushExtension.release.xcconfig; sourceTree = ""; }; - 46C26B2CF6E92ECEEC8FFAB34A867546 /* ReplaySubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplaySubject.swift; path = RxSwift/Subjects/ReplaySubject.swift; sourceTree = ""; }; - 46CEF7AD80201CC9F94888169BF71D33 /* MAMVTTileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMVTTileOverlay.h; path = AMapNaviKit.framework/Headers/MAMVTTileOverlay.h; sourceTree = ""; }; - 4760783B09E40542C7873933BECCBFF1 /* ControlTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlTarget.swift; path = RxCocoa/Common/ControlTarget.swift; sourceTree = ""; }; - 47A3EE35E7731B4F9B55B2F0C7A55BC8 /* SnapKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.debug.xcconfig; sourceTree = ""; }; - 47D89C6D2883B4D4256C5D157CDA57FC /* DDLogKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDLogKit_Private.debug.xcconfig; sourceTree = ""; }; - 48148195B330B6991BF7FE0A2BAE6F0B /* ZLImageStickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLImageStickerView.swift; path = Sources/Edit/ZLImageStickerView.swift; sourceTree = ""; }; - 481B85FAFC922757DA4C90024EAA2AD6 /* SwiftEntryKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftEntryKit.modulemap; sourceTree = ""; }; - 4837DDCE0CBD6C03E891FA0582C82A4A /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; - 483FA3F9A454C8561105FA7D51B1FD02 /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackGifFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m; sourceTree = ""; }; - 484ED9278AFBB03768FC180C42EF6D50 /* ZFLandscapeViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLandscapeViewController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeViewController.h; sourceTree = ""; }; - 4851D82A3D7915BCD7AB79F3C678EA66 /* Materialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Materialize.swift; path = RxSwift/Observables/Materialize.swift; sourceTree = ""; }; - 488531DD11CF79657474262DEA09C8C6 /* SynchronizedUnsubscribeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedUnsubscribeType.swift; path = RxSwift/Concurrency/SynchronizedUnsubscribeType.swift; sourceTree = ""; }; - 489448793B76FE2CFD1003097474ABEE /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; - 49BC6C5577BF8216BBB56CC43A0F28ED /* Protected.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Protected.swift; path = Source/Protected.swift; sourceTree = ""; }; - 49D155E8B49C0866D0D17C2782731D0C /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; - 4A08B34F06726FEC0876691331FAA8ED /* AMapNaviCompositeAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCompositeAnnotation.h; path = AMapNaviKit.framework/Headers/AMapNaviCompositeAnnotation.h; sourceTree = ""; }; - 4AC82AD522F7CA26F3D020316D2D9F13 /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Sources/Utility/Result.swift; sourceTree = ""; }; - 4AD77A5A95E9ABAA202BCDBEE365504B /* KingfisherError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherError.swift; path = Sources/General/KingfisherError.swift; sourceTree = ""; }; - 4AE70648B4DA4312BD9465EEA78E5683 /* DriveRouteCustomAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DriveRouteCustomAnnotation.h; path = DDMAMapKit_Private/Classes/DDMAMap/Annotation/DriveRouteCustomAnnotation.h; sourceTree = ""; }; - 4B1636BB779E1B06200E7BA12F4B56EA /* JXCategoryIndicatorBackgroundView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorBackgroundView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBackgroundView.h; sourceTree = ""; }; - 4B562E39CE0F2547A1F5D9F9AE7121EA /* JXCategoryIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorView.h; path = Sources/Indicator/JXCategoryIndicatorView.h; sourceTree = ""; }; - 4B588A780D34490594CE6B22B5237702 /* NSURL+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURL+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSUrl+DDCategory/NSURL+DDCategory.m"; sourceTree = ""; }; - 4B66138500F5FE5625B962EC540FFA08 /* MABaseOverlay+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "MABaseOverlay+DDCategory.m"; path = "DDMAMapKit_Private/Classes/DDMAMap/Overlay/MABaseOverlay+DDCategory.m"; sourceTree = ""; }; - 4B915A8B88EC16CA9453D450DA5E7665 /* Infallible+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Concurrency.swift"; path = "RxSwift/Traits/Infallible/Infallible+Concurrency.swift"; sourceTree = ""; }; - 4BAD9C27F9C3AD251EDA896CDF5581AB /* DDPersistenceKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDPersistenceKit_Private-prefix.pch"; sourceTree = ""; }; - 4BCED856B5FE108236C228D98674A5B8 /* Merge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Merge.swift; path = RxSwift/Observables/Merge.swift; sourceTree = ""; }; - 4C07ECECC24CC76C80EDF7838D38E4A9 /* AMapURLSearch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearch.h; path = AMapFoundationKit.framework/Headers/AMapURLSearch.h; sourceTree = ""; }; - 4CA6A3CFA3DC5B9298363462334E9391 /* DDBaseCollectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseCollectionView.h; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionView/DDBaseCollectionView.h; sourceTree = ""; }; - 4CD3A91D15618FC3C13994628FD21243 /* ConstraintPriorityTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriorityTarget.swift; path = Sources/ConstraintPriorityTarget.swift; sourceTree = ""; }; - 4CDBEAC2DAD087C559400956814D4839 /* KVORepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KVORepresentable.swift; path = RxCocoa/Foundation/KVORepresentable.swift; sourceTree = ""; }; - 4D3EE162F3792639946D2A530C5CBC39 /* ObservableType+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+Extensions.swift"; path = "RxSwift/ObservableType+Extensions.swift"; sourceTree = ""; }; - 4D81551FCEB78DB3AB62B0BE049F6F97 /* EKAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAttributes.swift; path = Source/Model/EntryAttributes/EKAttributes.swift; sourceTree = ""; }; - 4DAA2B2D5E9074D6A807CBD2587D6A12 /* URLRequest+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLRequest+Alamofire.swift"; path = "Source/URLRequest+Alamofire.swift"; sourceTree = ""; }; - 4DCD8FC824C3DE598AA6315846C6C289 /* AMapTrackManagerOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackManagerOptions.h; path = AMapTrackKit.framework/Headers/AMapTrackManagerOptions.h; sourceTree = ""; }; - 4DD50E58F69247C46034A37BEB615292 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; - 4E04AF4D03DE53ED30E33004A282BDDD /* JXCategoryListContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryListContainerView.m; path = Sources/Common/JXCategoryListContainerView.m; sourceTree = ""; }; - 4E3116B641BD896DCE20A1EF136462F7 /* Cell+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Cell+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Cell+ZLPhotoBrowser.swift"; sourceTree = ""; }; - 4EF2D12CB1D3D8939B1F712960F69414 /* ConnectableObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectableObservableType.swift; path = RxSwift/ConnectableObservableType.swift; sourceTree = ""; }; - 4F131F91C961DC10071B0A90B6552041 /* DDDateKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDDateKit_Private.release.xcconfig; sourceTree = ""; }; - 4F13294F00F5A7E3F7F0356864E862D5 /* MAParticleOverlayOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlayOptions.h; path = AMapNaviKit.framework/Headers/MAParticleOverlayOptions.h; sourceTree = ""; }; - 4F6E6F5701A4F4670E0F79103B1E00FC /* CompactMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompactMap.swift; path = RxSwift/Observables/CompactMap.swift; sourceTree = ""; }; - 4F985D8E9B815F9E4A7232388ECC0EC1 /* DDAlamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAlamofire.swift; path = DDNetworkingOfAlamofireKit_Private/Classes/DDAlamofire.swift; sourceTree = ""; }; - 4FAE956FC25FB007617385715F75ABAE /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; - 4FD2FCF8484F129C862C7733EF997F21 /* Amb.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Amb.swift; path = RxSwift/Observables/Amb.swift; sourceTree = ""; }; - 4FF6B796D90DC664ED96E1E85CF04347 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; - 501A9F199AE7F1476E60BA55080100C0 /* UITableViewCell+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableViewCell+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITableViewCell+DDCategory/UITableViewCell+DDCategory.h"; sourceTree = ""; }; - 50F9BE04765266AAAC4A4EC04406F05F /* ConstraintInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsetTarget.swift; path = Sources/ConstraintInsetTarget.swift; sourceTree = ""; }; - 5107931B7E0FC729534E626863AC9BB2 /* VirtualTimeScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeScheduler.swift; path = RxSwift/Schedulers/VirtualTimeScheduler.swift; sourceTree = ""; }; - 5122BEA3D01F32CCE3AF6DEEC923F22F /* MAAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotation.h; path = AMapNaviKit.framework/Headers/MAAnnotation.h; sourceTree = ""; }; - 512A7192BE9B597992A75FCC3D929D06 /* UIRefreshControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIRefreshControl+Rx.swift"; path = "RxCocoa/iOS/UIRefreshControl+Rx.swift"; sourceTree = ""; }; - 5155500DB4A4AAC9D6124FDC80CC351A /* DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDCategory.h; path = DDCategoryKit_Private/Classes/DDCategory.h; sourceTree = ""; }; - 5158774E93AAB204BEB8B6F15686EE8A /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoNormalFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m; sourceTree = ""; }; - 518D33F31F8D21142313CF1C22FDE058 /* EKRatingMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingMessageView.swift; path = Source/MessageViews/EKRatingMessageView.swift; sourceTree = ""; }; - 519086AA5E56EAB1D79CA69EE3A36527 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; - 51B403317245F827E17CFFB5F193639A /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; - 51FCF11C1D9AF01314CAC5DFDD70C064 /* EventMonitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventMonitor.swift; path = Source/EventMonitor.swift; sourceTree = ""; }; - 5215A1A6D8D1B1C32F9506B37543281B /* AMapNavi.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = AMapNavi.bundle; path = AMapNaviKit.framework/AMapNavi.bundle; sourceTree = ""; }; - 52353BF0CC3418A0927D4566A1B20ED5 /* DDMAMapKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDMAMapKit_Private.modulemap; sourceTree = ""; }; - 524B2A33545F13651301317573D49492 /* JXCategoryImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageView.h; path = Sources/Image/JXCategoryImageView.h; sourceTree = ""; }; - 52EB7EDBF57916B4CA7E1443C959E309 /* AMapTrackVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackVersion.h; path = AMapTrackKit.framework/Headers/AMapTrackVersion.h; sourceTree = ""; }; - 52F1573EB6D890E2BEA052DB689F3672 /* AMapLocation-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapLocation-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; - 532042ED19DEFC92300DD64C810B51C7 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; - 5335B99B27D3308852CEEB5161ACA4C2 /* ConstraintView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintView.swift; path = Sources/ConstraintView.swift; sourceTree = ""; }; - 53527B1AD2355D7D1879A8794C57BBE8 /* DDZFPlayerKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDZFPlayerKit_Private.release.xcconfig; sourceTree = ""; }; - 536600AFCEAE18645A692BF6F89AD2DC /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; - 53701FA4E2C325041ED02E45E02DEBFB /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; - 5375A076009E1019AE686602332C2A5D /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; - 5386EF67B7415DA8A846212CB3814C04 /* UITableView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITableView+DDCategory/UITableView+DDCategory.m"; sourceTree = ""; }; - 538B16B9C94F4B82990777F8A50D0C55 /* RxCollectionViewReactiveArrayDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewReactiveArrayDataSource.swift; path = RxCocoa/iOS/DataSources/RxCollectionViewReactiveArrayDataSource.swift; sourceTree = ""; }; - 53967F558253351AD028631FF3FFC250 /* MATraceReplayOverlay+Addition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MATraceReplayOverlay+Addition.h"; path = "DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlay+Addition.h"; sourceTree = ""; }; - 53BE306314A462A24FE69A85B8A9749F /* DDMAGeometry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMAGeometry.m; path = DDMAMapKit_Private/Classes/DDMAUtil/DDMAGeometry.m; sourceTree = ""; }; - 53CE5DA7D71B3803C35DD2677AD6CC23 /* DDLogKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDLogKit_Private-prefix.pch"; sourceTree = ""; }; - 53FE2A0958597468EE87596B2295FBA1 /* UINavigationBar+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationBar+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UINavigationBar+DDCategory/UINavigationBar+DDCategory.m"; sourceTree = ""; }; - 53FE5C8F8EEEFBB9CE4058A6FBAEC2C4 /* Signature.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Signature.swift; path = Source/Signature.swift; sourceTree = ""; }; - 54672C2A5C209836AADD03D2D892E9E5 /* CPListItem+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CPListItem+Kingfisher.swift"; path = "Sources/Extensions/CPListItem+Kingfisher.swift"; sourceTree = ""; }; - 54676FA42784473D323D8BF2D048B98E /* DDToastKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDToastKit_Private-prefix.pch"; sourceTree = ""; }; - 54685BD3F79257437A860480CF1A642B /* AMapLocationCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationCommonObj.h; path = AMapLocationKit.framework/Headers/AMapLocationCommonObj.h; sourceTree = ""; }; - 5493A12366B21CAF8960EE36E60C8C4F /* Source.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Source.swift; path = Sources/General/ImageSource/Source.swift; sourceTree = ""; }; - 5515E2A60DD640F4433982A0F55BC343 /* DDWebImageKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDWebImageKit_Private.debug.xcconfig; sourceTree = ""; }; - 55545D86A38C88E25036285F6E656D77 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; - 55A4F48C4DD1485D12FAAA496C0967A8 /* JXCategoryIndicatorTriangleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorTriangleView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorTriangleView.m; sourceTree = ""; }; - 55B582D91E35E4C6AED1B4FCCB977C20 /* EKSimpleMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKSimpleMessageView.swift; path = Source/MessageViews/EKSimpleMessageView.swift; sourceTree = ""; }; - 55F4A82B1EB96939FFC17F35A1249465 /* DDMALocationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMALocationManager.m; path = DDMAMapKit_Private/Classes/DDMALocation/DDMALocationManager.m; sourceTree = ""; }; - 560573034F3383B435CBB2F95AF59B2C /* NSTextStorage+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextStorage+Rx.swift"; path = "RxCocoa/iOS/NSTextStorage+Rx.swift"; sourceTree = ""; }; - 561D08A0865DF40CD98814126BBAE74E /* DDMAMapView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMAMapView.m; path = DDMAMapKit_Private/Classes/DDMAMap/MapView/DDMAMapView.m; sourceTree = ""; }; - 5684E68822F1D3E342ACBEE8770608F2 /* SingleAssignmentDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAssignmentDisposable.swift; path = RxSwift/Disposables/SingleAssignmentDisposable.swift; sourceTree = ""; }; - 56B65EA3C14DE5A8F995B9E16CDD2FCA /* DDPersistenceKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDPersistenceKit_Private-dummy.m"; sourceTree = ""; }; - 574CCA857D81E896F9A67CFC32B15A32 /* AMapSearch-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapSearch-NO-IDFA.release.xcconfig"; sourceTree = ""; }; - 5760748A84008717B0404DF3E6E2C9C8 /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; - 57B2FABB0DD2FA187AF146A649D52767 /* AMapNaviLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviLocation.h; path = AMapNaviKit.framework/Headers/AMapNaviLocation.h; sourceTree = ""; }; - 57C36663553EE3FC62867CC6565A39B3 /* DDBaseImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseImageView.m; path = DDBasicControlsKit_Private/Classes/DDBaseImageView/DDBaseImageView.m; sourceTree = ""; }; - 57E3EC0AC5EB309AA5BC47F89954B444 /* String+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+ZLPhotoBrowser.swift"; path = "Sources/Extensions/String+ZLPhotoBrowser.swift"; sourceTree = ""; }; - 5814FFAAA3F13BA510DE20A7C8E0139A /* MAHeatMapVectorOverlayRender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorOverlayRender.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorOverlayRender.h; sourceTree = ""; }; - 581C8BF98FA140DCC476BF9A94C427E0 /* DDAutoUIKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDAutoUIKit_Private.debug.xcconfig; sourceTree = ""; }; - 5839D87607935942D497E5EC12F0BA50 /* MAPolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolylineRenderer.h; path = AMapNaviKit.framework/Headers/MAPolylineRenderer.h; sourceTree = ""; }; - 58509EAB55EB365485F8E73337CA8F50 /* Debugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debugging.swift; path = Sources/Debugging.swift; sourceTree = ""; }; - 586E2749D56A094136630B1170197D6B /* BehaviorSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorSubject.swift; path = RxSwift/Subjects/BehaviorSubject.swift; sourceTree = ""; }; - 58A435E4067506DC006E99D17A0A9E29 /* MACustomBuildingOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomBuildingOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MACustomBuildingOverlayRenderer.h; sourceTree = ""; }; - 58BFF6DD303F5D7BD573F3656C16C79D /* MAMultiColoredPolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiColoredPolylineRenderer.h; path = AMapNaviKit.framework/Headers/MAMultiColoredPolylineRenderer.h; sourceTree = ""; }; - 58EB768D5C4E64483333DC60FD2DCA45 /* UITextField+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextField+Rx.swift"; path = "RxCocoa/iOS/UITextField+Rx.swift"; sourceTree = ""; }; - 59A13368B0FFCA3C8A50C99ED30FF5A0 /* RxTextStorageDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTextStorageDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTextStorageDelegateProxy.swift; sourceTree = ""; }; - 59E03709C9CE3BD5C40979CFCC2C05CE /* NSObject+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx.swift"; path = "RxCocoa/Foundation/NSObject+Rx.swift"; sourceTree = ""; }; - 5A2BBA7FC32692322DC65A6ADE9ED42A /* jcore-ios-4.2.1.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = "jcore-ios-4.2.1.xcframework"; sourceTree = ""; }; - 5A46EFCBCE640C93E2FD41846752FB57 /* DDPersistenceKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDPersistenceKit_Private.modulemap; sourceTree = ""; }; - 5A558292A0FA9F6DA3ED27C424AA45C5 /* ESTabBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBar.swift; path = Sources/ESTabBar.swift; sourceTree = ""; }; - 5A8EE84EE70728089D4790EF21A47B08 /* RxSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxSwift.modulemap; sourceTree = ""; }; - 5AB1E42E25ADFA86AFA66F2CAB3E7847 /* Event.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Event.swift; path = RxSwift/Event.swift; sourceTree = ""; }; - 5AC2B76D9D1AE189CBEF5336C1214F99 /* Indicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Indicator.swift; path = Sources/Views/Indicator.swift; sourceTree = ""; }; - 5ACBECA1503B0C8B243129948D2065DD /* RxNavigationControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxNavigationControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxNavigationControllerDelegateProxy.swift; sourceTree = ""; }; - 5B29A6E852FCFB18FEABD5F535A67BA6 /* DDDateKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDDateKit_Private.modulemap; sourceTree = ""; }; - 5B306F2855C17CE14E0C6F81357746E9 /* Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utils.swift; path = RxRelay/Utils.swift; sourceTree = ""; }; - 5B3967C1729B559C5B4913FCEB9597C8 /* MAOfflineProvince.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineProvince.h; path = AMapNaviKit.framework/Headers/MAOfflineProvince.h; sourceTree = ""; }; - 5B3A5FA72E662456696B4A1EA5856BC6 /* DDNetworkingOfAlamofireKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDNetworkingOfAlamofireKit_Private-dummy.m"; sourceTree = ""; }; - 5B4B3931D9C0DF301A195D99CA4C3D9D /* ToArray.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToArray.swift; path = RxSwift/Observables/ToArray.swift; sourceTree = ""; }; - 5B4BC63919A3E72038260D326E124013 /* DDCategoryKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDCategoryKit_Private-umbrella.h"; sourceTree = ""; }; - 5B5C79740769FC13DE918AC35AD45E07 /* StartWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StartWith.swift; path = RxSwift/Observables/StartWith.swift; sourceTree = ""; }; - 5B62DB25D38D0B9AC1EA7396B7CFB256 /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalHeader.h; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.h; sourceTree = ""; }; - 5B6DE6BDB74F27E5D2A2963CF80E901B /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; - 5B786014D406A066236307CDBDA8C938 /* MAOfflineMapViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineMapViewController.h; path = AMapNaviKit.framework/Headers/MAOfflineMapViewController.h; sourceTree = ""; }; - 5B8DE2F25DFD6D28B2B1A4E5A91CA4D7 /* ZFLandscapeViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLandscapeViewController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeViewController.m; sourceTree = ""; }; + 43EEEE384195CEBADB7B3EA9107DCA45 /* NopDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NopDisposable.swift; path = RxSwift/Disposables/NopDisposable.swift; sourceTree = ""; }; + 43F124E4FEF45D1428666FF58ED02874 /* ImageDownloader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloader.swift; path = Sources/Networking/ImageDownloader.swift; sourceTree = ""; }; + 4443E5360C55550FA7EA871AAD12EA2B /* UIFont+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIFont+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIFont+DDCategory/UIFont+DDCategory.h"; sourceTree = ""; }; + 4457A40FC3FCC29E9A078124E59297AE /* SwiftSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftSupport.swift; path = RxSwift/SwiftSupport/SwiftSupport.swift; sourceTree = ""; }; + 44A0675187A0F57C3A2ECD0D4EBA682D /* IQBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQBarButtonItem.swift; sourceTree = ""; }; + 44A7D816539DB500FF3392D352A22D8C /* CGFloat+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CGFloat+ZLPhotoBrowser.swift"; path = "Sources/Extensions/CGFloat+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 44D19B06332287C07BA06568BD4D7EF6 /* IQKeyboardManager+OrientationNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+OrientationNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+OrientationNotification.swift"; sourceTree = ""; }; + 44F077736BE1EEE086217ADE1CE83296 /* BinaryDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BinaryDisposable.swift; path = RxSwift/Disposables/BinaryDisposable.swift; sourceTree = ""; }; + 45599187E0E306D492961BB44A1110D3 /* DDMutableAttributedString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDMutableAttributedString.swift; path = DDControlsKit_Private/Classes/DDAttributedString/DDMutableAttributedString.swift; sourceTree = ""; }; + 456D85333EC2AF51BDB8ED4656976324 /* UIScrollView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+Rx.swift"; path = "RxCocoa/iOS/UIScrollView+Rx.swift"; sourceTree = ""; }; + 4582A9D4C8AE8FBC80AE2A4C09EE181D /* DDNavigationControllerDelegateReceiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDNavigationControllerDelegateReceiver.h; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDNavigationControllerDelegateReceiver.h; sourceTree = ""; }; + 45910739C3D9BFFE0F43D440BB45973D /* AMapLocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationManager.h; path = AMapLocationKit.framework/Headers/AMapLocationManager.h; sourceTree = ""; }; + 45A7ADF680DF48084013C21660919A71 /* ConstraintDirectionalInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsets.swift; path = Sources/ConstraintDirectionalInsets.swift; sourceTree = ""; }; + 45BCDD8B42F08E3EA61EFB04D6E071A9 /* MKAnnotationView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "MKAnnotationView+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImageMapKit/MapKit/MKAnnotationView+WebCache.m"; sourceTree = ""; }; + 45EF0A218958CF51F0197F9EF66109D9 /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; + 46105430EB9B440A460AC3C9BC90A89B /* SwiftEntryKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftEntryKit-umbrella.h"; sourceTree = ""; }; + 46AEE67C01D0B9C9124EFD7BB097F513 /* AMapNearbyUploadInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNearbyUploadInfo.h; path = AMapSearchKit.framework/Headers/AMapNearbyUploadInfo.h; sourceTree = ""; }; + 46AF650B6387318653732241EE6C7F84 /* ConcurrentMainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentMainScheduler.swift; path = RxSwift/Schedulers/ConcurrentMainScheduler.swift; sourceTree = ""; }; + 46C4377164C043750C96E798F75BA55A /* ImageView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ImageView+Kingfisher.swift"; path = "Sources/Extensions/ImageView+Kingfisher.swift"; sourceTree = ""; }; + 46E27DDA8F4DDBE9BA961AD575752F28 /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackGifFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m; sourceTree = ""; }; + 46FAFFF77DD6AA42BD28E82106E3DD28 /* DDPersistenceKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDPersistenceKit_Private.debug.xcconfig; sourceTree = ""; }; + 479046BDB4B00800DA381713E13A2948 /* EKAttributes+BackgroundStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+BackgroundStyle.swift"; path = "Source/Model/EntryAttributes/EKAttributes+BackgroundStyle.swift"; sourceTree = ""; }; + 47944CAB9A2E1CBFD3141E7BF595944A /* JXCategoryTitleImageCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageCell.m; path = Sources/TitleImage/JXCategoryTitleImageCell.m; sourceTree = ""; }; + 47E7F4EE2C1E5E63D67E05EACE0D7D7C /* EKAttributes+Validations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Validations.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Validations.swift"; sourceTree = ""; }; + 4828F048B7E32317F0D9CB6358CB77D8 /* AMapUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapUtility.h; path = AMapFoundationKit.framework/Headers/AMapUtility.h; sourceTree = ""; }; + 483A4CB2F18EC1491DF4C332D1029C6E /* UIImageView+DDWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+DDWebCache.h"; path = "DDWebImageKit_Private/Classes/DDWebImage/UIImageView+DDWebCache.h"; sourceTree = ""; }; + 483B487265D43F02EC9913E734AFD0A4 /* BRDatePickerView+BR.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "BRDatePickerView+BR.h"; path = "BRPickerView/DatePickerView/BRDatePickerView+BR.h"; sourceTree = ""; }; + 4871D251D7B44725545E4D497262CBA0 /* DDToastKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDToastKit_Private-umbrella.h"; sourceTree = ""; }; + 49343FBE98DEBF78462B1C61642966CC /* EKAttributes+Duration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Duration.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Duration.swift"; sourceTree = ""; }; + 49446041930752FD6376250702C4AF9D /* DDToastKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDToastKit_Private.release.xcconfig; sourceTree = ""; }; + 4960EAF001A840DC2C7C5AD25FEBE28B /* MAHeatMapVectorGridOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorGridOverlay.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorGridOverlay.h; sourceTree = ""; }; + 49729CA1E733EE9DFA06A5F4E180945F /* BRAddressPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRAddressPickerView.h; path = BRPickerView/AddressPickerView/BRAddressPickerView.h; sourceTree = ""; }; + 497DD6B7E183F163DB4BDFCCAAB79AD6 /* DDLogKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDLogKit_Private-prefix.pch"; sourceTree = ""; }; + 498024A42237B97424CD53452A1785C8 /* URLSession+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSession+Rx.swift"; path = "RxCocoa/Foundation/URLSession+Rx.swift"; sourceTree = ""; }; + 498408C41F764921B2B91F75343B37C0 /* SubscriptionDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscriptionDisposable.swift; path = RxSwift/Disposables/SubscriptionDisposable.swift; sourceTree = ""; }; + 49AFBB6C8C21BE36ECBBAF7B762DC558 /* JXCategoryNumberCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberCell.h; path = Sources/Number/JXCategoryNumberCell.h; sourceTree = ""; }; + 49C457F4B30A502F5CB678135D7AEDB2 /* MAGroundOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGroundOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAGroundOverlayRenderer.h; sourceTree = ""; }; + 4A164CBE2408E7142E5158CE10D83149 /* MJRefreshTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshTrailer.h; path = MJRefresh/Base/MJRefreshTrailer.h; sourceTree = ""; }; + 4A1C652E01570F5F4317E5E029A9F8E4 /* MATileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATileOverlay.h; path = AMapNaviKit.framework/Headers/MATileOverlay.h; sourceTree = ""; }; + 4A453F09D5AF87A4A1CE8BABD321ABBF /* JXCategoryNumberView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberView.h; path = Sources/Number/JXCategoryNumberView.h; sourceTree = ""; }; + 4A7342030BB7B8B358C33F99CAE40E70 /* MACircle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACircle.h; path = AMapNaviKit.framework/Headers/MACircle.h; sourceTree = ""; }; + 4A9B13FCEF59922F87375AC9A6F110E6 /* RetryStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryStrategy.swift; path = Sources/Networking/RetryStrategy.swift; sourceTree = ""; }; + 4AA29DE7B5995743DED55DC922324597 /* ZLImageStickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLImageStickerView.swift; path = Sources/Edit/ZLImageStickerView.swift; sourceTree = ""; }; + 4AB2F590A429D7BB169C7BD4FCE4F86F /* EKAttributes+Presets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Presets.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Presets.swift"; sourceTree = ""; }; + 4AB9909E45891C02CBD6A4A15CAFFED2 /* ConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintItem.swift; path = Sources/ConstraintItem.swift; sourceTree = ""; }; + 4AD83821B8BE69287642F1191B5C530F /* ReplaySubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplaySubject.swift; path = RxSwift/Subjects/ReplaySubject.swift; sourceTree = ""; }; + 4B3A9D01AB4924136619B4FCCBD9A510 /* Date+Dispatch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Dispatch.swift"; path = "RxSwift/Date+Dispatch.swift"; sourceTree = ""; }; + 4B5BABB42B4568585425BACE04C7435B /* ZLWeakProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLWeakProxy.swift; path = Sources/General/ZLWeakProxy.swift; sourceTree = ""; }; + 4B5C0B9769308527090C7360F61F0C50 /* EKRatingMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingMessageView.swift; path = Source/MessageViews/EKRatingMessageView.swift; sourceTree = ""; }; + 4BAE1B51063D993A5EFCA256214FF97F /* RxTabBarControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTabBarControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTabBarControllerDelegateProxy.swift; sourceTree = ""; }; + 4BB4838FDC3AF7A66CA0623B22D68497 /* ZFVolumeBrightnessView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFVolumeBrightnessView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFVolumeBrightnessView.m; sourceTree = ""; }; + 4BC7AFDACD488425AF0DA64F831F7ECF /* UIDatePicker+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIDatePicker+Rx.swift"; path = "RxCocoa/iOS/UIDatePicker+Rx.swift"; sourceTree = ""; }; + 4C1B1A69BE4480B37E9CCCFC00E5FE56 /* ControlTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlTarget.swift; path = RxCocoa/Common/ControlTarget.swift; sourceTree = ""; }; + 4C2A9E7C637231DC6FE721DBDB627E4B /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = ""; }; + 4C379F668412281F2FDCFF3FE37E8A6C /* MAMultiPointOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPointOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAMultiPointOverlayRenderer.h; sourceTree = ""; }; + 4C54F9CD91183CE4ADEC1F83999D3950 /* JPush.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPush.release.xcconfig; sourceTree = ""; }; + 4C88241357AD08130EC68C6D6DD210F7 /* JXCategoryIndicatorProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorProtocol.h; path = Sources/Common/JXCategoryIndicatorProtocol.h; sourceTree = ""; }; + 4CD34B8BB386448EF5A713B15600AC32 /* ZLResultModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLResultModel.swift; path = Sources/General/ZLResultModel.swift; sourceTree = ""; }; + 4CEF7479D278AA799477DFD1530AE408 /* RxCocoa-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxCocoa-prefix.pch"; sourceTree = ""; }; + 4CF16EB9FB2C62DF04298E680DB7FBF6 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; + 4CF4CA085924366252B4AC04BE382C92 /* NSControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSControl+Rx.swift"; path = "RxCocoa/macOS/NSControl+Rx.swift"; sourceTree = ""; }; + 4D482B38E3F1BA8F457443686D6B5AB0 /* WKWebView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKWebView+Rx.swift"; path = "RxCocoa/iOS/WKWebView+Rx.swift"; sourceTree = ""; }; + 4D80CFE6C1CCDF18F45FAB74BF53F3E4 /* MABaseOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MABaseOverlay.h; path = AMapNaviKit.framework/Headers/MABaseOverlay.h; sourceTree = ""; }; + 4D9D4682AF261209380FE4393488D114 /* IQToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQToolbar.swift; path = IQKeyboardManagerSwift/IQToolbar/IQToolbar.swift; sourceTree = ""; }; + 4DE1AF0A0764A564599E003AFBDB50AC /* Runtime.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Runtime.swift; path = Sources/Utility/Runtime.swift; sourceTree = ""; }; + 4DE352C39F2C0A20C1E421D0AE65B83B /* MAAnnotationMoveAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotationMoveAnimation.h; path = AMapNaviKit.framework/Headers/MAAnnotationMoveAnimation.h; sourceTree = ""; }; + 4E2288DCCED2DD373FB9AE190F3FC091 /* UIRectCorner+Short.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIRectCorner+Short.swift"; path = "Source/Extensions/UIRectCorner+Short.swift"; sourceTree = ""; }; + 4E4DBB2C70A01D3B2DA769ED641E4A77 /* DDTimerSwiftKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDTimerSwiftKit_Private.debug.xcconfig; sourceTree = ""; }; + 4ECBE6D55B860A623894EE89ECA6D497 /* NSThread+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSThread+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSThread+DDCategory/NSThread+DDCategory.h"; sourceTree = ""; }; + 4EF6A538EA24604DE5D93A1D23854563 /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefresh/Base/MJRefreshFooter.m; sourceTree = ""; }; + 4F1A884A0A646C544F2F096D150AD492 /* JXCategoryTitleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleView.m; path = Sources/Title/JXCategoryTitleView.m; sourceTree = ""; }; + 4F1E052E2CCD85C0178C114EED4EBE28 /* AMapTrackTerminalObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackTerminalObj.h; path = AMapTrackKit.framework/Headers/AMapTrackTerminalObj.h; sourceTree = ""; }; + 4F223836A638414EEE091A54C5A888F2 /* CALayer+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+DDCategory.m"; path = "DDCategoryKit_Private/Classes/CALayer+DDCategory/CALayer+DDCategory.m"; sourceTree = ""; }; + 4F4CD2F1AE5673BEBFDF3BE76563A870 /* MATraceReplayOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceReplayOverlay.h; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlay.h; sourceTree = ""; }; + 4F4DF89C004F58AAB1A8DE49587F3B49 /* RxPickerViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxPickerViewDataSourceType.swift; sourceTree = ""; }; + 4F5C75F27D5781CEE260ED6440510EA8 /* Infallible+CombineLatest+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+CombineLatest+arity.swift"; path = "RxSwift/Traits/Infallible/Infallible+CombineLatest+arity.swift"; sourceTree = ""; }; + 4F88101538EE2A77224B3C1F7C32934E /* DDUtilsSwiftKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDUtilsSwiftKit_Private.debug.xcconfig; sourceTree = ""; }; + 4FFBED2B6EE9F1E8250262208AAEFE16 /* JXCategoryIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorView.h; path = Sources/Indicator/JXCategoryIndicatorView.h; sourceTree = ""; }; + 50A490EAFAEC4DE19BACFBC6105EA0D0 /* ZFPlayerGestureControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerGestureControl.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerGestureControl.m; sourceTree = ""; }; + 50BFD4E41EC70A76600A4D2BD756249C /* KFOptionsSetter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFOptionsSetter.swift; path = Sources/General/KFOptionsSetter.swift; sourceTree = ""; }; + 5100620B910F7AC35024398B7541BDD7 /* Asn1Parser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Asn1Parser.swift; path = Source/Asn1Parser.swift; sourceTree = ""; }; + 5101C0E24621E2D77A9CBC042A4A7D5E /* DDMAMapKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDMAMapKit_Private.modulemap; sourceTree = ""; }; + 5118EEA7FBCE09CB70C52A5122825D1B /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; + 5125F16F77606E738A76C292174B4074 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = ""; }; + 512F7F1CEC0C4E9F9BE5BEBD8B35AE94 /* IQKeyboardManagerSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardManagerSwift-dummy.m"; sourceTree = ""; }; + 51946AC57D296D98D6432284558DEB32 /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = ""; }; + 51AD81CDD5814ACB79200B169B425A0A /* InvocableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableType.swift; path = RxSwift/Schedulers/Internal/InvocableType.swift; sourceTree = ""; }; + 51CAD9D3504DAE2E36CD3371AF8005C0 /* JXCategoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryView.h; path = Sources/JXCategoryView.h; sourceTree = ""; }; + 51EBA7400403C8380E5099940E7D57C5 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; + 51F4A8D93FD6E62B4598B77314026CE8 /* Cell+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Cell+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Cell+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 51F629C031E3CF2FB48180D108266F71 /* DDMAMapView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMAMapView.m; path = DDMAMapKit_Private/Classes/DDMAMap/MapView/DDMAMapView.m; sourceTree = ""; }; + 52675871FE5D8FD60A740327292ACABC /* Multicast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Multicast.swift; path = RxSwift/Observables/Multicast.swift; sourceTree = ""; }; + 52B8C279CCAF15E8F950146A48401D5F /* EKProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKProperty.swift; path = Source/Model/EKProperty.swift; sourceTree = ""; }; + 52E789E1BED7EB09865D103AF4B85373 /* EKAttributes+StatusBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+StatusBar.swift"; path = "Source/Model/EntryAttributes/EKAttributes+StatusBar.swift"; sourceTree = ""; }; + 52FE898F6EA0967E01F113178A8098FE /* PHAsset+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PHAsset+ZLPhotoBrowser.swift"; path = "Sources/Extensions/PHAsset+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 535ED29470EA89A1CB2DCA32ECF39E69 /* DDBaseSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseSwitch.m; path = DDBasicControlsKit_Private/Classes/DDBaseSwitch/DDBaseSwitch.m; sourceTree = ""; }; + 5367AB4D26D6B38E8AF4332BE5E5CE53 /* Repeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Repeat.swift; path = RxSwift/Observables/Repeat.swift; sourceTree = ""; }; + 539024D7747DFC60ACCE3627871052CB /* Debugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debugging.swift; path = Sources/Debugging.swift; sourceTree = ""; }; + 53AACF49D169396199F59562A14A9B40 /* DDAudioService.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAudioService.swift; path = DDAudioPlayerKit_Private/Classes/DDAudioService.swift; sourceTree = ""; }; + 53F3B2B135B8687A86273C6C8B7268CC /* RxCocoa.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxCocoa.release.xcconfig; sourceTree = ""; }; + 54595933B6A087BEEF46349D8149BBA1 /* DDPersistenceKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDPersistenceKit_Private.modulemap; sourceTree = ""; }; + 54A6F2F469E7F9BE9ADF804BCAEACDFD /* IQUIViewController+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIViewController+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIViewController+Additions.swift"; sourceTree = ""; }; + 54DD010BACCB4EAA5A734F2D10E9497B /* Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Session.swift; path = Source/Session.swift; sourceTree = ""; }; + 54E1B14F3A004FC83C932AF31BF2AC09 /* ControlEvent+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlEvent+Signal.swift"; path = "RxCocoa/Traits/Signal/ControlEvent+Signal.swift"; sourceTree = ""; }; + 54FC966BFAF90C012BE6DABE0105D873 /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; + 5501A87BC8511F2B9E203B0E5146C52D /* DDBaseAttributedString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseAttributedString.m; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseAttributedString.m; sourceTree = ""; }; + 551315C765C362FE3E5FE52E04073406 /* LayoutConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraintItem.swift; path = Sources/LayoutConstraintItem.swift; sourceTree = ""; }; + 55839B1F12E9A7641E179EF55A520DE0 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; + 559996B42B8700271D39002B0C7DD24E /* UIView+Shadow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Shadow.swift"; path = "Source/Extensions/UIView+Shadow.swift"; sourceTree = ""; }; + 5603E0CFF3F7DF05577A5EE1AD67FAF2 /* ZFSpeedLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFSpeedLoadingView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSpeedLoadingView.h; sourceTree = ""; }; + 56227AE775CD6E1B379A7746CF01131A /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; + 56D70808BD83201F066C36E48D2532A4 /* RxWKNavigationDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxWKNavigationDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxWKNavigationDelegateProxy.swift; sourceTree = ""; }; + 56DB8AFA9B7E354F4FAB90269E7E5EC9 /* ToArray.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToArray.swift; path = RxSwift/Observables/ToArray.swift; sourceTree = ""; }; + 56FDC1F05E2B858476AC6660A79C063A /* OperationQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "OperationQueue+Alamofire.swift"; path = "Source/OperationQueue+Alamofire.swift"; sourceTree = ""; }; + 57066B483B3C78049F0880AFFCE791C4 /* ESTabBarController-swift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "ESTabBarController-swift.release.xcconfig"; sourceTree = ""; }; + 571449703C21E04DB0D3FE2092018A67 /* UILabel+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UILabel+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UILabel+DDCategory/UILabel+DDCategory.h"; sourceTree = ""; }; + 57155DB9CE595E8AACB409106F4EC230 /* SnapKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-umbrella.h"; sourceTree = ""; }; + 573D340189D2AE61E6D0F924527E48E4 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; + 57544AB9F5F6FD6DA3E332D0B3CA42D6 /* DDDateKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDDateKit_Private.modulemap; sourceTree = ""; }; + 57549EBD6346758EB39174143BD235B7 /* SDImageAWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAWebPCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAWebPCoder.m; sourceTree = ""; }; + 575746534C48723BC6C28D3281705762 /* AMapNaviRideDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRideDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviRideDataRepresentable.h; sourceTree = ""; }; + 5798204446A72B8DDC8037E0E19A7D31 /* ZLPhotoBrowser.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ZLPhotoBrowser.modulemap; sourceTree = ""; }; + 57A99B916ED565A4052715347F98B0C5 /* EKAttributes+DisplayMode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+DisplayMode.swift"; path = "Source/Model/EntryAttributes/EKAttributes+DisplayMode.swift"; sourceTree = ""; }; + 58218155F660EF1DBF61626281ED8C79 /* Switch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Switch.swift; path = RxSwift/Observables/Switch.swift; sourceTree = ""; }; + 58E0DA6647BE77A851064593E68D6E72 /* JXCategoryIndicatorBallView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorBallView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBallView.h; sourceTree = ""; }; + 58EF50AA09AD8E0D5AB1A14FF1BA6DDA /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; + 590F4DBBFD1721BB98FCC7CD15CC5D52 /* ZFReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFReachabilityManager.m; path = DDZFPlayerKit_Private/Classes/Core/ZFReachabilityManager.m; sourceTree = ""; }; + 599A7B590ACA6E4769E8DF5F97A0063E /* Window.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Window.swift; path = RxSwift/Observables/Window.swift; sourceTree = ""; }; + 59D19E9E35F2D88873495B9878271ACD /* ZLClipImageDismissAnimatedTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLClipImageDismissAnimatedTransition.swift; path = Sources/Animation/ZLClipImageDismissAnimatedTransition.swift; sourceTree = ""; }; + 5A32E70CB124358D5CECEE227AC887B2 /* ConstraintAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintAttributes.swift; path = Sources/ConstraintAttributes.swift; sourceTree = ""; }; + 5A33F6DDDB760DDFEE2DC0D52793034E /* DDImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDImage.swift; path = DDControlsKit_Private/Classes/DDImage/DDImage.swift; sourceTree = ""; }; + 5A3F3F200A8F91B60E91D136A96A72AC /* PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrimitiveSequence.swift; path = RxSwift/Traits/PrimitiveSequence/PrimitiveSequence.swift; sourceTree = ""; }; + 5A45E8007929D7542DAEF68384D3F6CC /* JXCategoryIndicatorCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorCell.h; path = Sources/Indicator/JXCategoryIndicatorCell.h; sourceTree = ""; }; + 5A83D27B322DDC2E4744E7D6A9BB9816 /* AMapNaviWalkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviWalkView.h; path = AMapNaviKit.framework/Headers/AMapNaviWalkView.h; sourceTree = ""; }; + 5A902D49CF099405F20016D58DE2DED3 /* Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+arity.swift"; path = "RxSwift/Observables/Zip+arity.swift"; sourceTree = ""; }; + 5AB9DE2689151037721EDC5252A2D035 /* DDBasicControlsKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDBasicControlsKit_Private-umbrella.h"; sourceTree = ""; }; + 5AD026EC53A99795D22A2F4D9151029B /* DDBaseButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseButton.h; path = DDBasicControlsKit_Private/Classes/DDBaseButton/DDBaseButton.h; sourceTree = ""; }; + 5B150F369C00EDFCA6DEF08A755FF2A1 /* ZLPhotoManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoManager.swift; path = Sources/General/ZLPhotoManager.swift; sourceTree = ""; }; + 5B57D2A6BB14FABAC2CB1250A4A956E0 /* Range.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Range.swift; path = RxSwift/Observables/Range.swift; sourceTree = ""; }; + 5B70E30F33A95BAF13F8A49DB969F860 /* ConnectableObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectableObservableType.swift; path = RxSwift/ConnectableObservableType.swift; sourceTree = ""; }; + 5B774242E6BB5C48ACAA705B03F995A7 /* DDBaseTableView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTableView.m; path = DDBasicControlsKit_Private/Classes/DDBaseTableView/DDBaseTableView.m; sourceTree = ""; }; 5BA6046B4C2674409C0D5625F45F8769 /* BRPickerView */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = BRPickerView; path = libBRPickerView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5BE31722680616822B35EB06F13FF9CE /* RxCocoaRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RxCocoaRuntime.h; path = RxCocoa/Runtime/include/RxCocoaRuntime.h; sourceTree = ""; }; - 5BF79C2D099CAEB42A0426649E0CE615 /* MAMapAccessibilityIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapAccessibilityIdentifier.h; path = AMapNaviKit.framework/Headers/MAMapAccessibilityIdentifier.h; sourceTree = ""; }; - 5C054DD196A7A71E03C60687CF594E64 /* EKAttributes+Scroll.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Scroll.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Scroll.swift"; sourceTree = ""; }; - 5C6A80B78774980C70F8CB643F437DA7 /* LockOwnerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LockOwnerType.swift; path = RxSwift/Concurrency/LockOwnerType.swift; sourceTree = ""; }; - 5C7EF984EF3EFD2C897952681BC7E4BB /* UIImageView+ZFCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+ZFCache.m"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIImageView+ZFCache.m"; sourceTree = ""; }; - 5CA6BB9B6A43FA42F4BFA0B1BF2698AA /* Observable+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Bind.swift"; path = "RxCocoa/Common/Observable+Bind.swift"; sourceTree = ""; }; - 5CF15644D62C9CF63073D6AD99E6493B /* ConstraintDirectionalInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsets.swift; path = Sources/ConstraintDirectionalInsets.swift; sourceTree = ""; }; - 5D3295CD70802DEE8B3F8C7791CEF7C5 /* MAAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotationView.h; path = AMapNaviKit.framework/Headers/MAAnnotationView.h; sourceTree = ""; }; - 5D4D4A45DEF07F41BE33DDAC0AE6AC68 /* SwiftEntryKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftEntryKit-prefix.pch"; sourceTree = ""; }; - 5D4E35FFAE01DC349BE0F050EEF7CB3C /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; - 5D734A5F0B36242991448F3409A0D567 /* ZLPhotoBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZLPhotoBrowser.h; path = Sources/ZLPhotoBrowser.h; sourceTree = ""; }; - 5D7963114C88296AE07435EA9A768946 /* AMapNaviInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviInfo.h; path = AMapNaviKit.framework/Headers/AMapNaviInfo.h; sourceTree = ""; }; + 5BCA64E31F25B756265588AD099F6D0A /* JXCategoryBaseCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseCell.m; path = Sources/Base/JXCategoryBaseCell.m; sourceTree = ""; }; + 5BFC3A1322AF5748E37FF4BC1B8AAF33 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; + 5C2D7260426F88BA7D0B8F13FFCE24BE /* DDBaseImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseImageView.m; path = DDBasicControlsKit_Private/Classes/DDBaseImageView/DDBaseImageView.m; sourceTree = ""; }; + 5C3C85ACBFE971066F7BADFAF22796A8 /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = ""; }; + 5C511C6AA2E322E60CF12039EF9A4C89 /* RxRelay.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxRelay.release.xcconfig; sourceTree = ""; }; + 5C5C5DF271E13762140E478E0B86A60E /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; + 5C5DCF0D1CBE62281BD83194F96341BC /* VirtualTimeConverterType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeConverterType.swift; path = RxSwift/Schedulers/VirtualTimeConverterType.swift; sourceTree = ""; }; + 5C74DE09F8408F94BA65FAA86FA7784A /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; + 5C7FF04AD0134D864551BDA6014A3525 /* Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Image.swift; path = Sources/Image/Image.swift; sourceTree = ""; }; + 5C8F56EF68F9D21059B27046C4E4D140 /* AMapSearchObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchObj.h; path = AMapSearchKit.framework/Headers/AMapSearchObj.h; sourceTree = ""; }; + 5CA93006BC9E074E370A7DD13B1443B8 /* Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Signal.swift; path = RxCocoa/Traits/Signal/Signal.swift; sourceTree = ""; }; + 5CAC48F6B20494CE156685ACBB595423 /* UINavigationBar+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationBar+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UINavigationBar+DDCategory/UINavigationBar+DDCategory.m"; sourceTree = ""; }; + 5D1ACD67FC90851792AFDB29EAEF27CE /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = ""; }; + 5D3AD7C118DCCD7B7B303F30C66BA970 /* NSURL+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURL+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSUrl+DDCategory/NSURL+DDCategory.h"; sourceTree = ""; }; + 5D416C341897110C59EC03D7ED822F68 /* AVAssetImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AVAssetImageDataProvider.swift; path = Sources/General/ImageSource/AVAssetImageDataProvider.swift; sourceTree = ""; }; + 5D46B6F8561141FF2830A973B19A3552 /* ZFLandscapeViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLandscapeViewController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeViewController.h; sourceTree = ""; }; + 5D74D0A422C3B16B8DA4F849EF7E9F8A /* SerialDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDispatchQueueScheduler.swift; path = RxSwift/Schedulers/SerialDispatchQueueScheduler.swift; sourceTree = ""; }; 5D797E9A5C5782CE845840781FA1CC81 /* Alamofire */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = Alamofire; path = libAlamofire.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 5DA0819A2B8374D63CD40C9B248846D3 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; - 5DA7D1FCAA7DCF748209F19B062A9016 /* NSAttributedString+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSAttributedString+DDCategory.m"; sourceTree = ""; }; - 5E0907190CC9C4233E019988DFAD5A53 /* ZFPersentInteractiveTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPersentInteractiveTransition.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPersentInteractiveTransition.m; sourceTree = ""; }; - 5E28C397C02D3520116ADA4BFA361602 /* SizeExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SizeExtensions.swift; path = Sources/Utility/SizeExtensions.swift; sourceTree = ""; }; - 5E29AABAB926446E4DAB7DBD350F35C7 /* AMap.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = AMap.bundle; path = AMapNaviKit.framework/AMap.bundle; sourceTree = ""; }; - 5E4A30F9F826A5AD3BCF6F610843153A /* AMapNaviTravelManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviTravelManager.h; path = AMapNaviKit.framework/Headers/AMapNaviTravelManager.h; sourceTree = ""; }; - 5E797CB6A02E277912BB83563B59F28F /* DDAudioPlayerKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDAudioPlayerKit_Private-umbrella.h"; sourceTree = ""; }; - 5EABEFBD7CF387EA5363ACEB8798AF28 /* UICollectionView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UICollectionView+Rx.swift"; path = "RxCocoa/iOS/UICollectionView+Rx.swift"; sourceTree = ""; }; - 5ECA08FC885AE3ED6615546A3A15155A /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; - 5F8ED44F5937A9A812D540E484331164 /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoStateFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h; sourceTree = ""; }; - 5FAD79C41B45B523A59B0002355A9946 /* ConcurrentDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentDispatchQueueScheduler.swift; path = RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift; sourceTree = ""; }; - 5FBC1D9B2AD7A1EB1CFEA5A5897EEB8B /* SynchronizedOnType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedOnType.swift; path = RxSwift/Concurrency/SynchronizedOnType.swift; sourceTree = ""; }; - 5FF66C6BE62F32172CF049BC4D7920D6 /* JXCategoryIndicatorBackgroundView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorBackgroundView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBackgroundView.m; sourceTree = ""; }; - 6001BB31587184982411055EA990B701 /* UILabel+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UILabel+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UILabel+DDCategory/UILabel+DDCategory.m"; sourceTree = ""; }; - 60314A6B6456E8A6441E5AAC53399452 /* JXCategoryIndicatorCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorCell.m; path = Sources/Indicator/JXCategoryIndicatorCell.m; sourceTree = ""; }; - 6043EB364EE370D3951635830DCE78A4 /* ImageDrawing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDrawing.swift; path = Sources/Image/ImageDrawing.swift; sourceTree = ""; }; - 6074F691DB9F268B99C5B70A7ACF4B9E /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = ""; }; - 612BB6376A463CF2A7D20836998C7AC9 /* Message.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Message.swift; path = Source/Message.swift; sourceTree = ""; }; - 62226814162AA6EED062D8FA248950BF /* JXCategoryDotView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotView.m; path = Sources/Dot/JXCategoryDotView.m; sourceTree = ""; }; - 622BF90602E3605129149406EE02294A /* SwiftEntryKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftEntryKit.debug.xcconfig; sourceTree = ""; }; - 626B37D6DBBAFD585FD1D4209C8733B4 /* EKWrapperView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKWrapperView.swift; path = Source/Infra/EKWrapperView.swift; sourceTree = ""; }; - 6286647755CFF561CEDA7FB8B9639D7C /* ImageModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageModifier.swift; path = Sources/Networking/ImageModifier.swift; sourceTree = ""; }; - 62B652C6768A5D68E417B31DE2214DB0 /* DDNavigationControllerDelegateReceiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDNavigationControllerDelegateReceiver.h; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDNavigationControllerDelegateReceiver.h; sourceTree = ""; }; - 62CA17BE2901DB71E2E07C045BCF74D6 /* TailRecursiveSink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TailRecursiveSink.swift; path = RxSwift/Observers/TailRecursiveSink.swift; sourceTree = ""; }; - 62CE7DF2D8353BE5D3F96DE2262981C1 /* IQKeyboardManagerSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.debug.xcconfig; sourceTree = ""; }; - 63484568EA3DB677F902354665DA16C4 /* ZFSliderView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFSliderView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSliderView.h; sourceTree = ""; }; - 635099AFDEE684DE3CF6FD640325795F /* ZFPlayerGestureControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerGestureControl.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerGestureControl.m; sourceTree = ""; }; - 63BBFDA4F5F775E87B5974A5864F9476 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; - 63D0CE3DC397FB3F291FA4A78C327CA8 /* UIImage+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIImage+DDCategory/UIImage+DDCategory.m"; sourceTree = ""; }; - 640049650C3BC0962841E8D6C6A4049C /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; - 649C21CD06D198F52447FCD339D2D5F0 /* JXCategoryView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JXCategoryView.modulemap; sourceTree = ""; }; - 649FBF53BF9B5ADD1F9DBF131DE3EED3 /* InvocableScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableScheduledItem.swift; path = RxSwift/Schedulers/Internal/InvocableScheduledItem.swift; sourceTree = ""; }; - 64E4F9C87C427F343EF0115803CE7A0C /* MAParticleOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAParticleOverlayRenderer.h; sourceTree = ""; }; - 64E77274A02D17B69874E9ED632E6F36 /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackStateFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m; sourceTree = ""; }; - 64E7F505531EBE9814D5511C51A87CA0 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; - 65A34A5314F1C2F5E39877CDD4C23111 /* Bag+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bag+Rx.swift"; path = "RxSwift/Extensions/Bag+Rx.swift"; sourceTree = ""; }; - 65C7DD4A867385D60261DB360F2009D9 /* SubscribeOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscribeOn.swift; path = RxSwift/Observables/SubscribeOn.swift; sourceTree = ""; }; - 6620B1CC2216E4C9E02CDEDD906C842A /* ConstraintRelatableTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelatableTarget.swift; path = Sources/ConstraintRelatableTarget.swift; sourceTree = ""; }; - 668B4A4AB1A2C83E682019C403BEA3EC /* EKPopUpMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKPopUpMessageView.swift; path = Source/MessageViews/EKPopUpMessageView.swift; sourceTree = ""; }; - 669B5C29CF525051C1EB773ADD8D186C /* EKAttributes+UserInteraction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+UserInteraction.swift"; path = "Source/Model/EntryAttributes/EKAttributes+UserInteraction.swift"; sourceTree = ""; }; - 669F74617E49E4A71C963BB841179C9A /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; - 66DC558EE0EFA1B9CF47F2C5FAAB9FB1 /* EKMessageContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKMessageContentView.swift; path = Source/MessageViews/EKMessageContentView.swift; sourceTree = ""; }; - 66F47940405489608F4ADDD38EEE007F /* Using.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Using.swift; path = RxSwift/Observables/Using.swift; sourceTree = ""; }; - 66FACC93905B18E27091928175728B80 /* MJRefreshConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConfig.m; path = MJRefresh/MJRefreshConfig.m; sourceTree = ""; }; - 670412B890CE30F8631D3DBF68EB4B97 /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoNormalFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h; sourceTree = ""; }; - 677D4317C802402AD89CF1AD51C3CA5D /* KFOptionsSetter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFOptionsSetter.swift; path = Sources/General/KFOptionsSetter.swift; sourceTree = ""; }; - 6783AB064D437BD7A412067C99B4DF37 /* ZLClipImageDismissAnimatedTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLClipImageDismissAnimatedTransition.swift; path = Sources/Animation/ZLClipImageDismissAnimatedTransition.swift; sourceTree = ""; }; - 67AC14DD412A9434D1CC90519DBE1DEF /* EKAttributes+PopBehavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+PopBehavior.swift"; path = "Source/Model/EntryAttributes/EKAttributes+PopBehavior.swift"; sourceTree = ""; }; - 67B495B473AAE4CF688A79AE388BA049 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; - 67D23FAC7919CE8AE69FB0F18A621FCE /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+MJRefresh.m"; path = "MJRefresh/NSBundle+MJRefresh.m"; sourceTree = ""; }; - 67D7B1447714127064AB639B3D33E96B /* SDImageAWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAWebPCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAWebPCoder.m; sourceTree = ""; }; - 683E843CD70E529C09C24CB3C1A1879A /* ZFLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLoadingView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLoadingView.m; sourceTree = ""; }; - 686EFF145D54132D4D0B03136324C53C /* UIImageView+DDWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+DDWebCache.m"; path = "DDWebImageKit_Private/Classes/DDWebImage/UIImageView+DDWebCache.m"; sourceTree = ""; }; - 6870A4D22EE9BC7784841FA6BFE77CE3 /* DDDateKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDDateKit_Private-dummy.m"; sourceTree = ""; }; - 6872B0B64D619D409B987338BE83225C /* Debounce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debounce.swift; path = RxSwift/Observables/Debounce.swift; sourceTree = ""; }; - 6884FC4C71BAB5068C043BCAB0E2EC37 /* JXCategoryDotCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotCellModel.m; path = Sources/Dot/JXCategoryDotCellModel.m; sourceTree = ""; }; - 68910D4570412D613971BE54661ABCAA /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = RxSwift/Observables/Error.swift; sourceTree = ""; }; - 6897582625B835C822633C449FDD3548 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; - 68B600BC7AC1EFF4E70A36A0A7CE2118 /* ZLFetchImageOperation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLFetchImageOperation.swift; path = Sources/General/ZLFetchImageOperation.swift; sourceTree = ""; }; - 68E2FCEE9E1A7A142307DC5EBCEEE743 /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; - 692A33B071C9EEAB823A6C3518B15057 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; - 694F5DB4268D75FC1DBA4B4FE8E58961 /* EKXStatusBarMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKXStatusBarMessageView.swift; path = Source/MessageViews/Notes/EKXStatusBarMessageView.swift; sourceTree = ""; }; - 6956C1C13B6F483A31127FA1E738D13A /* NSMutableParagraphStyle+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableParagraphStyle+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableParagraphStyle+DDCategory.m"; sourceTree = ""; }; - 6959B08360F4836FB29BBF9324533557 /* SwiftyRSAError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftyRSAError.swift; path = Source/SwiftyRSAError.swift; sourceTree = ""; }; - 6974A5798D9E106791F4E832722F0348 /* DDLogKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDLogKit_Private.modulemap; sourceTree = ""; }; - 69CA75EE729B8CA939077B808C8C64EC /* SessionDataTask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDataTask.swift; path = Sources/Networking/SessionDataTask.swift; sourceTree = ""; }; - 6A624CD977A25D4EADF7BD52B67DBE66 /* MAPolygon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolygon.h; path = AMapNaviKit.framework/Headers/MAPolygon.h; sourceTree = ""; }; - 6ABD8E3DD900F702E6FC12C729380C11 /* JXCategoryTitleImageCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageCellModel.m; path = Sources/TitleImage/JXCategoryTitleImageCellModel.m; sourceTree = ""; }; - 6AF816381D84B741E8FD12AB73909B4E /* RxPickerViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxPickerViewDataSourceType.swift; sourceTree = ""; }; - 6B6784F5C6162F59169E329C1791CCFB /* ESTabBarController-swift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "ESTabBarController-swift.modulemap"; sourceTree = ""; }; - 6BC55BC0261A7D48665DE67AA1945699 /* BRDatePickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRDatePickerView.h; path = BRPickerView/DatePickerView/BRDatePickerView.h; sourceTree = ""; }; - 6C133D104E3B971D8853093D2A0A32B4 /* SwiftyRSA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyRSA.debug.xcconfig; sourceTree = ""; }; - 6C3233B033C5A5969D7505E3C7C5A08A /* EKAttributes+FrameStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+FrameStyle.swift"; path = "Source/Model/EntryAttributes/EKAttributes+FrameStyle.swift"; sourceTree = ""; }; - 6CA86CC183A4AD9A4542DD8672A3D58B /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = ""; }; - 6CB41D91E24D72CA5B2E07042707B022 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; - 6CB7DBF821CDB12D47CD37DD36020D26 /* Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Kingfisher.swift; path = Sources/General/Kingfisher.swift; sourceTree = ""; }; - 6CEC4DCA63675BD6DB49032ED12D2426 /* DDMANaviManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMANaviManager.m; path = DDMAMapKit_Private/Classes/DDMANaviManager/DDMANaviManager.m; sourceTree = ""; }; - 6D0F309CE1BDDDC0EA78E3E70432E00D /* SwiftSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftSupport.swift; path = RxSwift/SwiftSupport/SwiftSupport.swift; sourceTree = ""; }; - 6DB3B3078B263C93768051E31C556659 /* Constraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constraint.swift; path = Sources/Constraint.swift; sourceTree = ""; }; - 6DE62048AAF1140C9846AAD0A96580C3 /* JCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JCore.release.xcconfig; sourceTree = ""; }; - 6DFC25C5487E83F0CB3C599E076DAE3D /* ZLCameraConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCameraConfiguration.swift; path = Sources/General/ZLCameraConfiguration.swift; sourceTree = ""; }; - 6E2DD6950218D63E40EE3D4A4A66042D /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; - 6E2F7FCEB4F7B11A24843AA042E5CD82 /* NSSlider+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSSlider+Rx.swift"; path = "RxCocoa/macOS/NSSlider+Rx.swift"; sourceTree = ""; }; - 6E5DE0EBD0ABA86A5FA7C634811DE1C0 /* ESTabBarController-swift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "ESTabBarController-swift.release.xcconfig"; sourceTree = ""; }; - 6E7E04CDEFC8DCA6FF61DE50B9A2013B /* RxSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwift.debug.xcconfig; sourceTree = ""; }; - 6E86E613AE9E514FF0F3492B965D90DD /* JXCategoryTitleImageCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageCellModel.h; path = Sources/TitleImage/JXCategoryTitleImageCellModel.h; sourceTree = ""; }; - 6E9C710CED84DF53EC139FD905FE9AAD /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; + 5D8B384A69484CA60996D0C597D70630 /* Optional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Optional.swift; path = RxSwift/Observables/Optional.swift; sourceTree = ""; }; + 5E3354648DF22C24E7ED0FAE554417FE /* DDFileManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDFileManager.swift; path = DDUtilsSwiftKit_Private/Classes/FileManager/DDFileManager.swift; sourceTree = ""; }; + 5E3AEBC7766316577BC25AD601AA4282 /* DDProgressHUD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDProgressHUD.swift; path = DDProgressHUDKit_Private/Classes/DDProgressHUD.swift; sourceTree = ""; }; + 5E403B9EEAD13AFBAB2871831C453524 /* JPushExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPushExtension.release.xcconfig; sourceTree = ""; }; + 5E445AAD498A96C299DEDA2895DE9FA6 /* UIApplication+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIApplication+DDCategory/UIApplication+DDCategory.m"; sourceTree = ""; }; + 5E648E0BF82BC0F4613380C69E43346B /* UITableView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITableView+DDCategory/UITableView+DDCategory.h"; sourceTree = ""; }; + 5E666189BEFEC43161A351859AECE9BD /* EKAttributes+PositionConstraints.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+PositionConstraints.swift"; path = "Source/Model/EntryAttributes/EKAttributes+PositionConstraints.swift"; sourceTree = ""; }; + 5E9A4F347C383FD9ABCB5E9FB3C558AC /* MAMapView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapView.h; path = AMapNaviKit.framework/Headers/MAMapView.h; sourceTree = ""; }; + 5ED17DE16B93FE1EB23A0BBBD8923887 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; + 5F2D87110AC2D64F74ECD8AC9CDEF0C1 /* ZLPhotoBrowser-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ZLPhotoBrowser-umbrella.h"; sourceTree = ""; }; + 5F7EC85EECC1423B374FC5BCC31766F2 /* URLRequest+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLRequest+Alamofire.swift"; path = "Source/URLRequest+Alamofire.swift"; sourceTree = ""; }; + 5F87D99FFD0149592DC523734EB78D68 /* ZLPhotoModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoModel.swift; path = Sources/General/ZLPhotoModel.swift; sourceTree = ""; }; + 5FBCB3F1DDCCE67EEA1A285E89C414C0 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; + 5FBF15C821B9A5AC746C891F7226C1B7 /* JXCategoryIndicatorImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorImageView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorImageView.m; sourceTree = ""; }; + 600A1C0385E364EECC0CADEC9529C0B7 /* NSAttributedString+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSAttributedString+DDCategory.m"; sourceTree = ""; }; + 60236FAC5287C49CFD84161E4DB92EE6 /* AMapNaviCompositeAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCompositeAnnotation.h; path = AMapNaviKit.framework/Headers/AMapNaviCompositeAnnotation.h; sourceTree = ""; }; + 6026A99C028D75FBF7009B0469C857B8 /* JXCategoryTitleCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleCell.m; path = Sources/Title/JXCategoryTitleCell.m; sourceTree = ""; }; + 602C3EAFA44FB173FBE6A386583D70F4 /* DDTimerSwiftKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDTimerSwiftKit_Private-prefix.pch"; sourceTree = ""; }; + 6043CEF0DBE369C4C26DD004F6118A1E /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = Sources/en.lproj; sourceTree = ""; }; + 6050424C3E0CEA0C1D6B5371BF4B350B /* Array+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Array+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 607E1F16251FD639A870F32E79FC5335 /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateHeader.h; path = MJRefresh/Custom/Header/MJRefreshStateHeader.h; sourceTree = ""; }; + 608A7E1D20A7A205087553870E508436 /* SkipUntil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipUntil.swift; path = RxSwift/Observables/SkipUntil.swift; sourceTree = ""; }; + 60986D96B4E186692402A1E5A9991405 /* AlamofireExtended.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlamofireExtended.swift; path = Source/AlamofireExtended.swift; sourceTree = ""; }; + 60B5E16461A4E42F463FABB5D52B974B /* PrimitiveSequence+Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PrimitiveSequence+Zip+arity.swift"; path = "RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Zip+arity.swift"; sourceTree = ""; }; + 60C12B20AA097F6B962ECE262990F404 /* AMapSearch-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapSearch-NO-IDFA.release.xcconfig"; sourceTree = ""; }; + 60C5117E9A2AC8F2838D694CCA233CEA /* EKAttributes+Shadow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Shadow.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Shadow.swift"; sourceTree = ""; }; + 61443FC3DFF69856B4148D8A6E81EB44 /* DDBaseLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseLabel.m; path = DDBasicControlsKit_Private/Classes/DDBaseLabel/DDBaseLabel.m; sourceTree = ""; }; + 614E7E4CA2E24BFAC369071F8431B717 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; + 616DD5AB4C4A809B51FA7EA1C93D5C1A /* Delegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delegate.swift; path = Sources/Utility/Delegate.swift; sourceTree = ""; }; + 6176899256A0BCE0FE9E6F54652FD3B6 /* NSButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Kingfisher.swift"; path = "Sources/Extensions/NSButton+Kingfisher.swift"; sourceTree = ""; }; + 61A1AAA8E6195266F5597F86DFED1636 /* ZLEditImageConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditImageConfiguration.swift; path = Sources/General/ZLEditImageConfiguration.swift; sourceTree = ""; }; + 61B7B6AFE657B0FF398ACB00652BA68F /* Timeout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeout.swift; path = RxSwift/Observables/Timeout.swift; sourceTree = ""; }; + 61B97D6EFAEBABB126F08996452C5C2D /* Observable+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Concurrency.swift"; path = "RxSwift/Observable+Concurrency.swift"; sourceTree = ""; }; + 621849EEF1C1322DA52276BEC1403F0D /* DDBaseModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseModel.h; path = DDBasicControlsKit_Private/Classes/DDBaseModel/DDBaseModel.h; sourceTree = ""; }; + 6226BDBDEA6ED89C716F660EED0BD145 /* AMapNaviStatisticsInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviStatisticsInfo.h; path = AMapNaviKit.framework/Headers/AMapNaviStatisticsInfo.h; sourceTree = ""; }; + 6237638D1EE25F6E83492D1AD59EC726 /* UIButton+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIButton+DDCategory/UIButton+DDCategory.h"; sourceTree = ""; }; + 623FAF1E8041F262E2CDF9A23B6E7994 /* EKAlertMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAlertMessageView.swift; path = Source/MessageViews/EKAlertMessageView.swift; sourceTree = ""; }; + 62AD7A36A987E5118EC1E481B7C276BD /* UITabBarController+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITabBarController+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITabBarController+DDCategory/UITabBarController+DDCategory.h"; sourceTree = ""; }; + 62B1828F05879B6F721502FE2006F6EC /* ObservableConvertibleType+Infallible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Infallible.swift"; path = "RxSwift/Traits/Infallible/ObservableConvertibleType+Infallible.swift"; sourceTree = ""; }; + 62DD99758FFD1CCEA924F29C6D9961B7 /* SwiftyRSAError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftyRSAError.swift; path = Source/SwiftyRSAError.swift; sourceTree = ""; }; + 62E17D58423F4FEF758BF860FAD8BB59 /* ZFPresentTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPresentTransition.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPresentTransition.m; sourceTree = ""; }; + 62E5306970D9BA46CCECD33499D37743 /* JXCategoryViewAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryViewAnimator.m; path = Sources/Common/JXCategoryViewAnimator.m; sourceTree = ""; }; + 6314C8FD9DB6474E11789F940B1B7D38 /* DDWebImageKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDWebImageKit_Private-prefix.pch"; sourceTree = ""; }; + 63290D034B47854412A7ADEC135B525F /* DDBaseLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseLabel.h; path = DDBasicControlsKit_Private/Classes/DDBaseLabel/DDBaseLabel.h; sourceTree = ""; }; + 6339D4A4812FEC1EAB770EB448D57E5A /* Completable+AndThen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Completable+AndThen.swift"; path = "RxSwift/Traits/PrimitiveSequence/Completable+AndThen.swift"; sourceTree = ""; }; + 63419DC0BF3A8E6707B28DD5DEC2804F /* Do.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Do.swift; path = RxSwift/Observables/Do.swift; sourceTree = ""; }; + 6341B3EAD98B6AB9285FA974E49C2DC4 /* RetryPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryPolicy.swift; path = Source/RetryPolicy.swift; sourceTree = ""; }; + 6358D58A5AE250044FABF5EBCE2E3229 /* UIViewController+ZFPlayerRotation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+ZFPlayerRotation.m"; path = "DDZFPlayerKit_Private/Classes/Core/UIViewController+ZFPlayerRotation.m"; sourceTree = ""; }; + 63841736A31C51A2258B117A611A3CAA /* JXCategoryView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXCategoryView-umbrella.h"; sourceTree = ""; }; + 63B0FFECAE143495BFB04FA58C7188F5 /* RequestCompression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestCompression.swift; path = Source/RequestCompression.swift; sourceTree = ""; }; + 63BE86A3E05D0A822812D3A6547E027A /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = Sources/Cache/Storage.swift; sourceTree = ""; }; + 640898CF5D692F138157693B51F47F27 /* Key.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Key.swift; path = Source/Key.swift; sourceTree = ""; }; + 645EDF250D98A99D5CCD3C1B430A89FC /* DDFontKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDFontKit_Private-prefix.pch"; sourceTree = ""; }; + 648439220BF470106FF166857E9AEE95 /* EKAttributes+HapticFeedback.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+HapticFeedback.swift"; path = "Source/Model/EntryAttributes/EKAttributes+HapticFeedback.swift"; sourceTree = ""; }; + 64E4D00D4327305747EB9C212259DB50 /* UITabBarController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITabBarController+Rx.swift"; path = "RxCocoa/iOS/UITabBarController+Rx.swift"; sourceTree = ""; }; + 65A42E42CDABEEFE9AAD8313C4AC429A /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; + 65FD06ADE19FC189779D2A632024BC2A /* NSBundle+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSBundle+DDCategory/NSBundle+DDCategory.h"; sourceTree = ""; }; + 664B80C9E1E223C3A5E06D7CE84141D8 /* JPushExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPushExtension.debug.xcconfig; sourceTree = ""; }; + 6683C6E87648354B6357637E7403F3E4 /* MACustomCalloutView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomCalloutView.h; path = AMapNaviKit.framework/Headers/MACustomCalloutView.h; sourceTree = ""; }; + 66842CA958CB83E3FE6DD215DDA1A5D8 /* DDToastKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDToastKit_Private-prefix.pch"; sourceTree = ""; }; + 66A6603B5B5F1AFC182A96D1AAE190A2 /* DDViewControllerAnimatedTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDViewControllerAnimatedTransition.m; path = DDBasicControlsKit_Private/Classes/DDBaseAnimation/DDTransitionAnimation/DDViewControllerAnimatedTransition.m; sourceTree = ""; }; + 66C2A0D04E50B558D318DA910AD6F6AF /* RxCollectionViewReactiveArrayDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewReactiveArrayDataSource.swift; path = RxCocoa/iOS/DataSources/RxCollectionViewReactiveArrayDataSource.swift; sourceTree = ""; }; + 670DFD8B0DB295606C0E8C2FAAEBD9E6 /* JXCategoryView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JXCategoryView.modulemap; sourceTree = ""; }; + 674A9A6D363769623DB7EDEB7B082716 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; + 677587EE25462C6BA51FE8328B51A87D /* DDFontKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDFontKit_Private.modulemap; sourceTree = ""; }; + 67DCB1DB968582DA481C0778C3762179 /* ConstraintView+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintView+Extensions.swift"; path = "Sources/ConstraintView+Extensions.swift"; sourceTree = ""; }; + 67EA46B2D4684A456D577D01ACE5C09F /* JXCategoryTitleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleView.h; path = Sources/Title/JXCategoryTitleView.h; sourceTree = ""; }; + 67F029F4CB4AF2F94B400D0F42A414B3 /* UILayoutSupport+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UILayoutSupport+Extensions.swift"; path = "Sources/UILayoutSupport+Extensions.swift"; sourceTree = ""; }; + 68330B3B59229F935EB0700BFDAB1B97 /* DDFontKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDFontKit_Private-dummy.m"; sourceTree = ""; }; + 68443807C91B3F869EDE10F7C28F5A48 /* SharedSequence+Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Operators.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Operators.swift"; sourceTree = ""; }; + 684D01417759D26059765DBD103935E7 /* Driver+Subscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Driver+Subscription.swift"; path = "RxCocoa/Traits/Driver/Driver+Subscription.swift"; sourceTree = ""; }; + 688847A899CA9D29452FB72F219FB4A5 /* Bag+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bag+Rx.swift"; path = "RxSwift/Extensions/Bag+Rx.swift"; sourceTree = ""; }; + 6897DBC92981878E162A165FF3041A8C /* ZFLandScapeControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLandScapeControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLandScapeControlView.m; sourceTree = ""; }; + 68A9797707F2EF47FB79B2AA1D930A2A /* UICollectionViewLayout+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewLayout+MJRefresh.h"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.h"; sourceTree = ""; }; + 68C11471FE2D8B3FF3169547E7A039C1 /* MJRefreshTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshTrailer.m; path = MJRefresh/Base/MJRefreshTrailer.m; sourceTree = ""; }; + 691F57E326C3DEE81C09881290EF7A0C /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefresh/MJRefresh.h; sourceTree = ""; }; + 69258AC6907046152701DAD3AEBC9D62 /* DDLogKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDLogKit_Private-umbrella.h"; sourceTree = ""; }; + 692B100705A504E8120FD2DC75A46993 /* MAMultiPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPoint.h; path = AMapNaviKit.framework/Headers/MAMultiPoint.h; sourceTree = ""; }; + 6A21A70F60EB32C9EC3D94CD3A3C1949 /* BRPickerView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BRPickerView-prefix.pch"; sourceTree = ""; }; + 6A552983BA923BE8FAC4BDA59212655B /* JXCategoryView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXCategoryView.debug.xcconfig; sourceTree = ""; }; + 6A9B731C7C9133C11F69006BDCA26F50 /* JPush.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPush.debug.xcconfig; sourceTree = ""; }; + 6AABCA807BB2C7EA8E3A8CD1CC1DE64C /* AMapNaviInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviInfo.h; path = AMapNaviKit.framework/Headers/AMapNaviInfo.h; sourceTree = ""; }; + 6AFBAEB716BB8713FC68FEC54FEDFD5D /* RequestInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestInterceptor.swift; path = Source/RequestInterceptor.swift; sourceTree = ""; }; + 6B03B8CA3DA0A458182DF4A0D7E9E776 /* ZLLanguageDefine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLLanguageDefine.swift; path = Sources/General/ZLLanguageDefine.swift; sourceTree = ""; }; + 6B225AA8AA8FCAA7D49D7E3E6A7F4A4F /* RxCollectionViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDelegateProxy.swift; sourceTree = ""; }; + 6BB0021453AFA884E736E1E90E4E8301 /* ZFPlayerLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerLogManager.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerLogManager.h; sourceTree = ""; }; + 6BC0D31C149E12F94631266A6C7FB16A /* DDBaseMutableAttributedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseMutableAttributedString.h; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseMutableAttributedString.h; sourceTree = ""; }; + 6BE4E3D63762739C388C505F63DB6277 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; + 6C6B6319757C56C6491867CB296B6C76 /* DDBaseViewController.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = DDBaseViewController.xcassets; path = DDBasicControlsKit_Private/Assets/DDBaseViewController.xcassets; sourceTree = ""; }; + 6CE667E144223C4F16CCA1E35D992B24 /* ZFUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFUtilities.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFUtilities.m; sourceTree = ""; }; + 6CFD54157EE6B877B3A82C7F7C73375F /* DDNetworkingOfAlamofireKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDNetworkingOfAlamofireKit_Private.modulemap; sourceTree = ""; }; + 6D274B300358F4520D7BB80B31F75985 /* MAArc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAArc.h; path = AMapNaviKit.framework/Headers/MAArc.h; sourceTree = ""; }; + 6D2A076D770B8DD24D238362C7053CE7 /* MJRefreshNormalTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.h; sourceTree = ""; }; + 6D63D4ED57BE62AAEF5BDA5D8894F451 /* JXCategoryNumberCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberCell.m; path = Sources/Number/JXCategoryNumberCell.m; sourceTree = ""; }; + 6E7D2754363E9BA3CC4C3089FCC02774 /* JXCategoryFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryFactory.m; path = Sources/Common/JXCategoryFactory.m; sourceTree = ""; }; + 6E915487FBA27FB58B360BD2274EE32D /* ZFPlayerNotification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerNotification.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerNotification.m; sourceTree = ""; }; + 6EAF9EBB0A0F6E1197989EBC8704D23F /* DDWebImageKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDWebImageKit_Private.debug.xcconfig; sourceTree = ""; }; 6EEB8B1CB2BF24B44DEEDC1B058B22E2 /* DDMAMapKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDMAMapKit_Private; path = libDDMAMapKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 6F00AFF32E79768049030605B652BE4E /* URLSessionConfiguration+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSessionConfiguration+Alamofire.swift"; path = "Source/URLSessionConfiguration+Alamofire.swift"; sourceTree = ""; }; - 6F58782AE828761921B460EF2BF85D12 /* AMapCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapCommonObj.h; path = AMapSearchKit.framework/Headers/AMapCommonObj.h; sourceTree = ""; }; - 6F67A3F6383872630B0AE5225DBEE2FE /* ZFKVOController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFKVOController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFKVOController.h; sourceTree = ""; }; - 6FEC83C0B71DB4C7CD33043F11CA9B91 /* ConcurrentMainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentMainScheduler.swift; path = RxSwift/Schedulers/ConcurrentMainScheduler.swift; sourceTree = ""; }; - 703EE49039FBF47F5B4769D7DF30FB70 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; - 70441E4B17170F9A121582970C518A33 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; - 7045948A081729E6912A67A49814DE16 /* DDUtilsSwiftKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDUtilsSwiftKit_Private.debug.xcconfig; sourceTree = ""; }; - 706D7A963DE9BAE212F00D54C63D795C /* AsyncLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncLock.swift; path = RxSwift/Concurrency/AsyncLock.swift; sourceTree = ""; }; - 708BE8750E187F3FD16DE168DB5850BF /* UITextField+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextField+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITextField+DDCategory/UITextField+DDCategory.h"; sourceTree = ""; }; - 709209572360C5C66284AA744CA27028 /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJExtension.m"; path = "MJRefresh/UIScrollView+MJExtension.m"; sourceTree = ""; }; - 70B581A0535C8AFE1471785F9A56355D /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = ""; }; - 70D91EEB7F91167D35E862FFE0649EC9 /* ShareReplayScope.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShareReplayScope.swift; path = RxSwift/Observables/ShareReplayScope.swift; sourceTree = ""; }; + 6EFFB940E3D21863AF8785A75B240D9C /* MAOverlayPathRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlayPathRenderer.h; path = AMapNaviKit.framework/Headers/MAOverlayPathRenderer.h; sourceTree = ""; }; + 6F17AA20CDC09FD8FBC3B61C56938FD3 /* RxTextViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTextViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTextViewDelegateProxy.swift; sourceTree = ""; }; + 6F50CECDEF96020D649ABEBAFB15A3CF /* Kingfisher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Kingfisher.modulemap; sourceTree = ""; }; + 6F6156B556B076A4B9408EC4444CF56D /* UITextView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextView+Rx.swift"; path = "RxCocoa/iOS/UITextView+Rx.swift"; sourceTree = ""; }; + 704E1B50A2EDF3D679B4361DD012E45D /* MAMapVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapVersion.h; path = AMapNaviKit.framework/Headers/MAMapVersion.h; sourceTree = ""; }; + 7072C7432E86A6452CD15FDAC38EF5F2 /* JXCategoryTitleCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleCellModel.h; path = Sources/Title/JXCategoryTitleCellModel.h; sourceTree = ""; }; + 70CA38B9B302CB892D83B42C9D260996 /* DisposeBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBase.swift; path = RxSwift/Disposables/DisposeBase.swift; sourceTree = ""; }; 71067D1F0754E977C6E009846B257042 /* DDBasicControlsKit_Private-DDBaseViewController */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "DDBasicControlsKit_Private-DDBaseViewController"; path = DDBaseViewController.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 712075C261C7E4FD8A48EF269F00C315 /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Sources/Networking/RedirectHandler.swift; sourceTree = ""; }; - 7126C236B3D3ED1FE9DA844C3F8BA19E /* DDColorKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDColorKit_Private-dummy.m"; sourceTree = ""; }; - 716203801373EFC5D8CF145D3D1E3AB5 /* BRPickerStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRPickerStyle.h; path = BRPickerView/Base/BRPickerStyle.h; sourceTree = ""; }; - 7172FA29C95820A6FDE07CF7CE98CA1D /* JXCategoryTitleCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleCellModel.m; path = Sources/Title/JXCategoryTitleCellModel.m; sourceTree = ""; }; - 7178656096573F8AD8E88526C6863C49 /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackNormalFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m; sourceTree = ""; }; - 718BF6A47EFBD4E03A36F0DACD6E0505 /* DDWebImageKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDWebImageKit_Private-umbrella.h"; sourceTree = ""; }; - 71A5F2E0746C8344D74501AE109E6080 /* ZFIJKPlayerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFIJKPlayerManager.h; path = DDZFPlayerKit_Private/Classes/ijkplayer/ZFIJKPlayerManager.h; sourceTree = ""; }; - 71C56D6FE2C0E1B0D503196DF09C7A12 /* DDNavigationControllerDelegateReceiver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDNavigationControllerDelegateReceiver.m; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDNavigationControllerDelegateReceiver.m; sourceTree = ""; }; - 7231A1CEC3FD30E18906AFFBE289E2F6 /* EKAttributes+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Position.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Position.swift"; sourceTree = ""; }; - 7254EBAA62F272CBF1EEB5BA22B06E77 /* JXCategoryViewAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryViewAnimator.h; path = Sources/Common/JXCategoryViewAnimator.h; sourceTree = ""; }; - 73928D14094B4689950A28CFF3C5A0F8 /* URLSession+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSession+Rx.swift"; path = "RxCocoa/Foundation/URLSession+Rx.swift"; sourceTree = ""; }; - 741E78F844F2A9C483529D5DEEDB2FFF /* UITableView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITableView+Rx.swift"; path = "RxCocoa/iOS/UITableView+Rx.swift"; sourceTree = ""; }; - 742E8DF0EF46EDB3CDF4073C16B7AE34 /* RxScrollViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxScrollViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift; sourceTree = ""; }; - 74462DD94E8BEAE1E01733BE2145FE7B /* IQBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQBarButtonItem.swift; sourceTree = ""; }; - 74B338DC5F440910769E39B703F756F7 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; - 74BB3D3F5C55C3FF6574478AD648B145 /* Just.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Just.swift; path = RxSwift/Observables/Just.swift; sourceTree = ""; }; - 74C2FB48366D8FE74D6DA514ADF89EAF /* Reactive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reactive.swift; path = RxSwift/Reactive.swift; sourceTree = ""; }; - 74CBB2BECB2D366E8CDAF745DB476D46 /* AMapNaviCompositeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCompositeManager.h; path = AMapNaviKit.framework/Headers/AMapNaviCompositeManager.h; sourceTree = ""; }; - 7516546B31F35DBB7EA065BBF00BE1ED /* GroupedObservable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupedObservable.swift; path = RxSwift/GroupedObservable.swift; sourceTree = ""; }; - 7518EFB0E218DCFDA2CE7E3BF74FFADA /* AMapTrackTerminalObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackTerminalObj.h; path = AMapTrackKit.framework/Headers/AMapTrackTerminalObj.h; sourceTree = ""; }; - 753F09D3A6589B87B04B3FB45DF916A9 /* AMapNaviKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapNaviKit.framework; sourceTree = ""; }; - 7543597AE632D6723F32384B9D094639 /* DDCategoryKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDCategoryKit_Private.debug.xcconfig; sourceTree = ""; }; - 756071B94EA9B9D34DCD2BEE85E39996 /* Result+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Result+Alamofire.swift"; path = "Source/Result+Alamofire.swift"; sourceTree = ""; }; - 75651BB0013894305D63BFAB718E57EE /* MAHeatMapVectorGridOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorGridOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorGridOverlayRenderer.h; sourceTree = ""; }; - 757E44065C4EBA90A12EE25D4E988F36 /* ObservableConvertibleType+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Driver.swift"; path = "RxCocoa/Traits/Driver/ObservableConvertibleType+Driver.swift"; sourceTree = ""; }; - 7592FB61E085EC16C9DB94249F455327 /* ConstraintMakerPrioritizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerPrioritizable.swift; path = Sources/ConstraintMakerPrioritizable.swift; sourceTree = ""; }; - 759491B4FF8FB9E9A878BC209BFD4F7B /* ZFUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFUtilities.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFUtilities.h; sourceTree = ""; }; - 75A101BFB8C67DB9BF29526435AB01D5 /* AMapFoundationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapFoundationKit.framework; sourceTree = ""; }; - 75AB66F1387ADE34186211D2FA51C30C /* DistinctUntilChanged.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DistinctUntilChanged.swift; path = RxSwift/Observables/DistinctUntilChanged.swift; sourceTree = ""; }; - 75B7B148702B0070DA3C265A01B6DDDD /* SwiftyRSA+ObjC.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SwiftyRSA+ObjC.swift"; path = "Source/SwiftyRSA+ObjC.swift"; sourceTree = ""; }; - 75B8660FBC199D34B9F67DC5BA9EB1D4 /* AMapNaviCompositeUserConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCompositeUserConfig.h; path = AMapNaviKit.framework/Headers/AMapNaviCompositeUserConfig.h; sourceTree = ""; }; - 7600AA3E434EC03D93F059A0B28A028B /* JXCategoryViewAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryViewAnimator.m; path = Sources/Common/JXCategoryViewAnimator.m; sourceTree = ""; }; - 7601532A59A8000731085A66E9F9F56C /* JXCategoryTitleVerticalZoomCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomCell.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCell.h; sourceTree = ""; }; - 7609FEE06A1D3532D1C50F784992CA35 /* JXCategoryListContainerRTLCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryListContainerRTLCell.h; path = Sources/Common/JXCategoryListContainerRTLCell.h; sourceTree = ""; }; - 766332A5D5F2206BC1B60B631765F5CD /* EKAlertMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAlertMessageView.swift; path = Source/MessageViews/EKAlertMessageView.swift; sourceTree = ""; }; - 768FD5E1C41C9DC0C47C2A4C9AC4B51F /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; - 76B71441A16FA850CB2A729E0D20D1A5 /* DDMAMapKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDMAMapKit_Private-prefix.pch"; sourceTree = ""; }; - 76BE111FB993C38F2F5FF734B6967FFD /* ConstraintLayoutGuideDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuideDSL.swift; path = Sources/ConstraintLayoutGuideDSL.swift; sourceTree = ""; }; - 76BE4167DFC20F1CB2B487BBC72288F9 /* JXCategoryTitleImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageView.m; path = Sources/TitleImage/JXCategoryTitleImageView.m; sourceTree = ""; }; - 76C08DAB6DEE753696AB2BC4C281A99B /* NSObject+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSObject+DDCategory/NSObject+DDCategory.m"; sourceTree = ""; }; - 76C4DA99D194B23B019F5B7674229250 /* UIViewController+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIViewController+DDCategory/UIViewController+DDCategory.h"; sourceTree = ""; }; - 76FEF52E669B34B702196132B1C41A77 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; - 770D8D4C1F57C04DA1AA61A58FB419A9 /* Bool+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bool+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Bool+ZLPhotoBrowser.swift"; sourceTree = ""; }; - 771F6EA238053C8C0E8B89BB2E8EF73B /* JXCategoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryView.h; path = Sources/JXCategoryView.h; sourceTree = ""; }; - 774407B6746FD861301D44C5E9E736FD /* BRStringPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRStringPickerView.h; path = BRPickerView/StringPickerView/BRStringPickerView.h; sourceTree = ""; }; - 781B7F0FA16637E1AC33A6D46469B943 /* EntryAppearanceDescriptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EntryAppearanceDescriptor.swift; path = Source/MessageViews/MessagesUtils/EntryAppearanceDescriptor.swift; sourceTree = ""; }; - 7820A44DC2B736F4FB0F8A86F4EC0E4A /* DDSpeechSynthesizer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDSpeechSynthesizer.swift; path = DDAudioPlayerKit_Private/Classes/DDSpeechSynthesizer.swift; sourceTree = ""; }; - 7841DECC6CD83F3386AE7335DD4AD9CC /* NSButton+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Rx.swift"; path = "RxCocoa/macOS/NSButton+Rx.swift"; sourceTree = ""; }; - 7843B75D775810205B085DD861C1F03F /* UIBarButtonItem+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIBarButtonItem+Rx.swift"; path = "RxCocoa/iOS/UIBarButtonItem+Rx.swift"; sourceTree = ""; }; - 7875619CA78736446C19C99FD76D9087 /* ConstraintOffsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintOffsetTarget.swift; path = Sources/ConstraintOffsetTarget.swift; sourceTree = ""; }; - 789046465CC63C8E7BCAB4B9CDDA07BE /* DDAutoUIKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDAutoUIKit_Private-dummy.m"; sourceTree = ""; }; - 7893697D299A72F8BA75B67B7CE2F89E /* ZFVolumeBrightnessView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFVolumeBrightnessView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFVolumeBrightnessView.h; sourceTree = ""; }; - 78BD0489637CD9B81F0F2AC6EB09BFC6 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; - 78C9BC8534817A08C5EF932B9F5F6AAF /* DDPersistenceKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDPersistenceKit_Private.debug.xcconfig; sourceTree = ""; }; - 79060EA6FB966A86AA091D84DC765597 /* DDUtilsSwiftKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDUtilsSwiftKit_Private-umbrella.h"; sourceTree = ""; }; - 7958F91CC026C5C7181A4224C319C7A3 /* UIColor+JXAdd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+JXAdd.h"; path = "Sources/Common/UIColor+JXAdd.h"; sourceTree = ""; }; - 795909B64F353467B960AC23DF82236F /* DDAudioPlayerKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDAudioPlayerKit_Private.debug.xcconfig; sourceTree = ""; }; - 797042713E274AA76DF91C1EBFFA1320 /* ImageFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageFormat.swift; path = Sources/Image/ImageFormat.swift; sourceTree = ""; }; - 79B9A7893C1F94F144E666ABB214222F /* NSView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSView+Rx.swift"; path = "RxCocoa/macOS/NSView+Rx.swift"; sourceTree = ""; }; - 79C4E2407E2CED7DC8E6149454EEA006 /* DDImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDImage.swift; path = DDControlsKit_Private/Classes/DDImage/DDImage.swift; sourceTree = ""; }; - 79D1400A988679AE194ED2ED4F8CB328 /* MAArc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAArc.h; path = AMapNaviKit.framework/Headers/MAArc.h; sourceTree = ""; }; - 79E20F9E0E7419F7218D8D1BEAC8BE00 /* ZFSpeedLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFSpeedLoadingView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSpeedLoadingView.h; sourceTree = ""; }; - 7A8C8AF30AD84DD09DAEBF8AB4449539 /* AMapTrack-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapTrack-NO-IDFA.release.xcconfig"; sourceTree = ""; }; - 7B0589635BD25BF46D13DA3F74A2322A /* EKAttributes+WindowLevel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+WindowLevel.swift"; path = "Source/Model/EntryAttributes/EKAttributes+WindowLevel.swift"; sourceTree = ""; }; - 7B0ECF6D28C24CF886DD1B69325C2C61 /* DDBaseScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseScrollView.m; path = DDBasicControlsKit_Private/Classes/DDBaseScrollView/DDBaseScrollView.m; sourceTree = ""; }; - 7B589E8C9316D95F22F9385FD5443EEB /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; - 7B5CB62C7E9BE649E374D62A82B71616 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; - 7B64D8BD88674E87F4B8033172DD9E64 /* ElementAt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ElementAt.swift; path = RxSwift/Observables/ElementAt.swift; sourceTree = ""; }; - 7B7EEE107CBF352570BBB5ED7CA39F08 /* MAPinAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPinAnnotationView.h; path = AMapNaviKit.framework/Headers/MAPinAnnotationView.h; sourceTree = ""; }; - 7BCB003D38E8C40D32D4D6D347BF563E /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; + 710F5997B08498C5D22C5B06E39516F2 /* AMapLocationVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationVersion.h; path = AMapLocationKit.framework/Headers/AMapLocationVersion.h; sourceTree = ""; }; + 7118AE0E0A3BCFA850CB5C2126039708 /* UIBarButtonItem+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIBarButtonItem+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIBarButtonItem+DDCategory/UIBarButtonItem+DDCategory.m"; sourceTree = ""; }; + 7141078F3B6E34C10F24EDAC1DF45276 /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; + 7161FD57350902AECABFE98E777A0DF2 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; + 71A7EEB1C47A7E3198A6AF60FC62E221 /* DDProgressHUDKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDProgressHUDKit_Private.modulemap; sourceTree = ""; }; + 71F61D591EFBBE0F4E5CD8FCDCAE47D1 /* RxPickerViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxPickerViewDelegateProxy.swift; sourceTree = ""; }; + 727A6C8BEB00BD2EACEC9F18CC10B9A1 /* DDMALocationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMALocationManager.m; path = DDMAMapKit_Private/Classes/DDMALocation/DDMALocationManager.m; sourceTree = ""; }; + 728495767F7F2BD321DD997F5508009E /* DDViewControllerAnimatedTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDViewControllerAnimatedTransition.h; path = DDBasicControlsKit_Private/Classes/DDBaseAnimation/DDTransitionAnimation/DDViewControllerAnimatedTransition.h; sourceTree = ""; }; + 728BC62357FBB93CB07BF6E17C2A6A86 /* ZFFloatView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFFloatView.m; path = DDZFPlayerKit_Private/Classes/Core/ZFFloatView.m; sourceTree = ""; }; + 729ABB23BD1AA8F9CA4D81E5FAEF8E05 /* DDMALocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMALocationManager.h; path = DDMAMapKit_Private/Classes/DDMALocation/DDMALocationManager.h; sourceTree = ""; }; + 72EC0B2A42D1B3D51A37987D533572E8 /* DDProgressHUDKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDProgressHUDKit_Private-umbrella.h"; sourceTree = ""; }; + 7373A506072C533C303FBDB01375DAAC /* _RX.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RX.m; path = RxCocoa/Runtime/_RX.m; sourceTree = ""; }; + 73817A468E3633742396D024AD025E6A /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = MJRefresh.bundle; path = MJRefresh/MJRefresh.bundle; sourceTree = ""; }; + 73C066DE0E3EF2B198218157AC11EF02 /* Take.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Take.swift; path = RxSwift/Observables/Take.swift; sourceTree = ""; }; + 73F744CE5E0E9B9F8F2C3023FDE73FF6 /* DelegateProxyType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelegateProxyType.swift; path = RxCocoa/Common/DelegateProxyType.swift; sourceTree = ""; }; + 73FBC91F0B352BDC2DC1B1F28A44CFC3 /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; + 745324BFC876CE97033B3DC956709856 /* UISlider+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISlider+Rx.swift"; path = "RxCocoa/iOS/UISlider+Rx.swift"; sourceTree = ""; }; + 74AEFEEE14F4D14CCD3B1BD558A6CF45 /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; + 74E27D744C60FEAFC554F9A024382533 /* MAHeatMapVectorGridOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorGridOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorGridOverlayRenderer.h; sourceTree = ""; }; + 74EA3689D1F00D98ABFDC927ECCCA19C /* AuthenticationInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationInterceptor.swift; path = Source/AuthenticationInterceptor.swift; sourceTree = ""; }; + 74F8FEA5A910644F177B1663C04516EC /* PrivateKey.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrivateKey.swift; path = Source/PrivateKey.swift; sourceTree = ""; }; + 752F50737BE63096173CE2D82D5F79E5 /* MJRefresh.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.release.xcconfig; sourceTree = ""; }; + 75AE48F1E611E1FC57FD128C217AEDAA /* AMapNaviDriveView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviDriveView.h; path = AMapNaviKit.framework/Headers/AMapNaviDriveView.h; sourceTree = ""; }; + 75FF75042778B1F2D5B5419A53AC1CBA /* ZLPhotoConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoConfiguration.swift; path = Sources/General/ZLPhotoConfiguration.swift; sourceTree = ""; }; + 7633FA2DCAF01B51453AA097D12BC7DB /* KFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFAnimatedImage.swift; path = Sources/SwiftUI/KFAnimatedImage.swift; sourceTree = ""; }; + 766B6947AAFF5ABDA10B93CDB391BC72 /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; + 767BB055D159AF2A3A495E4C46FCC901 /* _RXDelegateProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXDelegateProxy.h; path = RxCocoa/Runtime/include/_RXDelegateProxy.h; sourceTree = ""; }; + 769BCA6DE32067F47887B1DB030BA1B6 /* RxSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-umbrella.h"; sourceTree = ""; }; + 76F38F6902EA50F0DAAC6B311ADEB285 /* JXCategoryTitleImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageView.h; path = Sources/TitleImage/JXCategoryTitleImageView.h; sourceTree = ""; }; + 770E1B3EBC3640ED238C98349449026E /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; + 771CE9363DF1FF47C201ED73257B9BCE /* EKSimpleMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKSimpleMessage.swift; path = Source/Model/EKSimpleMessage.swift; sourceTree = ""; }; + 7722C1C9D15E69BC935160C37BAD3C8D /* MAMultiTexturePolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiTexturePolylineRenderer.h; path = AMapNaviKit.framework/Headers/MAMultiTexturePolylineRenderer.h; sourceTree = ""; }; + 77413D6A5B61595D5226C52CAC7583E3 /* JXCategoryBaseCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseCellModel.m; path = Sources/Base/JXCategoryBaseCellModel.m; sourceTree = ""; }; + 775E9F99932457EB38E1830414C07C59 /* ZFNetworkSpeedMonitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFNetworkSpeedMonitor.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFNetworkSpeedMonitor.h; sourceTree = ""; }; + 7782214C4958E9B77AA6CAF2D430F2ED /* DDKeychain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDKeychain.swift; path = DDPersistenceKit_Private/Classes/DDKeychain.swift; sourceTree = ""; }; + 779ED11063FBD714E51333AF36ED5209 /* DelaySubscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelaySubscription.swift; path = RxSwift/Observables/DelaySubscription.swift; sourceTree = ""; }; + 77B022AD37E2DE1CFA87023184B71B24 /* UITextField+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextField+Rx.swift"; path = "RxCocoa/iOS/UITextField+Rx.swift"; sourceTree = ""; }; + 77B18F43846B0B8371F816E96FDD2B7C /* SwiftEntryKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftEntryKit.swift; path = Source/SwiftEntryKit.swift; sourceTree = ""; }; + 77BBEBE1B50CD7C826254DC3B5932D03 /* EKWindowProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKWindowProvider.swift; path = Source/Infra/EKWindowProvider.swift; sourceTree = ""; }; + 77D6363B15E7FD81D43C1F894B278CC5 /* DDControlsKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDControlsKit_Private.debug.xcconfig; sourceTree = ""; }; + 77E5E3382F3E9A1F4EBB361EA51F90D5 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; + 7851F5F987DC2A5FBCBB3196F3E607A2 /* SessionDataTask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDataTask.swift; path = Sources/Networking/SessionDataTask.swift; sourceTree = ""; }; + 7855D749526C841286E983EA3CAC88BB /* JXCategoryIndicatorComponentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorComponentView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorComponentView.h; sourceTree = ""; }; + 787A6743C297666C5B4D984E75D2CDF7 /* ESTabBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBar.swift; path = Sources/ESTabBar.swift; sourceTree = ""; }; + 787C2921957C0B7F9445C0D727AFFF01 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; + 788A74ECF02240C72B584890E3D0A26D /* ZLPhotoPreviewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewCell.swift; path = Sources/General/ZLPhotoPreviewCell.swift; sourceTree = ""; }; + 78EE8C2F0DC5558D2105E1033F631FAC /* UIColor+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+Utils.swift"; path = "Source/Extensions/UIColor+Utils.swift"; sourceTree = ""; }; + 78FC8F6A1D66D485DEB887D2808285EE /* ZFPlayer.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = ZFPlayer.bundle; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPlayer.bundle; sourceTree = ""; }; + 79064159BE9DE0015F7BA32759741857 /* DDBaseSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseSwitch.h; path = DDBasicControlsKit_Private/Classes/DDBaseSwitch/DDBaseSwitch.h; sourceTree = ""; }; + 7943AF051F1347D4280447B8B5EE8BEA /* ZLTextStickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLTextStickerView.swift; path = Sources/Edit/ZLTextStickerView.swift; sourceTree = ""; }; + 79810608C2C763BDCF941946182D9294 /* ZLVideoManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLVideoManager.swift; path = Sources/General/ZLVideoManager.swift; sourceTree = ""; }; + 79EAD67EEA5838C829D0C8A482F71F1B /* AMapSearchKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapSearchKit.framework; sourceTree = ""; }; + 7A2B314FC086E2144380E4DFC9BBA902 /* DDBaseTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTextView.m; path = DDBasicControlsKit_Private/Classes/DDBaseTextView/DDBaseTextView.m; sourceTree = ""; }; + 7A3DC87B2C6A39B7CEBC890582EAA58D /* MainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MainScheduler.swift; path = RxSwift/Schedulers/MainScheduler.swift; sourceTree = ""; }; + 7A4F7B8A08F758239FCEF13B69A6CE2F /* AuthenticationChallengeResponsable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationChallengeResponsable.swift; path = Sources/Networking/AuthenticationChallengeResponsable.swift; sourceTree = ""; }; + 7A7DA3FDF3D09A72803F1ED68CACD997 /* ESTabBarItemContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemContentView.swift; path = Sources/ESTabBarItemContentView.swift; sourceTree = ""; }; + 7ADCBE556777FC06DECD3FAE17C794DA /* EKButtonBarView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKButtonBarView.swift; path = Source/MessageViews/MessagesUtils/EKButtonBarView.swift; sourceTree = ""; }; + 7B43E9C15A4E70FA5A32A182E1948DB6 /* BRAddressPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRAddressPickerView.m; path = BRPickerView/AddressPickerView/BRAddressPickerView.m; sourceTree = ""; }; + 7B62B6C47135CEF2CEB76E9BED44680B /* QLCompatibility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QLCompatibility.swift; path = Source/Extensions/QuickLayout/QLCompatibility.swift; sourceTree = ""; }; + 7BB27990636087FB8595A96CC780733A /* SubjectType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubjectType.swift; path = RxSwift/Subjects/SubjectType.swift; sourceTree = ""; }; + 7BCF63B64FEF7B8D4CB5390621ACCCE0 /* ZFNetworkSpeedMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFNetworkSpeedMonitor.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFNetworkSpeedMonitor.m; sourceTree = ""; }; 7BF437F1301E282D248141EA0E4FDED5 /* Pods-OrderSchedulingNotificationService.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OrderSchedulingNotificationService.debug.xcconfig"; sourceTree = ""; }; - 7BFEE202F51DE86820BBD9B0E7B60D2F /* BooleanDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BooleanDisposable.swift; path = RxSwift/Disposables/BooleanDisposable.swift; sourceTree = ""; }; - 7C11F0E7FF4B809B75108D36C30AD2FC /* IQUIViewController+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIViewController+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIViewController+Additions.swift"; sourceTree = ""; }; - 7C336F608A5E4D46AB0CA092D0B18BEB /* MATraceLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceLocation.h; path = AMapNaviKit.framework/Headers/MATraceLocation.h; sourceTree = ""; }; - 7C3EC2559E8A3B6A447C753B9D45CEC5 /* ImageProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProcessor.swift; path = Sources/Image/ImageProcessor.swift; sourceTree = ""; }; - 7C5D15D33491C746363CB0AA1240F94C /* EKWindowProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKWindowProvider.swift; path = Source/Infra/EKWindowProvider.swift; sourceTree = ""; }; - 7C6180D3049C9C913A983028658C4854 /* Sink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sink.swift; path = RxSwift/Observables/Sink.swift; sourceTree = ""; }; - 7C7179902FA25766C671B7B414D9D77D /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; - 7CCF40DEA35B2D616301AFFC03567FB6 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; - 7CDED5A04FDA512C3BF415649C8A1822 /* ZLEditVideoViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditVideoViewController.swift; path = Sources/Edit/ZLEditVideoViewController.swift; sourceTree = ""; }; - 7D0A4A2904E3141B79A063B4440062E1 /* Sources_DDMAMap */ = {isa = PBXFileReference; includeInIndex = 1; name = Sources_DDMAMap; path = DDMAMapKit_Private/Assets/Sources_DDMAMap; sourceTree = ""; }; - 7D457398AD0A36F0DDD72B046A387B2C /* UITabBarController+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITabBarController+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITabBarController+DDCategory/UITabBarController+DDCategory.h"; sourceTree = ""; }; - 7D466EFBC5B2AFEBE9A18E17D09AAF7E /* IQKeyboardManagerSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-umbrella.h"; sourceTree = ""; }; - 7D6F73E591DEFE4B35BC78F81117823D /* EKBackgroundView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKBackgroundView.swift; path = Source/Infra/EKBackgroundView.swift; sourceTree = ""; }; - 7DC6B29FF4E9A8C06F7C4AF97567EFB5 /* MAConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAConfig.h; path = AMapNaviKit.framework/Headers/MAConfig.h; sourceTree = ""; }; - 7DCACE3236B6F7672272C51B5E33CEF6 /* DDDate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDDate.swift; path = DDDateKit_Private/Classes/DDDate.swift; sourceTree = ""; }; - 7DD5ABD5BAE466CBBC22E69CA8F62ED6 /* SubscriptionDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscriptionDisposable.swift; path = RxSwift/Disposables/SubscriptionDisposable.swift; sourceTree = ""; }; - 7E68705B11B244C7E145B9E820FFE739 /* ImagePrefetcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImagePrefetcher.swift; path = Sources/Networking/ImagePrefetcher.swift; sourceTree = ""; }; - 7E7BD7C686CF13C3C55090FDCFD388C1 /* UIColor+Hue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+Hue.swift"; path = "DDColorKit_Private/Classes/UIColor+Hue.swift"; sourceTree = ""; }; - 7E8EB4D9D80DED315FCCCD54A22BFF90 /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = ""; }; - 7EB7B0A9C44B87EC7140C701FE2AD3ED /* ZLPhotoBrowser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ZLPhotoBrowser.debug.xcconfig; sourceTree = ""; }; - 7EDE67DAD4A3F72D4A31CD81DD02F8B3 /* RxTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTarget.swift; path = RxCocoa/Common/RxTarget.swift; sourceTree = ""; }; - 7EF4C1D1ABAD085F21A045EE2D7E73D2 /* MJRefreshTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshTrailer.h; path = MJRefresh/Base/MJRefreshTrailer.h; sourceTree = ""; }; - 7F66B1DB098C3DA48026D74A3F43CA39 /* DDAudioPlayerKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDAudioPlayerKit_Private-dummy.m"; sourceTree = ""; }; - 7F76FBE05D9EE9EA28687892BF629DFF /* NSData+SHA.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+SHA.h"; path = "Source/NSData+SHA.h"; sourceTree = ""; }; - 7F96937CC3868B34FA491E26FB66A620 /* ZFFloatView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFFloatView.m; path = DDZFPlayerKit_Private/Classes/Core/ZFFloatView.m; sourceTree = ""; }; - 7FA52F6784A8AC0D4C05672C386D5D3C /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-prefix.pch"; sourceTree = ""; }; - 7FD9DEBB996349B686CCF2885152C2C7 /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; - 7FE5238A67605D1950E755054FB81B7E /* DDBaseCollectionViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseCollectionViewCell.h; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionViewCell/DDBaseCollectionViewCell.h; sourceTree = ""; }; - 801E554458FA935FE0EAB7E76939D9E3 /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = ""; }; - 80391191EA7572D340A98EE7F8F8370F /* DDDateKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDDateKit_Private-prefix.pch"; sourceTree = ""; }; - 803E944794202982B6BF71FA78D3E934 /* VirtualTimeConverterType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeConverterType.swift; path = RxSwift/Schedulers/VirtualTimeConverterType.swift; sourceTree = ""; }; - 80417752DC8D1E053F06918AE6D94237 /* AMapNaviKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviKit.h; path = AMapNaviKit.framework/Headers/AMapNaviKit.h; sourceTree = ""; }; - 8066F3F18A2F0BBE74C6C051B7A1C73C /* ESTabBarController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarController.swift; path = Sources/ESTabBarController.swift; sourceTree = ""; }; - 806B3B0C554073E0DB8B0668D9DDE96A /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = ""; }; - 809A942811E904E5AB37C4F1A042F7C7 /* EKWindow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKWindow.swift; path = Source/Infra/EKWindow.swift; sourceTree = ""; }; + 7C0B12F8031E29824D61B55627480C97 /* UIApplication+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIApplication+DDCategory/UIApplication+DDCategory.h"; sourceTree = ""; }; + 7C0FEB40C6D7AE8B70353F2A8C8219AB /* EKButtonView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKButtonView.swift; path = Source/MessageViews/MessagesUtils/EKButtonView.swift; sourceTree = ""; }; + 7C11576D1AF7C0FF224059E4CDDB1D6D /* ZFSpeedLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFSpeedLoadingView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSpeedLoadingView.m; sourceTree = ""; }; + 7C33922ADC5E11BDCCF18DC9A39627A5 /* Result+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Result+Alamofire.swift"; path = "Source/Result+Alamofire.swift"; sourceTree = ""; }; + 7C648F392A023CF7B9989C59E61DFB63 /* UISwitch+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISwitch+Rx.swift"; path = "RxCocoa/iOS/UISwitch+Rx.swift"; sourceTree = ""; }; + 7CCD9E46F1E1E4415B1C36C0FFE711C4 /* URLSessionConfiguration+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSessionConfiguration+Alamofire.swift"; path = "Source/URLSessionConfiguration+Alamofire.swift"; sourceTree = ""; }; + 7CD47A1BD39ECCC27A08C2AAA472351B /* AMapNaviTrafficBarView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviTrafficBarView.h; path = AMapNaviKit.framework/Headers/AMapNaviTrafficBarView.h; sourceTree = ""; }; + 7CE230AB72519EDB823EF72848204C6C /* ZLGeneralDefine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLGeneralDefine.swift; path = Sources/General/ZLGeneralDefine.swift; sourceTree = ""; }; + 7D0C5B8270C483F02144AA8D18C90901 /* SynchronizedUnsubscribeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedUnsubscribeType.swift; path = RxSwift/Concurrency/SynchronizedUnsubscribeType.swift; sourceTree = ""; }; + 7D42EB94319CCB58A1A442711C58125B /* UINavigationItem+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationItem+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UINavigationItem+DDCategory/UINavigationItem+DDCategory.h"; sourceTree = ""; }; + 7D692E191D5A31E9F9F5176425ED7090 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; + 7DE7EBCD7288EAF466A187DCD0C6ACD3 /* ZLThumbnailPhotoCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLThumbnailPhotoCell.swift; path = Sources/General/ZLThumbnailPhotoCell.swift; sourceTree = ""; }; + 7E0CBFB4660D7C05DFAC5B142B9C5118 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; + 7E3D08B57DCDB9B37946A48DF6482C85 /* EKNotificationMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKNotificationMessage.swift; path = Source/Model/EKNotificationMessage.swift; sourceTree = ""; }; + 7E4785A66D79CA1271B35D4B9F3C8507 /* MAAnimatedAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnimatedAnnotation.h; path = AMapNaviKit.framework/Headers/MAAnimatedAnnotation.h; sourceTree = ""; }; + 7E4F089093B7EA428A2A77E6772C6E84 /* SDImageAWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAWebPCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAWebPCoder.h; sourceTree = ""; }; + 7E4FC5C5B4343E8DE91CB31C605EDB8C /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; + 7E6DD7EB75072604E5832BA5E6C83DDE /* DDPersistenceKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDPersistenceKit_Private.release.xcconfig; sourceTree = ""; }; + 7E73E2323A80B4111342503B24A16CCB /* DDBaseModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseModel.m; path = DDBasicControlsKit_Private/Classes/DDBaseModel/DDBaseModel.m; sourceTree = ""; }; + 7E744216409B50DFF7310309A1789635 /* X509Certificate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = X509Certificate.swift; path = Source/X509Certificate.swift; sourceTree = ""; }; + 7EA821B861F99F932833744748A753B1 /* JCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JCore.debug.xcconfig; sourceTree = ""; }; + 7EADA2B589766C8EAFFD468B6CDA23BA /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = ""; }; + 7ECEE0571C90DC8C4C480210DE1824E8 /* DDZFPlayerKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDZFPlayerKit_Private-umbrella.h"; sourceTree = ""; }; + 7ECFDDFEC4A2EF306AB134A328B8FFA3 /* JXCategoryViewDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryViewDefines.h; path = Sources/Common/JXCategoryViewDefines.h; sourceTree = ""; }; + 7EEFD3500E275F334FC5C3FAED22C19C /* _RXDelegateProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXDelegateProxy.m; path = RxCocoa/Runtime/_RXDelegateProxy.m; sourceTree = ""; }; + 7F0307915E8259B875EB53FE81A29EFC /* ZFLandScapeControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLandScapeControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLandScapeControlView.h; sourceTree = ""; }; + 7F183400195575164CDEFA521081774A /* ConstraintConstantTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConstantTarget.swift; path = Sources/ConstraintConstantTarget.swift; sourceTree = ""; }; + 7F74218AE4EAC3E73C44E2DF119A6765 /* KFImageOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageOptions.swift; path = Sources/SwiftUI/KFImageOptions.swift; sourceTree = ""; }; + 7F8F3F332E659C9CBF1B9165708B4752 /* JXCategoryTitleImageCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageCell.h; path = Sources/TitleImage/JXCategoryTitleImageCell.h; sourceTree = ""; }; + 7FB1E26331EFCCFD6350B17A064756EC /* CombineLatest+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+Collection.swift"; path = "RxSwift/Observables/CombineLatest+Collection.swift"; sourceTree = ""; }; + 803CF4D81B5BC0B583110537739D795F /* ImageProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProcessor.swift; path = Sources/Image/ImageProcessor.swift; sourceTree = ""; }; + 806B5B56C01097586DC8023B631BBE14 /* Using.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Using.swift; path = RxSwift/Observables/Using.swift; sourceTree = ""; }; + 808EF99244BC687EF8D40D1BD719230D /* UIEdgeInsets+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIEdgeInsets+Utils.swift"; path = "Source/Extensions/UIEdgeInsets+Utils.swift"; sourceTree = ""; }; 809C5FAB588354C9BA37DC3EAB8CB45C /* RxSwift */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RxSwift; path = libRxSwift.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 80CFC41A2AFB3AB5866D6E4DCB91387C /* ZLPhotoManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoManager.swift; path = Sources/General/ZLPhotoManager.swift; sourceTree = ""; }; - 80D8B88FBBCBC51A9822653DD718DE16 /* Infallible+CombineLatest+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+CombineLatest+arity.swift"; path = "RxSwift/Traits/Infallible/Infallible+CombineLatest+arity.swift"; sourceTree = ""; }; - 80E26B07204EE4590E6D6A284FAE9971 /* RxSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-umbrella.h"; sourceTree = ""; }; - 80FAB26D30EA39FFCFCE983115953C8D /* ConstraintMakerEditable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerEditable.swift; path = Sources/ConstraintMakerEditable.swift; sourceTree = ""; }; - 81510816831459AE4634AB018B8A1089 /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+MJExtension.m"; path = "MJRefresh/UIView+MJExtension.m"; sourceTree = ""; }; - 816833637B80A142377856F220C60072 /* MJRefreshNormalTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.m; sourceTree = ""; }; - 81AE312979BD48363A3F57B2019A76CA /* Placeholder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Placeholder.swift; path = Sources/Image/Placeholder.swift; sourceTree = ""; }; - 81B9AEBD43CEE06721B54B6D2E40B3A3 /* HistoricalSchedulerTimeConverter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalSchedulerTimeConverter.swift; path = RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift; sourceTree = ""; }; - 81C3F55AC49722C3EDAD764F5ACEE159 /* JXCategoryIndicatorProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorProtocol.h; path = Sources/Common/JXCategoryIndicatorProtocol.h; sourceTree = ""; }; - 821281B930B757E0894BE75AC6B5D686 /* UINavigationController+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationController+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UINavigationController+DDCategory/UINavigationController+DDCategory.m"; sourceTree = ""; }; - 823464E00AF14E1C827C3774E038EFC2 /* ZLCustomAlertProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCustomAlertProtocol.swift; path = Sources/General/ZLCustomAlertProtocol.swift; sourceTree = ""; }; - 82D5CEB25905D652A61363E1BF3A8275 /* MBProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MBProgressHUD.m; path = DDProgressHUDKit_Private/Classes/MBProgressHUD.m; sourceTree = ""; }; - 8315420924BA3E786C186391410EBCF0 /* MAHeatMapTileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapTileOverlay.h; path = AMapNaviKit.framework/Headers/MAHeatMapTileOverlay.h; sourceTree = ""; }; - 836B70AF1902E529A0FECE121B18AB1C /* UIScreen+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScreen+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIScreen+DDCategory/UIScreen+DDCategory.h"; sourceTree = ""; }; - 838C0533D1F076BA19A4E8FF6F2FEA5A /* DDTimerSwiftKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDTimerSwiftKit_Private-umbrella.h"; sourceTree = ""; }; - 83C73AD16B130938F86D5F21B5A4CC3E /* UIView+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Utils.swift"; path = "Source/Extensions/UIView+Utils.swift"; sourceTree = ""; }; - 83C80746628D107B0BAD96A17846414B /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; - 83DBDF33C10915BC1F6E6306C566B254 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; - 8401B25624A44A362A28E544C9474B18 /* UIImage+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIImage+DDCategory/UIImage+DDCategory.h"; sourceTree = ""; }; - 842663C6E92F695503DEF0BDF90FF6B2 /* FormatIndicatedCacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatIndicatedCacheSerializer.swift; path = Sources/Cache/FormatIndicatedCacheSerializer.swift; sourceTree = ""; }; - 843613D9700997543D0459D76E84B20C /* ZFPlayerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerView.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerView.h; sourceTree = ""; }; - 84522570DAD672D58AA4E389329D7CEA /* PHAsset+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PHAsset+ZLPhotoBrowser.swift"; path = "Sources/Extensions/PHAsset+ZLPhotoBrowser.swift"; sourceTree = ""; }; - 848BA543148270E52815E8A9B9CAE339 /* Catch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Catch.swift; path = RxSwift/Observables/Catch.swift; sourceTree = ""; }; - 84A8BBAB2D2EAC220ED79E7DA049CF88 /* AMapNaviWalkManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviWalkManager.h; path = AMapNaviKit.framework/Headers/AMapNaviWalkManager.h; sourceTree = ""; }; - 84AD6E8A433AE28682F339252C2EB98E /* ZLAlbumListCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAlbumListCell.swift; path = Sources/General/ZLAlbumListCell.swift; sourceTree = ""; }; - 84B3A8626BDAE2D63428B475ABE922B3 /* AMapUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapUtility.h; path = AMapFoundationKit.framework/Headers/AMapUtility.h; sourceTree = ""; }; - 84B5F1C4B61C044E30A27877BD9CDA0F /* DDLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDLabel.swift; path = DDControlsKit_Private/Classes/DDLabel/DDLabel.swift; sourceTree = ""; }; - 84BACDA80C49A4EB43FE6924CCC6F6CA /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackFooter.h; path = MJRefresh/Base/MJRefreshBackFooter.h; sourceTree = ""; }; - 84E85387348999D8B79FB268ECD4CF0D /* SubjectType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubjectType.swift; path = RxSwift/Subjects/SubjectType.swift; sourceTree = ""; }; - 84F82C75247FE02020351864D416DE2D /* PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrimitiveSequence.swift; path = RxSwift/Traits/PrimitiveSequence/PrimitiveSequence.swift; sourceTree = ""; }; - 84FD20C15ACF6E43D826E978C8D0D765 /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; - 852AAAD4B161A6E1FC5953FA74B53188 /* DDControlsKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDControlsKit_Private-dummy.m"; sourceTree = ""; }; - 855E54C16AEA0EC5BD5A55F9AE9541D5 /* MAPathShowRange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPathShowRange.h; path = AMapNaviKit.framework/Headers/MAPathShowRange.h; sourceTree = ""; }; - 85971ECD34AD930163CB8649D33A557C /* JPush.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPush.debug.xcconfig; sourceTree = ""; }; - 859B9DA928AEBE087766D1267554DDB0 /* EKAttributes+DisplayMode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+DisplayMode.swift"; path = "Source/Model/EntryAttributes/EKAttributes+DisplayMode.swift"; sourceTree = ""; }; + 80CC449142B606B9E2AFB01AA5928B28 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; + 80F6990D25520C9527311757E4DFE886 /* Toast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Toast.swift; path = DDToastKit_Private/Classes/Toast.swift; sourceTree = ""; }; + 8134BB2AA5305F578302AA8091E2FA82 /* DDMANaviManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMANaviManager.m; path = DDMAMapKit_Private/Classes/DDMANaviManager/DDMANaviManager.m; sourceTree = ""; }; + 813B31DDD073B067BC6D0DC097A0072C /* DDBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseView.m; path = DDBasicControlsKit_Private/Classes/DDBaseView/DDBaseView.m; sourceTree = ""; }; + 81497325EC740F6F6E8CF05DA8DB27B2 /* SingleAssignmentDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAssignmentDisposable.swift; path = RxSwift/Disposables/SingleAssignmentDisposable.swift; sourceTree = ""; }; + 8167D5C063A75E87C93E22879E010180 /* DDMAMapView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMAMapView.h; path = DDMAMapKit_Private/Classes/DDMAMap/MapView/DDMAMapView.h; sourceTree = ""; }; + 81780C956D086766F6C3125DB1A37A50 /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = ""; }; + 817CE321BA9B96C442CFBD690CBD8636 /* DDBaseViewModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseViewModel.h; path = DDBasicControlsKit_Private/Classes/DDBaseViewModel/DDBaseViewModel.h; sourceTree = ""; }; + 8183B206803DE53281F25BC255C285A5 /* JXCategoryNumberCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberCellModel.m; path = Sources/Number/JXCategoryNumberCellModel.m; sourceTree = ""; }; + 81A11D1530E8125E4DD942C1D1E9F833 /* ZFPlayerControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPlayerControlView.h; sourceTree = ""; }; + 81A5E3DEB4B9DE59D53FE036690BD6DD /* RxRelay-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxRelay-umbrella.h"; sourceTree = ""; }; + 821A51399AA8014383227F9EF07762E8 /* LockOwnerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LockOwnerType.swift; path = RxSwift/Concurrency/LockOwnerType.swift; sourceTree = ""; }; + 8234D79DB09F470ABBDD887A72BA9570 /* Zip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Zip.swift; path = RxSwift/Observables/Zip.swift; sourceTree = ""; }; + 8255B663C7C175AF3CD61B93F9EFA011 /* ServerTrustEvaluation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustEvaluation.swift; path = Source/ServerTrustEvaluation.swift; sourceTree = ""; }; + 82F7ACA1ED5722A9D00DAD946D51A573 /* SwiftyRSA-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyRSA-prefix.pch"; sourceTree = ""; }; + 8339572E701F72A6351C88A4011B9050 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; + 83453B71AAADD3E63823E299371E7B30 /* GCDTimer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GCDTimer.swift; path = DDTimerSwiftKit_Private/Classes/GCDTimer/GCDTimer.swift; sourceTree = ""; }; + 83970BDB8172C4F8BD4F6D84DFE861EB /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; + 83AE347DC32BAC35F18EC1AB8EFDB289 /* DDAlamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAlamofire.swift; path = DDNetworkingOfAlamofireKit_Private/Classes/DDAlamofire.swift; sourceTree = ""; }; + 83C495291C58F4DE5934A16DE7B77539 /* EKAccessoryNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAccessoryNoteMessageView.swift; path = Source/MessageViews/Notes/EKAccessoryNoteMessageView.swift; sourceTree = ""; }; + 83E6FA2568CBB703B0B60597E97F83B2 /* ZFKVOController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFKVOController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFKVOController.h; sourceTree = ""; }; + 8409E2B8BBA225FA53243A31057F10DF /* UITableView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITableView+DDCategory/UITableView+DDCategory.m"; sourceTree = ""; }; + 844B14AFA346AEC662C06514D3F2909E /* OperationQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OperationQueueScheduler.swift; path = RxSwift/Schedulers/OperationQueueScheduler.swift; sourceTree = ""; }; + 844CE0BC14316FBD13467CD96FBED46D /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; + 8468E2C4206CC25A5A8913C850E82F32 /* MAMapCustomStyleOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapCustomStyleOptions.h; path = AMapNaviKit.framework/Headers/MAMapCustomStyleOptions.h; sourceTree = ""; }; + 84995150EDADD2A687D315A58D072317 /* Signature.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Signature.swift; path = Source/Signature.swift; sourceTree = ""; }; + 8580AF676EEAEFF706921E0BCE3FA2E0 /* AMapSearchVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchVersion.h; path = AMapSearchKit.framework/Headers/AMapSearchVersion.h; sourceTree = ""; }; + 85AE5D42F04D6B691672E9ECE4FFDF56 /* ZFSliderView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFSliderView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSliderView.m; sourceTree = ""; }; + 85D4DBE558FB915425BB625CF856E6C5 /* MAMapKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapKit.h; path = AMapNaviKit.framework/Headers/MAMapKit.h; sourceTree = ""; }; 861E3EABF816A1CA179B292C434C7624 /* Pods-OrderSchedulingNotificationService-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-OrderSchedulingNotificationService-dummy.m"; sourceTree = ""; }; - 864C4471A94EFD4C2B350ED4251170D9 /* SingleAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAsync.swift; path = RxSwift/Observables/SingleAsync.swift; sourceTree = ""; }; - 866E3993D4D20D92AE6CA6566F505597 /* TakeLast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeLast.swift; path = RxSwift/Observables/TakeLast.swift; sourceTree = ""; }; - 86C39B9E1ED8091431E51484A8EC4847 /* SerialDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDisposable.swift; path = RxSwift/Disposables/SerialDisposable.swift; sourceTree = ""; }; - 86DC26E1C0701A192C2804300A80F339 /* Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Signal.swift; path = RxCocoa/Traits/Signal/Signal.swift; sourceTree = ""; }; - 86DCB045DD4968B5826BDCE4151714FA /* Typealiases.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Typealiases.swift; path = Sources/Typealiases.swift; sourceTree = ""; }; - 87714F8686413DA16471781644F8EF3A /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = Sources/en.lproj; sourceTree = ""; }; - 8779ABA3A994868A90793E850955CAE1 /* ZFSmallFloatControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFSmallFloatControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSmallFloatControlView.h; sourceTree = ""; }; - 879388E287309EC5B6B9E14083EB9A58 /* IQPreviousNextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQPreviousNextView.swift; path = IQKeyboardManagerSwift/IQToolbar/IQPreviousNextView.swift; sourceTree = ""; }; - 87DB386247FF9C647C62445258DEAFFB /* MATouchPoi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATouchPoi.h; path = AMapNaviKit.framework/Headers/MATouchPoi.h; sourceTree = ""; }; - 8837B693936861F78E22A144F7CE9245 /* ZLEditToolCells.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditToolCells.swift; path = Sources/Edit/ZLEditToolCells.swift; sourceTree = ""; }; - 883D0D7B956CCB8AEACB177E034415AC /* UIScrollView+ZFPlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+ZFPlayer.m"; path = "DDZFPlayerKit_Private/Classes/Core/UIScrollView+ZFPlayer.m"; sourceTree = ""; }; - 892F3F4CD250BF18FADDFC9726FD9963 /* MAPointAnnotation+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "MAPointAnnotation+DDCategory.m"; path = "DDMAMapKit_Private/Classes/DDMAMap/Annotation/MAPointAnnotation+DDCategory.m"; sourceTree = ""; }; - 8940E34A80FE731D6E6C878E255F6A67 /* MATraceReplayOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceReplayOverlay.h; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlay.h; sourceTree = ""; }; - 897E717674DFA392A2C33CF18161907B /* ControlEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlEvent.swift; path = RxCocoa/Traits/ControlEvent.swift; sourceTree = ""; }; - 898861D63F75FB1E1CBBF0126341CEE4 /* RetryWhen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryWhen.swift; path = RxSwift/Observables/RetryWhen.swift; sourceTree = ""; }; - 89EFA90518B49F91DB43C8735742B37D /* WithLatestFrom.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WithLatestFrom.swift; path = RxSwift/Observables/WithLatestFrom.swift; sourceTree = ""; }; - 8A18186314BEE2254B0BCFEB6D00D5FE /* LayoutConstraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraint.swift; path = Sources/LayoutConstraint.swift; sourceTree = ""; }; - 8A3D62E5032EF1C933E09EAE1E95CDB6 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; - 8A58BA0DA8FF4222995DF240ADFB2CD0 /* UICollectionViewCell+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewCell+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UICollectionViewCell+DDCategory/UICollectionViewCell+DDCategory.m"; sourceTree = ""; }; - 8A5ABB871A4A51F4B939EC6C422ED978 /* AMapNaviTrafficBarView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviTrafficBarView.h; path = AMapNaviKit.framework/Headers/AMapNaviTrafficBarView.h; sourceTree = ""; }; - 8A7FA337B0F7386D1447BD33A3E1910C /* ConstraintDirectionalInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsetTarget.swift; path = Sources/ConstraintDirectionalInsetTarget.swift; sourceTree = ""; }; - 8A908A546FB59017676F0C931DB3792D /* UrlLinks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UrlLinks.swift; path = DDUtilsSwiftKit_Private/Classes/UrlLinks/UrlLinks.swift; sourceTree = ""; }; - 8AB231A7381C8AA9B00BC107A2E23B9C /* AnonymousObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousObserver.swift; path = RxSwift/Observers/AnonymousObserver.swift; sourceTree = ""; }; - 8AC70FFE362EF3AB3FF0ACD35A4CE3E6 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = ""; }; + 8623294854633DE0EFEBC30ECAB902F4 /* EKEntryView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKEntryView.swift; path = Source/Infra/EKEntryView.swift; sourceTree = ""; }; + 8636C7D8EDC1EB0B5DDB91C8267CD036 /* DDDate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDDate.swift; path = DDDateKit_Private/Classes/DDDate.swift; sourceTree = ""; }; + 8688EEEDE43BAAEF6B29C046E3D94DBE /* JXCategoryBaseCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseCellModel.h; path = Sources/Base/JXCategoryBaseCellModel.h; sourceTree = ""; }; + 868F987DB35D5AF7FC49A6482780B71E /* DDZFPlayerKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDZFPlayerKit_Private.debug.xcconfig; sourceTree = ""; }; + 86B98D2202E51E7CCF9F64DCD8BFE7E6 /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = ""; }; + 86E3A0E601A3090A3DE50302075D8ECD /* AMapTrackCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackCommonObj.h; path = AMapTrackKit.framework/Headers/AMapTrackCommonObj.h; sourceTree = ""; }; + 870F7037C0CE35440338889067D732E7 /* DDBasicControlsKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDBasicControlsKit_Private.modulemap; sourceTree = ""; }; + 87195BAC3EFE744189DAC86EEC887725 /* QLUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QLUtils.swift; path = Source/Extensions/QuickLayout/QLUtils.swift; sourceTree = ""; }; + 871F4538634B7C6510B6C6D3D01C0194 /* ESTabBarController-swift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "ESTabBarController-swift.debug.xcconfig"; sourceTree = ""; }; + 8724F9CDFBD302D5C7E90A1785F578BD /* ESTabBarController-swift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "ESTabBarController-swift.modulemap"; sourceTree = ""; }; + 872A76A47CBF6D3B5F2613C8A2B20DB3 /* IQKeyboardManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManager.swift; path = IQKeyboardManagerSwift/IQKeyboardManager.swift; sourceTree = ""; }; + 872D28CD57BE525D147ED3B3DE76EA4B /* EKXStatusBarMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKXStatusBarMessageView.swift; path = Source/MessageViews/Notes/EKXStatusBarMessageView.swift; sourceTree = ""; }; + 876C9DC116F3E1CB0AD71A6143D7F925 /* AnimatedImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedImageView.swift; path = Sources/Views/AnimatedImageView.swift; sourceTree = ""; }; + 87A9B783169EBC87CFDC1AF5E4A5F5BB /* DDWebImageKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDWebImageKit_Private.release.xcconfig; sourceTree = ""; }; + 87B7E469C0FC78E881890CB0E91FFD2A /* CacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CacheSerializer.swift; path = Sources/Cache/CacheSerializer.swift; sourceTree = ""; }; + 87BAAFEE252641A89CA7504699E97E3A /* JXCategoryTitleVerticalZoomView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomView.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomView.h; sourceTree = ""; }; + 87CBEA68716D16EBB588D6CD61000FCB /* DDDateKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDDateKit_Private.debug.xcconfig; sourceTree = ""; }; + 87EEDFB85AD7BC04AA40D304372057B6 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Image/Filter.swift; sourceTree = ""; }; + 87F37E51663E541A5D8B2E91ABCFFE20 /* DDNetworkingOfAlamofireKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDNetworkingOfAlamofireKit_Private-prefix.pch"; sourceTree = ""; }; + 8827645D3DB6E1952D11397E35F65E41 /* AMapServices.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapServices.h; path = AMapFoundationKit.framework/Headers/AMapServices.h; sourceTree = ""; }; + 88AC54D1B177174E77B56FBB8FDA3C65 /* KFImageProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageProtocol.swift; path = Sources/SwiftUI/KFImageProtocol.swift; sourceTree = ""; }; + 88BF2053DAA376DF7F670D7C31EB8D0D /* IQKeyboardManagerSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardManagerSwift.modulemap; sourceTree = ""; }; + 88C0FDBDD3131A48271ABA3AC630739F /* InvocableScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableScheduledItem.swift; path = RxSwift/Schedulers/Internal/InvocableScheduledItem.swift; sourceTree = ""; }; + 88DF251A482A891A68E18044DA5C0215 /* AMapFoundation-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapFoundation-NO-IDFA.release.xcconfig"; sourceTree = ""; }; + 88E4D80B0F0D44BD66BCF685DD9C462D /* _RXKVOObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXKVOObserver.m; path = RxCocoa/Runtime/_RXKVOObserver.m; sourceTree = ""; }; + 8942D68167FF5EADAD9D52CBE09A1566 /* CPListItem+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CPListItem+Kingfisher.swift"; path = "Sources/Extensions/CPListItem+Kingfisher.swift"; sourceTree = ""; }; + 8A6C4BC8BD1E4F1B6A5617AED2488B12 /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; + 8A8692AE767E7EF7D3585D1AFB64BB9F /* UITabBar+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITabBar+Rx.swift"; path = "RxCocoa/iOS/UITabBar+Rx.swift"; sourceTree = ""; }; + 8A88A3A058CCB1D9FC2588C790D4CE4D /* IQUIView+IQKeyboardToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+IQKeyboardToolbar.swift"; path = "IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbar.swift"; sourceTree = ""; }; + 8AB2935CB95B35B0475E94EC4BF8753C /* DDBasicControlsKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDBasicControlsKit_Private-dummy.m"; sourceTree = ""; }; + 8ACD19B87346CDED4320D92E05273EC5 /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackStateFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h; sourceTree = ""; }; + 8ACE6E4439DAE3D380303F1E0362B109 /* EntryCachingHeuristic.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EntryCachingHeuristic.swift; path = Source/Infra/EntryCachingHeuristic.swift; sourceTree = ""; }; 8AD026CF2FA53C314E8C799B9A40528A /* DDZFPlayerKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDZFPlayerKit_Private; path = libDDZFPlayerKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8AE5076DACC40E21C87335A76DC898D4 /* _RXKVOObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXKVOObserver.m; path = RxCocoa/Runtime/_RXKVOObserver.m; sourceTree = ""; }; - 8B248BB25D78BD36E1A612EE1BFAFC7C /* DriveRouteCustomAnnotationView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DriveRouteCustomAnnotationView.m; path = DDMAMapKit_Private/Classes/DDMAMap/AnnotationView/DriveRouteCustomAnnotationView.m; sourceTree = ""; }; - 8B83E1E156F4DFC5BA9524356A57FACC /* MAGeometry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGeometry.h; path = AMapNaviKit.framework/Headers/MAGeometry.h; sourceTree = ""; }; - 8B9827D464C6FB1671A09AE5299CE50D /* NSURL+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURL+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSUrl+DDCategory/NSURL+DDCategory.h"; sourceTree = ""; }; - 8BCDCE291F9986C4B85361699D4F4C4F /* DDToastKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDToastKit_Private.debug.xcconfig; sourceTree = ""; }; - 8BD14E8FA1A6F6595A796FABF0E1A2B0 /* DDViewControllerAnimatedTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDViewControllerAnimatedTransition.m; path = DDBasicControlsKit_Private/Classes/DDBaseAnimation/DDTransitionAnimation/DDViewControllerAnimatedTransition.m; sourceTree = ""; }; - 8BEF0FB9A270BAA05728B6F2EFA50FBC /* ZLAddPhotoCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAddPhotoCell.swift; path = Sources/General/ZLAddPhotoCell.swift; sourceTree = ""; }; - 8C1E2E66C8F47CC09FD29744360BDA5E /* Range.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Range.swift; path = RxSwift/Observables/Range.swift; sourceTree = ""; }; - 8C44A6F3379E6E15ECBE98D9DEB90304 /* ZFPlayer.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = ZFPlayer.bundle; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPlayer.bundle; sourceTree = ""; }; - 8C986179E83B509C37AFFC2840AADD5B /* String+MD5.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+MD5.swift"; path = "Sources/Utility/String+MD5.swift"; sourceTree = ""; }; - 8CB673B582D53D25D38129F0E833D759 /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = ""; }; - 8D208F296EF7CC950D7AEA5D75CEF3FA /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; - 8D90494C68EB284EC36FEDDBD7B48491 /* DDControlsKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDControlsKit_Private-umbrella.h"; sourceTree = ""; }; - 8E0B7F362697AB98B0831EB8C3E38461 /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; - 8E281636A5A977262D61E9DB96F60A0A /* ObservableConvertibleType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableConvertibleType.swift; path = RxSwift/ObservableConvertibleType.swift; sourceTree = ""; }; - 8E5AB2519815AD4698D10C7C91440EB1 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; - 8E5E79F05719FA8B3FB969608F509571 /* SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SharedSequence.swift; path = RxCocoa/Traits/SharedSequence/SharedSequence.swift; sourceTree = ""; }; - 8E7DE01C50E6BF70DDE34963C00D8B49 /* MAPolygonRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolygonRenderer.h; path = AMapNaviKit.framework/Headers/MAPolygonRenderer.h; sourceTree = ""; }; - 8EC63266F1A25D8738A3BB41782AFC91 /* SharedSequence+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Concurrency.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Concurrency.swift"; sourceTree = ""; }; - 8F52EB185809D3DCD8D68EA8EFA2DC65 /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; - 8F6332625A3B042E25124829DA79EFFD /* Bugly.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Bugly.framework; sourceTree = ""; }; - 8F9BCBB578AC64837E4C65D41B98530D /* EKRootViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRootViewController.swift; path = Source/Infra/EKRootViewController.swift; sourceTree = ""; }; - 8FB71F741FAA5593A035F0AB89BBD0B2 /* AMapGeoFenceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceManager.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceManager.h; sourceTree = ""; }; - 8FF65D4365CF9586949F3D50AB35420C /* DDProgressHUD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDProgressHUD.swift; path = DDProgressHUDKit_Private/Classes/DDProgressHUD.swift; sourceTree = ""; }; - 9064B229A0C9BBF7710203F345112E0F /* EKAccessoryNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAccessoryNoteMessageView.swift; path = Source/MessageViews/Notes/EKAccessoryNoteMessageView.swift; sourceTree = ""; }; - 906F867283F8DF4F20AC5259348732AF /* AMapFoundationConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationConst.h; path = AMapFoundationKit.framework/Headers/AMapFoundationConst.h; sourceTree = ""; }; - 9089747D09C54D518BEC18FE8D514F09 /* NSAttributedString+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSAttributedString+DDCategory.h"; sourceTree = ""; }; - 909F57C6E5AF478B7941E17B5F43D267 /* JXCategoryListContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryListContainerView.h; path = Sources/Common/JXCategoryListContainerView.h; sourceTree = ""; }; - 90A46F094CA9CD51721A8E611D7A265D /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; - 90E4B8D228959A438B4A4C8F10509AE5 /* DDDateKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDDateKit_Private-umbrella.h"; sourceTree = ""; }; - 90EB38753169305615F79B311EBD4AB9 /* RetryStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryStrategy.swift; path = Sources/Networking/RetryStrategy.swift; sourceTree = ""; }; - 90ED87E9C00E1CE19B832FC004FA2D59 /* SwiftyRSA-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyRSA-prefix.pch"; sourceTree = ""; }; - 91434C469D5871EB47A06BB1F20E11BA /* DDColorKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDColorKit_Private.debug.xcconfig; sourceTree = ""; }; - 918BFF266753E88CD5590614F7B8509B /* JXCategoryImageCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageCellModel.h; path = Sources/Image/JXCategoryImageCellModel.h; sourceTree = ""; }; - 920F25B4E7A48C42C4BD05D8820CD675 /* ZLCustomCamera.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCustomCamera.swift; path = Sources/Camera/ZLCustomCamera.swift; sourceTree = ""; }; - 9211CB328D8071AD8EE91F959D93E3BF /* DDBaseTextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTextField.h; path = DDBasicControlsKit_Private/Classes/DDBaseTextField/DDBaseTextField.h; sourceTree = ""; }; - 926D0D7F98DDC85FA76727518C025EC0 /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = ""; }; - 927393131D896CBB351518F74FEB01B0 /* AMapTrackError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackError.h; path = AMapTrackKit.framework/Headers/AMapTrackError.h; sourceTree = ""; }; - 9293EE51E0287851A010D0AAF85A6B3C /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Image/Filter.swift; sourceTree = ""; }; - 9326477912E1585BCB8783A0BB58CEDD /* Never.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Never.swift; path = RxSwift/Observables/Never.swift; sourceTree = ""; }; - 934DC177795CCC1CACFDCC5C151056C7 /* Empty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Empty.swift; path = RxSwift/Observables/Empty.swift; sourceTree = ""; }; - 9375E2CF150DCDC067F3831BFB3E4317 /* JXCategoryBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseView.m; path = Sources/Base/JXCategoryBaseView.m; sourceTree = ""; }; - 9416F011751EE2CCAAFDBAA6295A34DC /* MJRefreshNormalTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.h; sourceTree = ""; }; - 94383346701CE943B058EEFE516C3F76 /* UIScreen+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScreen+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIScreen+DDCategory/UIScreen+DDCategory.m"; sourceTree = ""; }; - 944900CC6A20A98E00C529ED78251891 /* BRAddressPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRAddressPickerView.h; path = BRPickerView/AddressPickerView/BRAddressPickerView.h; sourceTree = ""; }; - 947D279463B5B17482D9DF2C59B091DB /* DDLogKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDLogKit_Private-dummy.m"; sourceTree = ""; }; - 948228553BAEAFE7515BF59B6D431AAC /* DDColorKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDColorKit_Private-prefix.pch"; sourceTree = ""; }; - 94A01E83D7BA91468C474B99384EE0D0 /* _RXObjCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXObjCRuntime.h; path = RxCocoa/Runtime/include/_RXObjCRuntime.h; sourceTree = ""; }; - 94E6FB4DB627CB050EEE79AB8AEA8A1D /* RxCocoa.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxCocoa.release.xcconfig; sourceTree = ""; }; - 94FCE695A228A5ABB6C7986DA2EC49EC /* DDAudioService.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAudioService.swift; path = DDAudioPlayerKit_Private/Classes/DDAudioService.swift; sourceTree = ""; }; - 951B5575159EC6BED724E4E6ED9BC5AD /* GCDTimer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GCDTimer.swift; path = DDTimerSwiftKit_Private/Classes/GCDTimer/GCDTimer.swift; sourceTree = ""; }; - 9567D9D031702459E9D3BDC8711B125A /* MJRefreshStateTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m; sourceTree = ""; }; - 956CD44DE28E07D3CE29A03165F6A163 /* AMapNearbyUploadInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNearbyUploadInfo.h; path = AMapSearchKit.framework/Headers/AMapNearbyUploadInfo.h; sourceTree = ""; }; - 9574FBB9ABACE0C10D0181C717259D85 /* AMapServices.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapServices.h; path = AMapFoundationKit.framework/Headers/AMapServices.h; sourceTree = ""; }; - 959AF87232A707BE2BDAE95A2D350BB0 /* AMapNaviVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviVersion.h; path = AMapNaviKit.framework/Headers/AMapNaviVersion.h; sourceTree = ""; }; - 95A0AA7C1BDCC650BEE58F0BEEC83F3C /* DDZFPlayerKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDZFPlayerKit_Private.debug.xcconfig; sourceTree = ""; }; - 95B5C791F3B2A408B2E8C5912A3FD12A /* DDAttributedString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAttributedString.swift; path = DDControlsKit_Private/Classes/DDAttributedString/DDAttributedString.swift; sourceTree = ""; }; - 95BCC80DF87FC784EB4B5758A674FBE7 /* EKAttributes+PositionConstraints.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+PositionConstraints.swift"; path = "Source/Model/EntryAttributes/EKAttributes+PositionConstraints.swift"; sourceTree = ""; }; - 961AE890FBEFCD5604AC60F804211247 /* ServerTrustEvaluation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustEvaluation.swift; path = Source/ServerTrustEvaluation.swift; sourceTree = ""; }; - 96918143EAEF40C19781D0B668647E67 /* RxCocoa-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxCocoa-dummy.m"; sourceTree = ""; }; - 96A63E634069584FCCD26090DA876DE5 /* RTLManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RTLManager.m; path = Sources/RLTManager/RTLManager.m; sourceTree = ""; }; - 96C64AAD044B46A920CAE6AA6E68CE02 /* ZFPlayerLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerLogManager.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerLogManager.h; sourceTree = ""; }; - 96D79F01CCD9152DFF8DCCCB8445A0C4 /* DDBaseLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseLabel.h; path = DDBasicControlsKit_Private/Classes/DDBaseLabel/DDBaseLabel.h; sourceTree = ""; }; - 9750FDDE1AE9FFF16C8C0803092041F8 /* ZLImagePreviewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLImagePreviewController.swift; path = Sources/General/ZLImagePreviewController.swift; sourceTree = ""; }; - 975DCF119919FD799B4096722F0FC6A0 /* SwiftEntryKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftEntryKit.swift; path = Source/SwiftEntryKit.swift; sourceTree = ""; }; - 9774C45D2319A4161B9A9291E63750A3 /* JXCategoryIndicatorDotLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorDotLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorDotLineView.m; sourceTree = ""; }; + 8B36E9C9B0E261079E960880B35A0E07 /* JXCategoryDotCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotCellModel.h; path = Sources/Dot/JXCategoryDotCellModel.h; sourceTree = ""; }; + 8B578F82B80DEB9A94BF0A4CB575273C /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; + 8B7E5D768C8222B510991A3930088747 /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = ""; }; + 8B9DE725566B49263553A93A12785279 /* JXCategoryDotCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotCellModel.m; path = Sources/Dot/JXCategoryDotCellModel.m; sourceTree = ""; }; + 8BE7A6E28653DB83FB06019822EFCBD9 /* JXCategoryIndicatorRainbowLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorRainbowLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorRainbowLineView.m; sourceTree = ""; }; + 8BEA14CDD06609B781449028E6AE3369 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; + 8C0D52FFA4662E72AE3483658BCA04A5 /* IQUITextFieldView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUITextFieldView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUITextFieldView+Additions.swift"; sourceTree = ""; }; + 8C4DC6F83AB9F81E340D5B148CA739BB /* DDColorKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDColorKit_Private.release.xcconfig; sourceTree = ""; }; + 8C666B74A169FA98F3FFC12AF54248FD /* RxTableViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxTableViewDataSourceType.swift; sourceTree = ""; }; + 8C88B993B8C132FC65135B7CD0F6DF08 /* AMapNaviTravelManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviTravelManager.h; path = AMapNaviKit.framework/Headers/AMapNaviTravelManager.h; sourceTree = ""; }; + 8CC3531A68A1843CC5717C76188FFCE1 /* ImageProgressive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProgressive.swift; path = Sources/Image/ImageProgressive.swift; sourceTree = ""; }; + 8CC42ABCEA6FE16E2511E008BD56A121 /* Deferred.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Deferred.swift; path = RxSwift/Observables/Deferred.swift; sourceTree = ""; }; + 8CCD328B4C27B227EF583E8D9CCF4783 /* BRStringPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRStringPickerView.m; path = BRPickerView/StringPickerView/BRStringPickerView.m; sourceTree = ""; }; + 8CD6C27BA7A7C0372094BB0F987EA2AA /* NSMutableAttributedString+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableAttributedString+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableAttributedString+DDCategory.m"; sourceTree = ""; }; + 8CE87AD2396F79DE4134FE95D84EA276 /* DDSpeechSynthesizer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDSpeechSynthesizer.swift; path = DDAudioPlayerKit_Private/Classes/DDSpeechSynthesizer.swift; sourceTree = ""; }; + 8D47AF9A7372699EE62696D88447522A /* SwiftEntryKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftEntryKit-prefix.pch"; sourceTree = ""; }; + 8D4B25B38EB7F625A533C41F7A63B3D2 /* SectionedViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SectionedViewDataSourceType.swift; path = RxCocoa/Common/SectionedViewDataSourceType.swift; sourceTree = ""; }; + 8D570C112416E8D8300D3C014ECF3429 /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; + 8D8F4D582A6A733E5F93FD957403DEF7 /* MATraceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceManager.h; path = AMapNaviKit.framework/Headers/MATraceManager.h; sourceTree = ""; }; + 8DC20CADB7641A0A73E23084922704E2 /* DDCollectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDCollectionView.swift; path = DDControlsKit_Private/Classes/DDCollectionView/DDCollectionView.swift; sourceTree = ""; }; + 8E1391D520465478F73A4158A48FCE25 /* IQInvocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQInvocation.swift; path = IQKeyboardManagerSwift/IQToolbar/IQInvocation.swift; sourceTree = ""; }; + 8E316776F77F45F6F00C395E01C3D553 /* DelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelegateProxy.swift; path = RxCocoa/Common/DelegateProxy.swift; sourceTree = ""; }; + 8E3519DEB50BF147D8784AD688071A10 /* AMapNaviCompositeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCompositeManager.h; path = AMapNaviKit.framework/Headers/AMapNaviCompositeManager.h; sourceTree = ""; }; + 8E7DDD5F13C6D43D6067B784F42EA5B8 /* ConstraintLayoutSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupport.swift; path = Sources/ConstraintLayoutSupport.swift; sourceTree = ""; }; + 8E8A684D5AC3AC69C9F81671547F8CAA /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; + 8E8FB0F6C04ACF36B16F90D9ECC56E7E /* JXCategoryTitleImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageView.m; path = Sources/TitleImage/JXCategoryTitleImageView.m; sourceTree = ""; }; + 8EDA3613935AF40D8DB29CDE75D50025 /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = ""; }; + 8F659E622FF5611F55167C9B569ABE18 /* DDBaseMutableAttributedString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseMutableAttributedString.m; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseMutableAttributedString.m; sourceTree = ""; }; + 8F68F5BEDE99B5164FE9BDDB198A70B5 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; + 8FC7F1B055C62C605A0893A4B4286548 /* ConstraintMakerExtendable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerExtendable.swift; path = Sources/ConstraintMakerExtendable.swift; sourceTree = ""; }; + 900AF2390E6431427C998DCE7EFB2624 /* Kingfisher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Kingfisher-dummy.m"; sourceTree = ""; }; + 9025425A4177AF0D67BC5F5796447746 /* RxCocoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RxCocoa.h; path = RxCocoa/RxCocoa.h; sourceTree = ""; }; + 904BD843339854345D1210277999EE10 /* MAOfflineItemCommonCity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemCommonCity.h; path = AMapNaviKit.framework/Headers/MAOfflineItemCommonCity.h; sourceTree = ""; }; + 908CFBC3F536D248F9C1F62F8C021EFC /* DDUtilsSwiftKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDUtilsSwiftKit_Private-umbrella.h"; sourceTree = ""; }; + 90B66BB5F4AA694B89A8CD59D21A1D5E /* IQKeyboardManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Debug.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Debug.swift"; sourceTree = ""; }; + 90B9FF058E72ABE05F3B9B0DE1543FBD /* ZLPhotoBrowser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ZLPhotoBrowser.debug.xcconfig; sourceTree = ""; }; + 90BD683072A49772DEC88FBC551AC7CC /* JXCategoryIndicatorTriangleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorTriangleView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorTriangleView.h; sourceTree = ""; }; + 90F9FAA765F7B47D959C83CDBA64F581 /* ConstraintMaker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMaker.swift; path = Sources/ConstraintMaker.swift; sourceTree = ""; }; + 910515F363886336E686FB0B7BB42736 /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = ""; }; + 910C3C2B34CD96383D0909CCA35275A2 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; + 9114E7A2461BC0D4CD70D5504A8973F8 /* RequestTaskMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestTaskMap.swift; path = Source/RequestTaskMap.swift; sourceTree = ""; }; + 913C65E726ED99076CBDD7252B369B09 /* RxRelay.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxRelay.debug.xcconfig; sourceTree = ""; }; + 918C095C15E34F349696AE40A65F3DC4 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = ""; }; + 91D57E0822EDE97592360AF71F937FD3 /* AMapFoundation-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapFoundation-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; + 92421079C7D42417250288A64C734CD4 /* DDTimerSwiftKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDTimerSwiftKit_Private.release.xcconfig; sourceTree = ""; }; + 9276DB5CE2C8238F22D1D8D7114CDF6E /* RxCocoa.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCocoa.swift; path = RxCocoa/RxCocoa.swift; sourceTree = ""; }; + 927A1F1AC870032B4A7CDEAC436FF1E9 /* DDColorKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDColorKit_Private.debug.xcconfig; sourceTree = ""; }; + 92A1D0D97078E98FB87C120217562479 /* AnonymousDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousDisposable.swift; path = RxSwift/Disposables/AnonymousDisposable.swift; sourceTree = ""; }; + 92A1FC1EFAC21F297A057B8E8B2F9F7C /* UISegmentedControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISegmentedControl+Rx.swift"; path = "RxCocoa/iOS/UISegmentedControl+Rx.swift"; sourceTree = ""; }; + 92AC33A1E1ECB9099CD946A8B7680767 /* UISwitch+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UISwitch+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UISwitch+DDCategory/UISwitch+DDCategory.h"; sourceTree = ""; }; + 93195349FE16D7CBCBF5530FA8E207A1 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; + 935A60179E482420807581C62CECC8B5 /* Producer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Producer.swift; path = RxSwift/Observables/Producer.swift; sourceTree = ""; }; + 9366F2FA1CA95C3FB0D4140F61F80953 /* ZLEditImageViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditImageViewController.swift; path = Sources/Edit/ZLEditImageViewController.swift; sourceTree = ""; }; + 936FCA55D6AC3E19A384D8E1AF0FA50B /* Dematerialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Dematerialize.swift; path = RxSwift/Observables/Dematerialize.swift; sourceTree = ""; }; + 937A9C50CA89307904C0E71CFE42F3B1 /* NSData+SHA.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+SHA.m"; path = "Source/NSData+SHA.m"; sourceTree = ""; }; + 9383B6931E6379E29C9E8D1371AACCC0 /* UIImage+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIImage+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIImage+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 938B02946B5075F3A78DB7CE2F053694 /* MAAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotationView.h; path = AMapNaviKit.framework/Headers/MAAnnotationView.h; sourceTree = ""; }; + 93B8C6218FF5388B8AAD5B234909A20A /* DDCategoryKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDCategoryKit_Private.debug.xcconfig; sourceTree = ""; }; + 940B2DE0CE005687375D4B5CF4576335 /* RefCountDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RefCountDisposable.swift; path = RxSwift/Disposables/RefCountDisposable.swift; sourceTree = ""; }; + 943676080B627E6DB9224A27EA838242 /* Bugly.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Bugly.framework; sourceTree = ""; }; + 9497B3B2C8BBA7CB89EF01382C75DDCE /* DDMASearch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMASearch.m; path = DDMAMapKit_Private/Classes/DDMASearch/DDMASearch.m; sourceTree = ""; }; + 94A696E6CF4AA261C106289066C18321 /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/DispatchQueue+Alamofire.swift"; sourceTree = ""; }; + 94BC52C4F8595D2886F185194CBEE714 /* MAUserLocationRepresentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAUserLocationRepresentation.h; path = AMapNaviKit.framework/Headers/MAUserLocationRepresentation.h; sourceTree = ""; }; + 94D5CD70EAE400B7A7BDF7DCD151B7C2 /* MAMVTTileOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMVTTileOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAMVTTileOverlayRenderer.h; sourceTree = ""; }; + 94F80A165C2824F1820EAF58C60CFB22 /* UINavigationController+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationController+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UINavigationController+DDCategory/UINavigationController+DDCategory.h"; sourceTree = ""; }; + 953CF3FF2D694E7D51C8340D7A4AA9E6 /* AddRef.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AddRef.swift; path = RxSwift/Observables/AddRef.swift; sourceTree = ""; }; + 95415F271C47020156F876B9F8DB738C /* ConstraintLayoutGuideDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuideDSL.swift; path = Sources/ConstraintLayoutGuideDSL.swift; sourceTree = ""; }; + 9554B6C53CEF59FF3124837EAB1A05C4 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; + 957B458B27963A1B20D990D8A7C547A8 /* UIImageView+DDWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+DDWebCache.m"; path = "DDWebImageKit_Private/Classes/DDWebImage/UIImageView+DDWebCache.m"; sourceTree = ""; }; + 95B7D58E61129EFE9A4FD903A4056967 /* IQKeyboardManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Internal.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Internal.swift"; sourceTree = ""; }; + 962376F96870BF93D497DC67197B51EF /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoGifFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h; sourceTree = ""; }; + 9647BD171AFB23D3A34E71B4E3AA3198 /* DDBasicControlsKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDBasicControlsKit_Private.release.xcconfig; sourceTree = ""; }; + 96611FB30B33CA7B989BD4F9ACE90FAC /* NotificationCenter+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NotificationCenter+Rx.swift"; path = "RxCocoa/Foundation/NotificationCenter+Rx.swift"; sourceTree = ""; }; + 967CBA8BA665837EDE92543AB065E2E6 /* ZFOrientationObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFOrientationObserver.h; path = DDZFPlayerKit_Private/Classes/Core/ZFOrientationObserver.h; sourceTree = ""; }; + 968B75F61B67C9F78C8926BFB0A3041F /* SynchronizedOnType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedOnType.swift; path = RxSwift/Concurrency/SynchronizedOnType.swift; sourceTree = ""; }; + 96C749560C78C4DCA700A3EC0CCA6ABA /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; + 96DA6B16191783F2BB7A23146BF136FD /* MATileOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATileOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MATileOverlayRenderer.h; sourceTree = ""; }; + 96FDFD9B7E6D10B43F81A9DDEF58C46C /* SwiftEntryKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftEntryKit.debug.xcconfig; sourceTree = ""; }; + 9705DA0895B3EA90BA65069399FB79DD /* AMapNaviWalkDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviWalkDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviWalkDataRepresentable.h; sourceTree = ""; }; + 9726C761207036EF206C6CEC6EEB0116 /* EKProcessingNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKProcessingNoteMessageView.swift; path = Source/MessageViews/Notes/EKProcessingNoteMessageView.swift; sourceTree = ""; }; + 974FA2645992FB57B2251A6B656D45AB /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = ""; }; + 97795CE8B6FA13C48BB309F86B8E814E /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; 979486118B3E90C08386079D57962701 /* SnapKit */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = SnapKit; path = libSnapKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 97FC143DDAAB51B261A527558B7BF35C /* MAGeodesicPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGeodesicPolyline.h; path = AMapNaviKit.framework/Headers/MAGeodesicPolyline.h; sourceTree = ""; }; - 980F4BADC38AC667A1001E772CDF612B /* UIColor+JXAdd.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+JXAdd.m"; path = "Sources/Common/UIColor+JXAdd.m"; sourceTree = ""; }; - 982ECA931A70E8CA08E11F2A9403EAFD /* ConstraintConstantTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConstantTarget.swift; path = Sources/ConstraintConstantTarget.swift; sourceTree = ""; }; - 984BEBB41FE196C3D934CEA341A5D1D1 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; - 985CB67B7ACF5BA01E446A84379ADB01 /* UINavigationItem+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationItem+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UINavigationItem+DDCategory/UINavigationItem+DDCategory.m"; sourceTree = ""; }; - 990D75692CBF771F7132CAC9F012C137 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; - 99211DAE7C096A7D965DE4912178709C /* ConstraintDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDescription.swift; path = Sources/ConstraintDescription.swift; sourceTree = ""; }; - 9921A7F023AA09D6C95F0D415E5CF4B4 /* BRResultModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRResultModel.h; path = BRPickerView/StringPickerView/BRResultModel.h; sourceTree = ""; }; - 9931CE7574E5B3A78D179DEAE91D7E2A /* DDBaseTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTableViewCell.m; path = DDBasicControlsKit_Private/Classes/DDBaseTableViewCell/DDBaseTableViewCell.m; sourceTree = ""; }; - 993694870161950B7FDF6DC85649ECE0 /* NopDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NopDisposable.swift; path = RxSwift/Disposables/NopDisposable.swift; sourceTree = ""; }; - 99A12B850606BE38C96C6F5269E2817D /* ZFPresentTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPresentTransition.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPresentTransition.h; sourceTree = ""; }; - 99EC91A075178B7FF5097610ED48DC20 /* Observable+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Concurrency.swift"; path = "RxSwift/Observable+Concurrency.swift"; sourceTree = ""; }; - 99F76C0E556DBA753C07BD37DD8D9B7A /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; - 9A0A702C5246C362CAA1536756F82DF8 /* ZFPlayerControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPlayerControlView.m; sourceTree = ""; }; - 9A1531875C67B4ABB5AAEF9A33DD2FC5 /* JXCategoryTitleImageCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageCell.m; path = Sources/TitleImage/JXCategoryTitleImageCell.m; sourceTree = ""; }; - 9A15D2B1F2C827DB6D3D881D510BD2BD /* DDBaseImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseImage.m; path = DDBasicControlsKit_Private/Classes/DDBaseImage/DDBaseImage.m; sourceTree = ""; }; - 9A191F40A63AD4FA76C8A1EABA01E054 /* ZFPlayerConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerConst.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerConst.h; sourceTree = ""; }; - 9A3D0ECDFAA25FAEDA60F0D077758A5F /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; - 9A54C2EA0B08D1D886963C8F6FD3E503 /* IQUIView+IQKeyboardToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+IQKeyboardToolbar.swift"; path = "IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbar.swift"; sourceTree = ""; }; - 9A61BD7C718085152A2E0DBA8BD12B5E /* DDBaseCollectionViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseCollectionViewCell.m; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionViewCell/DDBaseCollectionViewCell.m; sourceTree = ""; }; - 9A9D1504967D03226085E5C48C859A15 /* AMapFoundationKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationKit.h; path = AMapFoundationKit.framework/Headers/AMapFoundationKit.h; sourceTree = ""; }; - 9A9E6F01DA3917353EA2601ABF88970D /* MAMapView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapView.h; path = AMapNaviKit.framework/Headers/MAMapView.h; sourceTree = ""; }; - 9AA1EADCBECF746A40161126D7FF6259 /* ConstraintConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConfig.swift; path = Sources/ConstraintConfig.swift; sourceTree = ""; }; - 9AA8E757CC4DCDE407198A52DFB4BE86 /* ZLEditImageConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditImageConfiguration.swift; path = Sources/General/ZLEditImageConfiguration.swift; sourceTree = ""; }; - 9ADF60D662FBC8EFC87BB28D21A86E3D /* NSTextAttachment+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextAttachment+Kingfisher.swift"; path = "Sources/Extensions/NSTextAttachment+Kingfisher.swift"; sourceTree = ""; }; - 9B4135DD76E0E5DDCC281D0EC00561E9 /* UITextField+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextField+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITextField+DDCategory/UITextField+DDCategory.m"; sourceTree = ""; }; - 9B9B6DEEBF041C124622D3692A52E655 /* EKSimpleMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKSimpleMessage.swift; path = Source/Model/EKSimpleMessage.swift; sourceTree = ""; }; - 9BB4FA6AC50A5946A9E67F9E0F8ED0A4 /* UISlider+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISlider+Rx.swift"; path = "RxCocoa/iOS/UISlider+Rx.swift"; sourceTree = ""; }; - 9BBF6D50AA0248F251212A85BDF83338 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = ""; }; - 9BD3479B7A1D0CF386A62140841213D6 /* AMapNaviWalkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviWalkView.h; path = AMapNaviKit.framework/Headers/AMapNaviWalkView.h; sourceTree = ""; }; - 9BF6A94F6968D9C848B3D9FA972CDEB3 /* JXCategoryFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryFactory.m; path = Sources/Common/JXCategoryFactory.m; sourceTree = ""; }; - 9BF902A56BF760BDD12158187207FBAB /* NSThread+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSThread+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSThread+DDCategory/NSThread+DDCategory.m"; sourceTree = ""; }; - 9C12FD1A28A40DF2B57355EE6DC72BA9 /* ImageDownloader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloader.swift; path = Sources/Networking/ImageDownloader.swift; sourceTree = ""; }; - 9C7D57191F468BDA2B52987E7DF12195 /* Single.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Single.swift; path = RxSwift/Traits/PrimitiveSequence/Single.swift; sourceTree = ""; }; - 9CAAF890EBDB17AC1859D4C32F409BB3 /* DDBaseMutableAttributedString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseMutableAttributedString.m; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseMutableAttributedString.m; sourceTree = ""; }; - 9CAD66A5B9AB66AEB3319FA797A03C86 /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; + 9796BD53CE2CC24B4E7178D36F566E96 /* MAConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAConfig.h; path = AMapNaviKit.framework/Headers/MAConfig.h; sourceTree = ""; }; + 9816E7B4E8EC58385B4CBC42517ADB10 /* WithLatestFrom.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WithLatestFrom.swift; path = RxSwift/Observables/WithLatestFrom.swift; sourceTree = ""; }; + 9828823C2BF2418D550CDBB193C104EA /* DDBaseTableView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTableView.h; path = DDBasicControlsKit_Private/Classes/DDBaseTableView/DDBaseTableView.h; sourceTree = ""; }; + 986A9CA3CF77D11AB3C9243E0DD60161 /* TVMonogramView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TVMonogramView+Kingfisher.swift"; path = "Sources/Extensions/TVMonogramView+Kingfisher.swift"; sourceTree = ""; }; + 98B8534159943A5AE3BE4E7F14B3EB6E /* NSBundle+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSBundle+DDCategory/NSBundle+DDCategory.m"; sourceTree = ""; }; + 98CB7238F9A57FDE98F1C618823FBD5C /* DDAF.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAF.swift; path = DDNetworkingOfAlamofireKit_Private/Classes/DDAF.swift; sourceTree = ""; }; + 98E63787CD0A843D42822D8966948AC3 /* DDAudioPlayerKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDAudioPlayerKit_Private-prefix.pch"; sourceTree = ""; }; + 98E6927F5F9CA3F5029AFE8A90231918 /* UIRefreshControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIRefreshControl+Rx.swift"; path = "RxCocoa/iOS/UIRefreshControl+Rx.swift"; sourceTree = ""; }; + 99573FA78F6A5DA13942A47AF1AB9F03 /* ZFPlayerControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPlayerControlView.m; sourceTree = ""; }; + 9990A28564C2A1179E3ABD2D3D1AFC08 /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+MJRefresh.h"; path = "MJRefresh/NSBundle+MJRefresh.h"; sourceTree = ""; }; + 99BD08888952B4ADFC4A63CDC13D95D8 /* MAPolygonRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolygonRenderer.h; path = AMapNaviKit.framework/Headers/MAPolygonRenderer.h; sourceTree = ""; }; + 99CD74167ED8CEFB7DC9CA5F9B66D0E4 /* SwiftyRSA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyRSA.debug.xcconfig; sourceTree = ""; }; + 99CE58B9ABC04158905A41A15EDF0313 /* ZFKVOController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFKVOController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFKVOController.m; sourceTree = ""; }; + 99F16FAC67F968BECFBC0427D7ADC2D6 /* SwiftToast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftToast.swift; path = DDToastKit_Private/Classes/SwiftToast.swift; sourceTree = ""; }; + 99FBC6A3FF72C9C93EC26EB55681A3F7 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; + 9A08C41467C4ACA046B611788505A1C5 /* DDNetworkingOfAlamofireKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDNetworkingOfAlamofireKit_Private-dummy.m"; sourceTree = ""; }; + 9A93C52AF91D91D00889A4AAB0B4D433 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; + 9AA5E045C740083BA8AF1BEC792B7C72 /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJExtension.h"; path = "MJRefresh/UIScrollView+MJExtension.h"; sourceTree = ""; }; + 9AB63A8D2DFFD91C683D442599E5AFD7 /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; + 9ABC26AD107EA608298CD0E03190C034 /* NSError+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSError+ZLPhotoBrowser.swift"; path = "Sources/Extensions/NSError+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 9AC35EA03A6FDB1436120F65D30A12EC /* DDPersistenceKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDPersistenceKit_Private-prefix.pch"; sourceTree = ""; }; + 9ACD03AAD8EE8BDA4287CE876DF494B4 /* ZLInputTextViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLInputTextViewController.swift; path = Sources/Edit/ZLInputTextViewController.swift; sourceTree = ""; }; + 9AF83BC04EFB67D93C26CD1DDB29B2E0 /* MAOfflineProvince.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineProvince.h; path = AMapNaviKit.framework/Headers/MAOfflineProvince.h; sourceTree = ""; }; + 9B184774F18A4C5C92CA4069F11BB6A7 /* AMapNaviHUDView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviHUDView.h; path = AMapNaviKit.framework/Headers/AMapNaviHUDView.h; sourceTree = ""; }; + 9B22C2AE111B6BAD52B1C1CCF832049C /* JXCategoryTitleImageCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageCellModel.m; path = Sources/TitleImage/JXCategoryTitleImageCellModel.m; sourceTree = ""; }; + 9B605E4BC61074F68B9090099824DD74 /* JXCategoryIndicatorBackgroundView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorBackgroundView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBackgroundView.h; sourceTree = ""; }; + 9B78915132AEA644B59A337C0C4FDC1E /* NSData+SHA.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+SHA.h"; path = "Source/NSData+SHA.h"; sourceTree = ""; }; + 9B7B623E3E425F951E9D11B0C2DA8E44 /* JXCategoryListContainerRTLCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryListContainerRTLCell.h; path = Sources/Common/JXCategoryListContainerRTLCell.h; sourceTree = ""; }; + 9B813415E9861A54E39DD4588B9CCB48 /* JXCategoryIndicatorTriangleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorTriangleView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorTriangleView.m; sourceTree = ""; }; + 9BA0A8E171B17AF0BBC5812309AC75AE /* EKWrapperView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKWrapperView.swift; path = Source/Infra/EKWrapperView.swift; sourceTree = ""; }; + 9BAF558CDB1ACF2F42CDD6F6141D187C /* DDNetworkingOfAlamofireKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDNetworkingOfAlamofireKit_Private-umbrella.h"; sourceTree = ""; }; + 9BB63ED86C11EC69FD582F92685E5689 /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; + 9BEDC1C283046864D0F120D249EDD3CA /* JXCategoryView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JXCategoryView-dummy.m"; sourceTree = ""; }; + 9C013CC101671B41E09C1502EA77E4A7 /* JXCategoryIndicatorImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorImageView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorImageView.h; sourceTree = ""; }; + 9C037CEA2B3A309B335DD6117A98F1C9 /* AMapNaviVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviVersion.h; path = AMapNaviKit.framework/Headers/AMapNaviVersion.h; sourceTree = ""; }; + 9C14FEF48BB60E0598B42317C989B033 /* IQKeyboardManagerSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-umbrella.h"; sourceTree = ""; }; + 9C19B79BA1E1908A3D166D0BE9A9078A /* JXCategoryTitleVerticalZoomCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomCell.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCell.h; sourceTree = ""; }; + 9C592E35BF3019AADA6CB853EE49FA09 /* BRDatePickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRDatePickerView.h; path = BRPickerView/DatePickerView/BRDatePickerView.h; sourceTree = ""; }; + 9C5F0CC9752B9A98061E29A6B603DF15 /* JXCategoryNumberCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberCellModel.h; path = Sources/Number/JXCategoryNumberCellModel.h; sourceTree = ""; }; + 9C665BD596A5079363EB7617BE4EDDF3 /* ConstraintDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDSL.swift; path = Sources/ConstraintDSL.swift; sourceTree = ""; }; + 9CAEB3C7EA0B2DCC1CA34D5BB76D73BC /* RxSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxSwift.modulemap; sourceTree = ""; }; 9CB241779EEAD809AC3180FD5B56FDF4 /* DDFontKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDFontKit_Private; path = libDDFontKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 9CB96FC1D8DEECCCAC04C3A2285F2807 /* UIActivityIndicatorView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIActivityIndicatorView+Rx.swift"; path = "RxCocoa/iOS/UIActivityIndicatorView+Rx.swift"; sourceTree = ""; }; - 9CFA5B339360BCD0CA271297E4748AC6 /* DDBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseView.h; path = DDBasicControlsKit_Private/Classes/DDBaseView/DDBaseView.h; sourceTree = ""; }; + 9CB5971F9ED2AAEB23FD6EFE689A4BE4 /* AnonymousObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousObserver.swift; path = RxSwift/Observers/AnonymousObserver.swift; sourceTree = ""; }; + 9CBD83D52B3A482D5D31D9499E095405 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = RxSwift/Errors.swift; sourceTree = ""; }; + 9CD808051F30303382AE76758822EB7E /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; + 9D0A0350C270DBEAFE5F5B6703D7D716 /* UINavigationController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UINavigationController+Rx.swift"; path = "RxCocoa/iOS/UINavigationController+Rx.swift"; sourceTree = ""; }; + 9D0F6B63ED009DCB443935C2CE7C3EAB /* DDControlsKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDControlsKit_Private.release.xcconfig; sourceTree = ""; }; + 9D20AB7550D12EF036C4BD6A2D23C2DA /* AMapNaviWalkManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviWalkManager.h; path = AMapNaviKit.framework/Headers/AMapNaviWalkManager.h; sourceTree = ""; }; 9D4B74A4386EF8F53603612D83CA68C9 /* DDColorKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDColorKit_Private; path = libDDColorKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 9D52CF39101110368F7621562A7D254D /* NSDate+BRPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDate+BRPickerView.h"; path = "BRPickerView/DatePickerView/NSDate+BRPickerView.h"; sourceTree = ""; }; - 9D5B6AE6028A23A9B89AB98E3BA0F237 /* RxSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-prefix.pch"; sourceTree = ""; }; - 9D6236BA8C308683039C38766A1F971A /* UIViewController+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIViewController+DDCategory/UIViewController+DDCategory.m"; sourceTree = ""; }; - 9D7B3F06FC86313D92F0CAF2CFD0BCD1 /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = ""; }; - 9D8211385C6B50829DFD7B6D81D2BCD3 /* ConstraintAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintAttributes.swift; path = Sources/ConstraintAttributes.swift; sourceTree = ""; }; + 9D57D19629CE260314DE6E8DB370E35D /* ScheduledItemType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItemType.swift; path = RxSwift/Schedulers/Internal/ScheduledItemType.swift; sourceTree = ""; }; + 9D8C7DB024F10C1415AC8F55084A1F94 /* DDTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTableViewCell.swift; path = DDControlsKit_Private/Classes/DDTableViewCell/DDTableViewCell.swift; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9DA7D44F47D0AE92476114B4A6E3259A /* ConstraintDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDSL.swift; path = Sources/ConstraintDSL.swift; sourceTree = ""; }; - 9E12638D5B9E77F38BF7335B964AEC62 /* DDBaseCollectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseCollectionView.m; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionView/DDBaseCollectionView.m; sourceTree = ""; }; - 9E261E16AAB8FBD2C52D6C38F1A3B65C /* MBProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MBProgressHUD.h; path = DDProgressHUDKit_Private/Classes/MBProgressHUD.h; sourceTree = ""; }; - 9E54F1F80E988005D646796E532D54A5 /* RefCountDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RefCountDisposable.swift; path = RxSwift/Disposables/RefCountDisposable.swift; sourceTree = ""; }; - 9E59E3429A485C2A5503F84B98CA1316 /* PublishRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublishRelay.swift; path = RxRelay/PublishRelay.swift; sourceTree = ""; }; - 9E78EC5F257D62CF5EBF684320C1C0A5 /* Infallible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Infallible.swift; path = RxSwift/Traits/Infallible/Infallible.swift; sourceTree = ""; }; - 9E8A34914BBC138DA91C0CDE3DDD9A4F /* DDToastKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDToastKit_Private.release.xcconfig; sourceTree = ""; }; - 9E9E994F5E0A30466A019EF2038D1604 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; - 9ECCA2E9F88E4020FF26BF65A46B73B7 /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJRefresh.h"; path = "MJRefresh/UIScrollView+MJRefresh.h"; sourceTree = ""; }; - 9ED7DA4EDAF57C531F5BAE1A4089B0B7 /* ConstraintPriority.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriority.swift; path = Sources/ConstraintPriority.swift; sourceTree = ""; }; - 9F13711889F8354E9262928D932565F0 /* MALineDrawType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MALineDrawType.h; path = AMapNaviKit.framework/Headers/MALineDrawType.h; sourceTree = ""; }; - 9F33CC9785E07D71C6234832E1CB198B /* JXCategoryBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseView.h; path = Sources/Base/JXCategoryBaseView.h; sourceTree = ""; }; - 9F4F6F9D8F1ADBBAB50B845421B78553 /* EKAttributes+Presets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Presets.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Presets.swift"; sourceTree = ""; }; - 9F9FACDB39F8C71D28C209FBC8EAA374 /* BRPickerView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = BRPickerView.modulemap; sourceTree = ""; }; - 9FA79894D6DDF3F2507D0CB7D0422651 /* Generate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Generate.swift; path = RxSwift/Observables/Generate.swift; sourceTree = ""; }; - 9FD50CACA2EA34F8CBD7FE5CA952A915 /* MAOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlay.h; path = AMapNaviKit.framework/Headers/MAOverlay.h; sourceTree = ""; }; - 9FEC7F3CDD90F13DAB8D5602D5FAAF59 /* JXCategoryNumberCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberCell.m; path = Sources/Number/JXCategoryNumberCell.m; sourceTree = ""; }; + 9DAF90C1775CBBE41F0E654E0DE73D6B /* AMapTrackKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapTrackKit.framework; sourceTree = ""; }; + 9DB545FA70E55DCB2EEA485007A5B046 /* ReplayRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplayRelay.swift; path = RxRelay/ReplayRelay.swift; sourceTree = ""; }; + 9DEEDACA0AD6781F733C759A960CA824 /* MAPathShowRange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPathShowRange.h; path = AMapNaviKit.framework/Headers/MAPathShowRange.h; sourceTree = ""; }; + 9E23A92691502180D23A68331E29F362 /* UIViewController+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIViewController+DDCategory/UIViewController+DDCategory.h"; sourceTree = ""; }; + 9E24E82F8E4A5DB5258F6CD07BECCED2 /* BRPickerView.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = BRPickerView.bundle; path = BRPickerView/Base/BRPickerView.bundle; sourceTree = ""; }; + 9E491F032B37C7D205E0EE1094D35416 /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = ""; }; + 9E627D5B1A7FB24C484CE8EFFD56AAFF /* MJRefreshStateTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m; sourceTree = ""; }; + 9E722947585C05E002BBAABE96FCC6B6 /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = ""; }; + 9EC0AE154353695419564ABE9F48F459 /* DDUtilsSwiftKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDUtilsSwiftKit_Private-dummy.m"; sourceTree = ""; }; + 9EC0FD51086DADF03B4999AF9F7BAFA4 /* ZFPortraitViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPortraitViewController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPortraitViewController.h; sourceTree = ""; }; + 9F32DFF1A7B79E99C1AC7F41FBB0B1FC /* MAGeometry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGeometry.h; path = AMapNaviKit.framework/Headers/MAGeometry.h; sourceTree = ""; }; + 9F6C24C9FF2E5F8198DCD3E589F1EBB1 /* AMapSearchKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchKit.h; path = AMapSearchKit.framework/Headers/AMapSearchKit.h; sourceTree = ""; }; + 9F75183CDE076D8CCE6404A74A0A9C4D /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; + 9F81CC6D2F90366A5CEFD1D0CA455A37 /* ShareReplayScope.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShareReplayScope.swift; path = RxSwift/Observables/ShareReplayScope.swift; sourceTree = ""; }; + 9F9217E11B9FCAAEBB360EB617822611 /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefresh/MJRefreshConst.m; sourceTree = ""; }; + 9FE6E76773837601F72CB86EA43A6D61 /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoNormalFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h; sourceTree = ""; }; + 9FF5754CB4007BA551AA19CE66D63905 /* DDBaseViewModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseViewModel.m; path = DDBasicControlsKit_Private/Classes/DDBaseViewModel/DDBaseViewModel.m; sourceTree = ""; }; A0031ECF94D34F1497602F4B0794DD58 /* Pods-OrderScheduling-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-OrderScheduling-umbrella.h"; sourceTree = ""; }; - A07D151B5D8E9E674A370F429FFD441E /* DDBasicControlsKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDBasicControlsKit_Private-prefix.pch"; sourceTree = ""; }; - A0985C2D3D09468F5950AC1BA9882EF1 /* DDBaseLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseLabel.m; path = DDBasicControlsKit_Private/Classes/DDBaseLabel/DDBaseLabel.m; sourceTree = ""; }; - A0C8CD78464DDFAC6AAB40D06B87B19C /* DDCategoryKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDCategoryKit_Private-dummy.m"; sourceTree = ""; }; - A0DF86A8859EA3632FA00A9B5AA19945 /* UITableViewCell+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableViewCell+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITableViewCell+DDCategory/UITableViewCell+DDCategory.m"; sourceTree = ""; }; - A10CD21A978B7213B50F82629974CBC7 /* Skip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Skip.swift; path = RxSwift/Observables/Skip.swift; sourceTree = ""; }; - A1187BDB18A7BCD373D82B768A9D8811 /* ZLCollectionViewFlowLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCollectionViewFlowLayout.swift; path = Sources/General/ZLCollectionViewFlowLayout.swift; sourceTree = ""; }; - A169C4083A6FE0A0721678E2DEFFD9D8 /* Dematerialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Dematerialize.swift; path = RxSwift/Observables/Dematerialize.swift; sourceTree = ""; }; - A17FB5545E866C560CE22CA9A33E96A9 /* JXCategoryTitleVerticalZoomView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomView.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomView.h; sourceTree = ""; }; - A181CFF6E84AA02D829ADF5F710FC1E5 /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoStateFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m; sourceTree = ""; }; - A1EC1C2ED9EAB5FAB42E1362ECADE8C7 /* AutoUI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutoUI.swift; path = DDAutoUIKit_Private/Classes/AutoUI.swift; sourceTree = ""; }; - A1F8AAE3B07D060F242023977EAFF840 /* Lock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Lock.swift; path = RxSwift/Concurrency/Lock.swift; sourceTree = ""; }; - A1FAE616ACA192AC2B4835DE33A95F75 /* JXCategoryTitleCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleCellModel.h; path = Sources/Title/JXCategoryTitleCellModel.h; sourceTree = ""; }; - A21875CC8838BBECDE58272A9514F046 /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = DDWebImageKit_Private/Classes/SDWebImage/SDWebImage.h; sourceTree = ""; }; - A2B32F0FBA845545E001CDEC8EB8EE3E /* UITableView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITableView+DDCategory/UITableView+DDCategory.h"; sourceTree = ""; }; - A2B6BE45956FD5C733D827442732FB6C /* IQKeyboardManagerConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstants.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstants.swift; sourceTree = ""; }; - A2DAB0E486C16636AB9638A94C2C7537 /* JXCategoryView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXCategoryView-umbrella.h"; sourceTree = ""; }; - A334299C71CD0E02377132049A793348 /* ZFPlayerNotification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerNotification.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerNotification.m; sourceTree = ""; }; - A363A011B34262196863671FE274C8DD /* ZLProgressHUD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLProgressHUD.swift; path = Sources/General/ZLProgressHUD.swift; sourceTree = ""; }; - A38F1C0196F755CE20BC51A7D52CE365 /* DDProgressHUDKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDProgressHUDKit_Private-umbrella.h"; sourceTree = ""; }; - A3B282A4B58052B382A0CF2218CD95A6 /* JXCategoryBaseCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseCellModel.m; path = Sources/Base/JXCategoryBaseCellModel.m; sourceTree = ""; }; - A3E9384F1C565F163C681DD5DB0DDC53 /* MACustomBuildingOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomBuildingOverlay.h; path = AMapNaviKit.framework/Headers/MACustomBuildingOverlay.h; sourceTree = ""; }; - A401A53F624CA2692E76DA76C8AFE7F5 /* JPushExtension-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "JPushExtension-xcframeworks.sh"; sourceTree = ""; }; - A45AEB2DFFCE8057206B2DE8ECBE25D4 /* BRDatePickerView+BR.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "BRDatePickerView+BR.h"; path = "BRPickerView/DatePickerView/BRDatePickerView+BR.h"; sourceTree = ""; }; - A4D292ACA56D0BD38598E5ED3BA9ABA5 /* SwiftyRSA.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftyRSA.swift; path = Source/SwiftyRSA.swift; sourceTree = ""; }; - A502205308EE0FC9C10E22A31CE6F71E /* DDBaseViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseViewController.h; path = DDBasicControlsKit_Private/Classes/DDBaseViewController/DDBaseViewController.h; sourceTree = ""; }; - A5A7FEDE640ADB2E35F956F7A7C2450F /* AMapLocationKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationKit.h; path = AMapLocationKit.framework/Headers/AMapLocationKit.h; sourceTree = ""; }; - A5C27657E9CED84E123DEA6B82612948 /* EKAttributes+Precedence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Precedence.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Precedence.swift"; sourceTree = ""; }; - A5D484E42F0E7A19057BDA48F89F5720 /* UIStepper+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIStepper+Rx.swift"; path = "RxCocoa/iOS/UIStepper+Rx.swift"; sourceTree = ""; }; - A5E64A2EE6431B19A716DBDEF3B30A75 /* JXCategoryIndicatorLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorLineView.h; sourceTree = ""; }; - A6305B0A7669981BF0E69BB1D66D6266 /* jpush-ios-5.0.1.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = "jpush-ios-5.0.1.xcframework"; sourceTree = ""; }; - A6CC415015CAA9C13B6367E82CC3EA70 /* Alamofire.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.release.xcconfig; sourceTree = ""; }; - A6E8AAA322B293EDCA1E1F57A1D9B21C /* IQToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQToolbar.swift; path = IQKeyboardManagerSwift/IQToolbar/IQToolbar.swift; sourceTree = ""; }; - A6FA46D87EEAB8EF53B66A7941BEAD12 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; - A75E39D1AE5EA909AAFFDA481B1C86B4 /* UIApplication+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIApplication+DDCategory/UIApplication+DDCategory.h"; sourceTree = ""; }; - A7722501FB9792273EAA04FCB5F51740 /* ZFLandScapeControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLandScapeControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLandScapeControlView.m; sourceTree = ""; }; - A7D9E4872D97F4F73672291A1F44B6D0 /* SchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SchedulerType.swift; path = RxSwift/SchedulerType.swift; sourceTree = ""; }; + A006594DBE451C7B706148C14E740C98 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; + A0075F18943CBD04D78DFC48361C17F5 /* ZFPlayerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerView.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerView.m; sourceTree = ""; }; + A09DE9B73AF2C9644F9EF9E378068A08 /* MJRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJRefresh.modulemap; sourceTree = ""; }; + A15C2FBE201937681EDAF46673D44B02 /* AMapNaviCompositeUserConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCompositeUserConfig.h; path = AMapNaviKit.framework/Headers/AMapNaviCompositeUserConfig.h; sourceTree = ""; }; + A17948FB20E1570E9A887C4D29C8A7EC /* Message.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Message.swift; path = Source/Message.swift; sourceTree = ""; }; + A19CBEEE4117AAD18E8F494E0ED107BA /* DDTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTextView.swift; path = DDControlsKit_Private/Classes/DDTextView/DDTextView.swift; sourceTree = ""; }; + A1D71C8008A798B55A6A430FFD318DE8 /* ScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItem.swift; path = RxSwift/Schedulers/Internal/ScheduledItem.swift; sourceTree = ""; }; + A1DD483855F07169C649DD40668A0E7A /* DDAudioPlayerKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDAudioPlayerKit_Private.modulemap; sourceTree = ""; }; + A1FD2BAD4E1D02181AE2E2D81F6E5490 /* Throttle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Throttle.swift; path = RxSwift/Observables/Throttle.swift; sourceTree = ""; }; + A20B398A6CC241B39BCA9C2F2BDB08A9 /* NSDate+BRPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDate+BRPickerView.m"; path = "BRPickerView/DatePickerView/NSDate+BRPickerView.m"; sourceTree = ""; }; + A236D223D62C020CF0F1A1D5BA118FB1 /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; + A2611215DA2487C56F63E5ECC7F5E761 /* DDBaseAttributedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseAttributedString.h; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseAttributedString.h; sourceTree = ""; }; + A262C4E426195A0B813E94A06318FA31 /* UIScrollView+ZFPlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+ZFPlayer.m"; path = "DDZFPlayerKit_Private/Classes/Core/UIScrollView+ZFPlayer.m"; sourceTree = ""; }; + A267D8D0FA052374EA48C1A73BAA325D /* DDBaseTabBarController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTabBarController.m; path = DDBasicControlsKit_Private/Classes/DDBaseTabBarController/DDBaseTabBarController.m; sourceTree = ""; }; + A2751AA5A22F3247BC0019FA460876B3 /* DDBaseCollectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseCollectionView.h; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionView/DDBaseCollectionView.h; sourceTree = ""; }; + A292BD1DA40FF7CD44D5F6FCF9DB47C0 /* UISearchController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISearchController+Rx.swift"; path = "RxCocoa/iOS/UISearchController+Rx.swift"; sourceTree = ""; }; + A300462831ECE9BB9DAC511335E5FD95 /* NSSlider+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSSlider+Rx.swift"; path = "RxCocoa/macOS/NSSlider+Rx.swift"; sourceTree = ""; }; + A319958E73C98ACF9F54AC059009CC1B /* NSURL+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURL+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSUrl+DDCategory/NSURL+DDCategory.m"; sourceTree = ""; }; + A3423FA0A90F7A80595AC06FDB905ACA /* ConstraintPriority.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriority.swift; path = Sources/ConstraintPriority.swift; sourceTree = ""; }; + A34E17DDAE76CFB7A1F4CCB0504F5879 /* ZLFilter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLFilter.swift; path = Sources/Edit/ZLFilter.swift; sourceTree = ""; }; + A35FBB2AC4CAC09ADCFA5FD239A3DC69 /* Enumerated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Enumerated.swift; path = RxSwift/Observables/Enumerated.swift; sourceTree = ""; }; + A36A2265D106FF33C57F187EE4A41467 /* UIView+ZFFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+ZFFrame.m"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIView+ZFFrame.m"; sourceTree = ""; }; + A37A3D322A680778C4A85EBBB3DDDDDA /* NSMutableAttributedString+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableAttributedString+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableAttributedString+DDCategory.h"; sourceTree = ""; }; + A3965656818EAD818DC5956FFCB491E7 /* RxCollectionViewDataSourcePrefetchingProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourcePrefetchingProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDataSourcePrefetchingProxy.swift; sourceTree = ""; }; + A3D3D87C73EAE5BB6974D14F6EAF73BA /* EventMonitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventMonitor.swift; path = Source/EventMonitor.swift; sourceTree = ""; }; + A408C5DDE0B5681E5B78480168CAE122 /* MAMVTTileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMVTTileOverlay.h; path = AMapNaviKit.framework/Headers/MAMVTTileOverlay.h; sourceTree = ""; }; + A409749AD215AAA1622AC3955B0754DC /* DDMAMapKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDMAMapKit_Private.release.xcconfig; sourceTree = ""; }; + A435184CEFCE5107680EF9EBBFA6CD97 /* PublicKey.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublicKey.swift; path = Source/PublicKey.swift; sourceTree = ""; }; + A438275CD02B434CCA172C62742F143A /* ObservableConvertibleType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableConvertibleType.swift; path = RxSwift/ObservableConvertibleType.swift; sourceTree = ""; }; + A4886924F62ED6D39696DC7BA9F97A4A /* ConstraintMakerEditable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerEditable.swift; path = Sources/ConstraintMakerEditable.swift; sourceTree = ""; }; + A4D84F8311FDF74C4D6BA30E1E7CC7D3 /* EKStyleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKStyleView.swift; path = Source/Infra/EKStyleView.swift; sourceTree = ""; }; + A4FACBB3E34B686DB4BCAF719C0DE592 /* JXCategoryTitleVerticalZoomView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomView.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomView.m; sourceTree = ""; }; + A50025A48B4C30B28A6D2B6E4BCD2811 /* ZLEditToolCells.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditToolCells.swift; path = Sources/Edit/ZLEditToolCells.swift; sourceTree = ""; }; + A531AD70769E1396BB66543117414125 /* ApplicationInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ApplicationInfo.swift; path = DDUtilsSwiftKit_Private/Classes/ApplicationInfo/ApplicationInfo.swift; sourceTree = ""; }; + A59C4B8A784E102E1E4C09F6839D0B77 /* MAPolygon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolygon.h; path = AMapNaviKit.framework/Headers/MAPolygon.h; sourceTree = ""; }; + A5B92B9DD7E11F79990198C76793D5D5 /* MAMultiColoredPolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiColoredPolylineRenderer.h; path = AMapNaviKit.framework/Headers/MAMultiColoredPolylineRenderer.h; sourceTree = ""; }; + A5CE3C7E1B5625A398DBB84016A72F64 /* SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SharedSequence.swift; path = RxCocoa/Traits/SharedSequence/SharedSequence.swift; sourceTree = ""; }; + A62C7AED05AFA7022D1DD6F203907AFC /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; + A65948E74F7149FE3E49C2025975F504 /* CachedResponseHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachedResponseHandler.swift; path = Source/CachedResponseHandler.swift; sourceTree = ""; }; + A65D61B32897A1D0893431A2B85890CE /* MAOfflineItemMunicipality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemMunicipality.h; path = AMapNaviKit.framework/Headers/MAOfflineItemMunicipality.h; sourceTree = ""; }; + A6CB500FEAE9FB17FF0CD13C096A8785 /* AMap.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = AMap.bundle; path = AMapNaviKit.framework/AMap.bundle; sourceTree = ""; }; + A715C6F02D6033EB5FE5B49C4BB39B6A /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; + A77056F46320D38F0EC8EFA7A5AEC2DE /* EKPopUpMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKPopUpMessage.swift; path = Source/Model/EKPopUpMessage.swift; sourceTree = ""; }; + A788760BE0D2EF4CFE65B330573CDE01 /* BehaviorRelay+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "BehaviorRelay+Driver.swift"; path = "RxCocoa/Traits/Driver/BehaviorRelay+Driver.swift"; sourceTree = ""; }; + A789DB64B15EBE6C180F3F4A0CB33C14 /* IQPreviousNextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQPreviousNextView.swift; path = IQKeyboardManagerSwift/IQToolbar/IQPreviousNextView.swift; sourceTree = ""; }; + A7A8ABF24AA53C255B3EFB5344ACDFFD /* NSObject+Rx+KVORepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx+KVORepresentable.swift"; path = "RxCocoa/Foundation/NSObject+Rx+KVORepresentable.swift"; sourceTree = ""; }; + A7DE48F6E46001C36233AC81BC7F59C4 /* ZFIJKPlayerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFIJKPlayerManager.h; path = DDZFPlayerKit_Private/Classes/ijkplayer/ZFIJKPlayerManager.h; sourceTree = ""; }; + A7E7F3416FA7B80F5E7E36934461C2DD /* EKImageNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKImageNoteMessageView.swift; path = Source/MessageViews/Notes/EKImageNoteMessageView.swift; sourceTree = ""; }; A7EC9B31B72E86761444A2C60DB92CC6 /* Pods-OrderSchedulingNotificationService.prerelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OrderSchedulingNotificationService.prerelease.xcconfig"; sourceTree = ""; }; - A8078EC2F66D419FC4C70C67E8688449 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; - A80C07CCBD047C169152C1EFA16BC2CC /* RxCollectionViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxCollectionViewDataSourceType.swift; sourceTree = ""; }; - A8CC1E72BBBFF3D1EAD12744E05490AE /* IQUIScrollView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIScrollView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIScrollView+Additions.swift"; sourceTree = ""; }; - A8DD808D7607AD343A0DCA81670E898E /* Enumerated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Enumerated.swift; path = RxSwift/Observables/Enumerated.swift; sourceTree = ""; }; + A830C26521C532751DB622B4D379B501 /* Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Create.swift; path = RxSwift/Observables/Create.swift; sourceTree = ""; }; + A854712807C24CB9DB0126A588D0467E /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefresh/MJRefreshConst.h; sourceTree = ""; }; + A865D99D9F7E97AA7DF4420835BC98B1 /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = ""; }; + A86BF9EFA111BAE02F60AFFEAD619EF4 /* MAMultiPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPolyline.h; path = AMapNaviKit.framework/Headers/MAMultiPolyline.h; sourceTree = ""; }; + A8761FED098D9D393C2034FC6D0B44C9 /* ESTabBarController-swift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ESTabBarController-swift-prefix.pch"; sourceTree = ""; }; + A8810F442A427B55C7AE10B8984544E2 /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackStateFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m; sourceTree = ""; }; + A88FDEC296D66AC6FD5CE6DEC2002FCA /* RxMutableBox.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxMutableBox.swift; path = RxSwift/RxMutableBox.swift; sourceTree = ""; }; + A890FECB845698CDDC2E15883C096A5F /* MultipartUpload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartUpload.swift; path = Source/MultipartUpload.swift; sourceTree = ""; }; + A8B40D5A6943D4F6EFDBA40C484F7B2C /* KingfisherError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherError.swift; path = Sources/General/KingfisherError.swift; sourceTree = ""; }; A8E950A16D00F649C54FFB30F81D7842 /* IQKeyboardManagerSwift */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = IQKeyboardManagerSwift; path = libIQKeyboardManagerSwift.a; sourceTree = BUILT_PRODUCTS_DIR; }; - A909C475F40117A76DBC80DE48CEB80B /* Kingfisher-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-umbrella.h"; sourceTree = ""; }; A9132D6AA90D7BC2B6C7A08B065F87A9 /* DDToastKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDToastKit_Private; path = libDDToastKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - A9256D3714F10A90DA1BA7212A695000 /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefresh/MJRefreshConst.m; sourceTree = ""; }; - A940978B2BF8C6839BB0F74AAB53974F /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = ""; }; - A9569643BAC1BFEE9C781C30A603ACF2 /* ConstraintMaker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMaker.swift; path = Sources/ConstraintMaker.swift; sourceTree = ""; }; - A98A467CBA2AE60E30DBA048C3C04FDC /* ControlProperty+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlProperty+Driver.swift"; path = "RxCocoa/Traits/Driver/ControlProperty+Driver.swift"; sourceTree = ""; }; - A9B379106427F4ABA14026A5C879745A /* Concat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concat.swift; path = RxSwift/Observables/Concat.swift; sourceTree = ""; }; - A9B7CBC1F9794E96B4E20B046CDE8A30 /* ConstraintLayoutSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupport.swift; path = Sources/ConstraintLayoutSupport.swift; sourceTree = ""; }; - A9C2B5446B61B26773F54BE8A87FEAC0 /* AMapTrackManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackManager.h; path = AMapTrackKit.framework/Headers/AMapTrackManager.h; sourceTree = ""; }; - A9C78B8F8B8C1ECE896B9F15C7792900 /* MAArcRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAArcRenderer.h; path = AMapNaviKit.framework/Headers/MAArcRenderer.h; sourceTree = ""; }; - A9CC98C7FBDCEC01C9FF69AF3AD399BF /* IQKeyboardManager+OrientationNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+OrientationNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+OrientationNotification.swift"; sourceTree = ""; }; - A9DC763CB419031AA094BC0DAC4CDEE9 /* AMapNaviWalkDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviWalkDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviWalkDataRepresentable.h; sourceTree = ""; }; - A9E35A855C73220ADD2A2008219BD61F /* UIButton+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIButton+DDCategory/UIButton+DDCategory.h"; sourceTree = ""; }; - AA0C9FC33E3E3EC10BD4C13CD647DB76 /* JXCategoryCollectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryCollectionView.h; path = Sources/Common/JXCategoryCollectionView.h; sourceTree = ""; }; - AA30A55FDF8DFDDBC812D62BD202C59A /* URLConvertible+URLRequestConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLConvertible+URLRequestConvertible.swift"; path = "Source/URLConvertible+URLRequestConvertible.swift"; sourceTree = ""; }; - AA341F7B5A96F286FE512894EDC79898 /* AMapLocationVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationVersion.h; path = AMapLocationKit.framework/Headers/AMapLocationVersion.h; sourceTree = ""; }; - AA7279D9C6F9BD7E79B9FD439BF03B8B /* Zip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Zip.swift; path = RxSwift/Observables/Zip.swift; sourceTree = ""; }; - AAA982518F09F8225962D06C2F751884 /* LayoutConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraintItem.swift; path = Sources/LayoutConstraintItem.swift; sourceTree = ""; }; - AADA96E2E0642032A7525A05A35E83B5 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Sources/Networking/SessionDelegate.swift; sourceTree = ""; }; - AADD8A1FA51E934EFD39C3D1EA6C4B97 /* CompositeDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositeDisposable.swift; path = RxSwift/Disposables/CompositeDisposable.swift; sourceTree = ""; }; - AB5CEAF3844CDE954B6DECF9739454F6 /* DDSwitch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDSwitch.swift; path = DDControlsKit_Private/Classes/DDSwitch/DDSwitch.swift; sourceTree = ""; }; - ABAB9CE2BEC6AED9950849447DED31E3 /* RxSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwift.release.xcconfig; sourceTree = ""; }; - ABBFFD2D79C3133BB5D213184A66FBA1 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = RxSwift/Observables/Filter.swift; sourceTree = ""; }; - ABC6E315D8B4DFE8121C2E9E4E57559F /* DDAutoUIKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDAutoUIKit_Private.release.xcconfig; sourceTree = ""; }; - ABD687ADEBACFF2F6ACF83DCF14BE1D2 /* JXCategoryDotCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotCell.m; path = Sources/Dot/JXCategoryDotCell.m; sourceTree = ""; }; - ABE8238EE5B140517E77DC887ED83389 /* GroupBy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupBy.swift; path = RxSwift/Observables/GroupBy.swift; sourceTree = ""; }; - ABE9CBDE3FC3DB8B17CA2F4DF35287AD /* JXCategoryIndicatorComponentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorComponentView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorComponentView.h; sourceTree = ""; }; - AC1336DF90ED85B667D6759B8550C914 /* DDTextField.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTextField.swift; path = DDControlsKit_Private/Classes/DDTextField/DDTextField.swift; sourceTree = ""; }; - AC14C2976D6079C72BABBC524433A222 /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = ""; }; - AC1D2CC1B5DCDB8318B494F34D130A4B /* ZFOrientationObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFOrientationObserver.h; path = DDZFPlayerKit_Private/Classes/Core/ZFOrientationObserver.h; sourceTree = ""; }; - AC48B4F734A773D2F8CA6C4C18FA0438 /* MJRefreshConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConfig.h; path = MJRefresh/MJRefreshConfig.h; sourceTree = ""; }; - AC4E1917617F023685F6839CB2438EA8 /* DDMAMapKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDMAMapKit_Private.release.xcconfig; sourceTree = ""; }; - AC55ED7E828E08DF03D9F36813E44D2A /* BRBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRBaseView.h; path = BRPickerView/Base/BRBaseView.h; sourceTree = ""; }; - ACB732F84CAA84751166CEAAAD9DCD8B /* DiskStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DiskStorage.swift; path = Sources/Cache/DiskStorage.swift; sourceTree = ""; }; - ACCC81957B043657C6ADF39A29618B2F /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefresh/MJRefreshConst.h; sourceTree = ""; }; - ACCCF92CADFDAF26663086247966C12D /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; - ACF3E42C7C5F35D5AEC97F85FBC70F77 /* JXCategoryTitleImageCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageCell.h; path = Sources/TitleImage/JXCategoryTitleImageCell.h; sourceTree = ""; }; - AD2ACFF1DFA41266B9306E32661D9DBF /* DDCategoryKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDCategoryKit_Private.modulemap; sourceTree = ""; }; - AD3A281E792BDA50C5E416A95F141BF7 /* ZLPhotoPreviewPopInteractiveTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewPopInteractiveTransition.swift; path = Sources/Animation/ZLPhotoPreviewPopInteractiveTransition.swift; sourceTree = ""; }; - AD8F1F15CDE8CF670C950CF038DE1F90 /* DDAF.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAF.swift; path = DDNetworkingOfAlamofireKit_Private/Classes/DDAF.swift; sourceTree = ""; }; + A91B46F0198D76B2B40EDE98F636E9E6 /* DDMAGeometry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMAGeometry.m; path = DDMAMapKit_Private/Classes/DDMAUtil/DDMAGeometry.m; sourceTree = ""; }; + A920796B53C3C1A442DFFE7A3FEB76EC /* JXCategoryDotView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotView.h; path = Sources/Dot/JXCategoryDotView.h; sourceTree = ""; }; + A9817CFE8A4527BF9CC4CEA07E9BF38E /* ZFIJKPlayerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFIJKPlayerManager.m; path = DDZFPlayerKit_Private/Classes/ijkplayer/ZFIJKPlayerManager.m; sourceTree = ""; }; + A98545823367190E0273717AF190E554 /* SharedSequence+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Concurrency.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Concurrency.swift"; sourceTree = ""; }; + A9BC4FEDEC0E2CC03F385735382E96E1 /* JXCategoryIndicatorLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorLineView.h; sourceTree = ""; }; + A9C059A3D5DB2FA7379E9C9BA5526458 /* DDBaseImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseImage.h; path = DDBasicControlsKit_Private/Classes/DDBaseImage/DDBaseImage.h; sourceTree = ""; }; + A9F99F41CE9BBA098B5CA0619B11EF16 /* EKRootViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRootViewController.swift; path = Source/Infra/EKRootViewController.swift; sourceTree = ""; }; + AA107A9103958283C24A652CD373427C /* EKAttributes+LifecycleActions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+LifecycleActions.swift"; path = "Source/Model/EntryAttributes/EKAttributes+LifecycleActions.swift"; sourceTree = ""; }; + AA19C8D8B918C79F66601E7BD259C04E /* Kingfisher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.debug.xcconfig; sourceTree = ""; }; + AA4F6B68BCECD6440DEECF0F4BCED04A /* Decode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Decode.swift; path = RxSwift/Observables/Decode.swift; sourceTree = ""; }; + AA5BF5EDEC0A3759F73E1C15610E9F70 /* MAOfflineItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItem.h; path = AMapNaviKit.framework/Headers/MAOfflineItem.h; sourceTree = ""; }; + AA5C696C22AB834D1BE5C85C00880A12 /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = ""; }; + AA81EBE5C38E65C5B4B36C77A876C330 /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; + AA9DCE00A1CC7C0A1E8963EC44BC3F0C /* SwitchIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwitchIfEmpty.swift; path = RxSwift/Observables/SwitchIfEmpty.swift; sourceTree = ""; }; + AB14354CA0CB3F670EF99A2295D90BC3 /* ConstraintMakerFinalizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerFinalizable.swift; path = Sources/ConstraintMakerFinalizable.swift; sourceTree = ""; }; + AB192712A70143FF7483B04CD367F714 /* ImageDownloaderDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloaderDelegate.swift; path = Sources/Networking/ImageDownloaderDelegate.swift; sourceTree = ""; }; + AB72DA33BB01C8F020C36D64A2E13D8F /* MAParticleOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAParticleOverlayRenderer.h; sourceTree = ""; }; + AB7878FE8862F9BAF1CDFDEA492CFFB0 /* EKTextField.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKTextField.swift; path = Source/MessageViews/MessagesUtils/EKTextField.swift; sourceTree = ""; }; + AB9A7ED70E056014316D5B9946FD9C58 /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; + ABA8F3597F6131F7CD0471C852D1D176 /* IQKeyboardManager+Toolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Toolbar.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Toolbar.swift"; sourceTree = ""; }; + ABB63A522A7029CFC415E409AC947BC4 /* UIWindow+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWindow+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIWindow+DDCategory/UIWindow+DDCategory.m"; sourceTree = ""; }; + ABE7E82F6A637D933B9A7E37477281B7 /* UICollectionViewCell+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewCell+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UICollectionViewCell+DDCategory/UICollectionViewCell+DDCategory.m"; sourceTree = ""; }; + AC15D5FB3C69C246019033A6888F1939 /* RTLManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RTLManager.h; path = Sources/RLTManager/RTLManager.h; sourceTree = ""; }; + AC2BDD5A9F50BCD9C6D52D78D069DAF8 /* GradientView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientView.swift; path = Source/Utils/GradientView.swift; sourceTree = ""; }; + AC435BCDB1D6D0921B24985828F65ABB /* Kingfisher-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-umbrella.h"; sourceTree = ""; }; + AC43FAA7E3C12560AA886DE857F93BA2 /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDNetworkingOfAlamofireKit_Private.release.xcconfig; sourceTree = ""; }; + AC4983AFC294D041448180476D26CAFA /* AMapTrackHistoryObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackHistoryObj.h; path = AMapTrackKit.framework/Headers/AMapTrackHistoryObj.h; sourceTree = ""; }; + AC52AD5FE916BDD17BEE8C7941452EE7 /* DDZFPlayerKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDZFPlayerKit_Private.modulemap; sourceTree = ""; }; + AC591307EA0056B03A18106EE9AA4EB4 /* UIView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIView+DDCategory/UIView+DDCategory.h"; sourceTree = ""; }; + AC7C613A9C853720F480F2B7E381C709 /* UIButton+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Rx.swift"; path = "RxCocoa/iOS/UIButton+Rx.swift"; sourceTree = ""; }; + ACA9D816A5BFFC71D3DAAEE9BB33A387 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; + ACEA90FEEA0CD40E9AEB8BEB96DACACD /* ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist"; sourceTree = ""; }; + ACF367D2CFC13336195E1A03850DE5E5 /* EKAttributes+UserInteraction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+UserInteraction.swift"; path = "Source/Model/EntryAttributes/EKAttributes+UserInteraction.swift"; sourceTree = ""; }; + AD6684E1FA8C54AFC92D5FB4D158832A /* ObservableConvertibleType+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Signal.swift"; path = "RxCocoa/Traits/Signal/ObservableConvertibleType+Signal.swift"; sourceTree = ""; }; + AD6A26B15AAFE692B92D5F16C8602202 /* Sources_DDMAMap */ = {isa = PBXFileReference; includeInIndex = 1; name = Sources_DDMAMap; path = DDMAMapKit_Private/Assets/Sources_DDMAMap; sourceTree = ""; }; + AD82D375FA48F410FCE1A8103D22A9C9 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; + AD83B4509F3F1CD3C9E05C7C52414CE7 /* DDBaseImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseImage.m; path = DDBasicControlsKit_Private/Classes/DDBaseImage/DDBaseImage.m; sourceTree = ""; }; AD8FF1E8B0C9C12F070D79A5EC3BEE59 /* DDWebImageKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDWebImageKit_Private; path = libDDWebImageKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - ADF8EDE599BD19CA803994AC9838E8FE /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = ""; }; - AE046F268BC84ADA083B9C81E9D296B5 /* DDMATrackManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMATrackManager.m; path = DDMAMapKit_Private/Classes/DDMATrackManager/DDMATrackManager.m; sourceTree = ""; }; - AE073D46601660CA896FC55F0616725F /* BRDatePickerView+BR.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "BRDatePickerView+BR.m"; path = "BRPickerView/DatePickerView/BRDatePickerView+BR.m"; sourceTree = ""; }; - AE6145B3237DE926655A336FF28E6BC8 /* MAHeatMapVectorOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorOverlay.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorOverlay.h; sourceTree = ""; }; - AE99DD9E33CE8E9C5FAF0FAF7FE9DF25 /* ZFPortraitViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPortraitViewController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPortraitViewController.m; sourceTree = ""; }; - AE9ACB42B9D8D64F4C97C05AD1294E34 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; - AE9F9011F9E47F13A557D1479BABE384 /* ZLCameraCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCameraCell.swift; path = Sources/General/ZLCameraCell.swift; sourceTree = ""; }; - AEA3A07AED3ABF0E987811BE34F3BD03 /* ESTabBarItemContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemContainer.swift; path = Sources/ESTabBarItemContainer.swift; sourceTree = ""; }; - AEBCD8C84670C83A94FB9262C56E66F5 /* ZLAlbumListController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAlbumListController.swift; path = Sources/General/ZLAlbumListController.swift; sourceTree = ""; }; - AF102BB030DB51979C8828A4CCFB60C6 /* DDColorKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDColorKit_Private-umbrella.h"; sourceTree = ""; }; - AF157A60B23BCC2CFA7431BE130D3402 /* ZFSliderView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFSliderView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSliderView.m; sourceTree = ""; }; - AF28F0390B37BBAB00F838E656B095DA /* IQKeyboardManagerConstantsInternal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstantsInternal.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstantsInternal.swift; sourceTree = ""; }; - AF624A6F53BE5819B763EB4B33530EB9 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - AF80C7D34857FF6762E02B8A16D658F6 /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; - AFBA9E4A0633C81757C2E6C00D0EE084 /* MAOfflineItemMunicipality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemMunicipality.h; path = AMapNaviKit.framework/Headers/MAOfflineItemMunicipality.h; sourceTree = ""; }; - AFF5711C237875521FB7A31DB9785240 /* ConstraintView+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintView+Extensions.swift"; path = "Sources/ConstraintView+Extensions.swift"; sourceTree = ""; }; - B00D3687235637519CE9A162E5BB3AD1 /* DDBaseTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTextView.h; path = DDBasicControlsKit_Private/Classes/DDBaseTextView/DDBaseTextView.h; sourceTree = ""; }; - B02516E9B4BC3E2BA10A7E08EA083BAC /* DDZFPlayerKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDZFPlayerKit_Private.modulemap; sourceTree = ""; }; - B05760E088C44F4773E9B308F558B9F6 /* ControlEvent+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlEvent+Driver.swift"; path = "RxCocoa/Traits/Driver/ControlEvent+Driver.swift"; sourceTree = ""; }; - B05B71F960689FE653862E9DA89226F6 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; - B06A15310A68143A306FD5B54D44B0F1 /* DDProgressHUDKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDProgressHUDKit_Private-dummy.m"; sourceTree = ""; }; - B0843ED4DF873D2CE831BC9352368804 /* CombineLatest+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+arity.swift"; path = "RxSwift/Observables/CombineLatest+arity.swift"; sourceTree = ""; }; - B0ABDC43E9DA5EC3D5E8418AB59B6DC4 /* RxTableViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxTableViewDataSourceType.swift; sourceTree = ""; }; - B0BEA9C6D6413A703B39402E3A52891A /* UIApplication+EKAppearance.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+EKAppearance.swift"; path = "Source/Extensions/UIApplication+EKAppearance.swift"; sourceTree = ""; }; - B0D07A68C1A5451CF4746C771B625AF3 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; + AD9FAAC80F32588E0BFD6FB58D36B15B /* MAHeatMapTileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapTileOverlay.h; path = AMapNaviKit.framework/Headers/MAHeatMapTileOverlay.h; sourceTree = ""; }; + ADA9C4F15A3ACF6BD93A95B4E72343BA /* DDLogKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDLogKit_Private-dummy.m"; sourceTree = ""; }; + ADE3ED788C900A0031D6FD43F3C5C8F4 /* DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDCategory.h; path = DDCategoryKit_Private/Classes/DDCategory.h; sourceTree = ""; }; + ADF45E6317803019457A5EA8BFE1500B /* NSMutableParagraphStyle+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableParagraphStyle+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableParagraphStyle+DDCategory.m"; sourceTree = ""; }; + ADF6D55219F1174F93F9403A7A28B827 /* JXCategoryDotView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotView.m; path = Sources/Dot/JXCategoryDotView.m; sourceTree = ""; }; + ADFEBD6AF0319D99F5E1F215718A82CC /* RxCocoaRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RxCocoaRuntime.h; path = RxCocoa/Runtime/include/RxCocoaRuntime.h; sourceTree = ""; }; + AE1B17E31649C1CE911EB3C8EE16F83E /* ConcurrentDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentDispatchQueueScheduler.swift; path = RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift; sourceTree = ""; }; + AE7AB58F3BAED9A18850DC937778E4FE /* DeviceInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DeviceInfo.swift; path = DDUtilsSwiftKit_Private/Classes/DeviceInfo/DeviceInfo.swift; sourceTree = ""; }; + AEA01DF61C6407B9CDA9D513AA89D631 /* MAPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolyline.h; path = AMapNaviKit.framework/Headers/MAPolyline.h; sourceTree = ""; }; + AEBE47C7BCA250CA2496160E170BE8EE /* DDBaseTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTextView.h; path = DDBasicControlsKit_Private/Classes/DDBaseTextView/DDBaseTextView.h; sourceTree = ""; }; + AEF6FCC993FA0BC30EA9498B76B0B8A2 /* AMapLocationRegionObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationRegionObj.h; path = AMapLocationKit.framework/Headers/AMapLocationRegionObj.h; sourceTree = ""; }; + AEF7DEA2C28D9475A26FFCF7D0F43353 /* DDProgressHUDKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDProgressHUDKit_Private-dummy.m"; sourceTree = ""; }; + AF175BCF03100B8F14F9DF4698265BCF /* RxNavigationControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxNavigationControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxNavigationControllerDelegateProxy.swift; sourceTree = ""; }; + AF268500FC0ED762949E63422B790739 /* DispatchQueueConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DispatchQueueConfiguration.swift; path = RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift; sourceTree = ""; }; + AF57C2F96F08650971648691090F449E /* ConstraintMakerPrioritizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerPrioritizable.swift; path = Sources/ConstraintMakerPrioritizable.swift; sourceTree = ""; }; + AF74A5E916E091D3EF3775EBAE93BF3F /* BooleanDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BooleanDisposable.swift; path = RxSwift/Disposables/BooleanDisposable.swift; sourceTree = ""; }; + AFA33FAA4ED25516686ACF26C1290333 /* MAGeodesicPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGeodesicPolyline.h; path = AMapNaviKit.framework/Headers/MAGeodesicPolyline.h; sourceTree = ""; }; + AFB14E26932DD42ECE2B3DF40655D499 /* ConstraintDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDescription.swift; path = Sources/ConstraintDescription.swift; sourceTree = ""; }; + AFDADAAEC5AFF73C0D5758118E696E4D /* Infallible+Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Zip+arity.swift"; path = "RxSwift/Traits/Infallible/Infallible+Zip+arity.swift"; sourceTree = ""; }; + AFF73BF54B3E9B8EBA2ECD20D3D7CF55 /* AsyncLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncLock.swift; path = RxSwift/Concurrency/AsyncLock.swift; sourceTree = ""; }; + B09E06C6E541D2403D9AC00B9F025E50 /* HapticFeedbackGenerator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HapticFeedbackGenerator.swift; path = Source/Utils/HapticFeedbackGenerator.swift; sourceTree = ""; }; + B0A373D8F84212DF591CBBA85E8E4EF7 /* ZLProgressHUD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLProgressHUD.swift; path = Sources/General/ZLProgressHUD.swift; sourceTree = ""; }; + B0A5E2143F94BF6522848A46BAAAAB2C /* AnyObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyObserver.swift; path = RxSwift/AnyObserver.swift; sourceTree = ""; }; + B0B0C6CF37E5637050400DE2181AC707 /* NSObject+Rx+RawRepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx+RawRepresentable.swift"; path = "RxCocoa/Foundation/NSObject+Rx+RawRepresentable.swift"; sourceTree = ""; }; + B0C8702CB79554900C7918FF762EDE20 /* SnapKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SnapKit.modulemap; sourceTree = ""; }; + B0F5C1B77C4DFBC89FCC0D6F1B649AA4 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; + B0FBB8CED66D2D0C449A59D458746A67 /* CALayer+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+DDCategory.h"; path = "DDCategoryKit_Private/Classes/CALayer+DDCategory/CALayer+DDCategory.h"; sourceTree = ""; }; + B0FBDCF01215D7EABC956A4621ADABB3 /* MJRefreshConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConfig.m; path = MJRefresh/MJRefreshConfig.m; sourceTree = ""; }; B10BE75A37E306EDA52A1E38B89F97ED /* Pods-OrderScheduling-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-OrderScheduling-resources.sh"; sourceTree = ""; }; - B14C177DF0421F096BF87F6CD71F13E7 /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = ""; }; - B1A1A53B8F3A485577209EBDE57810F0 /* AMapSearchVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchVersion.h; path = AMapSearchKit.framework/Headers/AMapSearchVersion.h; sourceTree = ""; }; - B1BD622ADB420FE6BCCB6A1E11CC3C4A /* ZLPhotoConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoConfiguration.swift; path = Sources/General/ZLPhotoConfiguration.swift; sourceTree = ""; }; - B1D730DB07D98708486348B681065CA3 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; - B210E62E7E50FA3CBE127345A9F4A884 /* DDViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDViewController.swift; path = DDControlsKit_Private/Classes/DDViewController/DDViewController.swift; sourceTree = ""; }; - B253B4FDE95315E78B76766F4CE6E773 /* DDView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDView.swift; path = DDControlsKit_Private/Classes/DDView/DDView.swift; sourceTree = ""; }; - B2790B3E98F164C93C39E381955E3994 /* DDBaseAttributedString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseAttributedString.m; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseAttributedString.m; sourceTree = ""; }; - B28F76DE817014D42CF780206351B5C4 /* SnapKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-prefix.pch"; sourceTree = ""; }; - B2ACA13B00E5467166618284A6D4BCC0 /* DDBaseViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseViewController.m; path = DDBasicControlsKit_Private/Classes/DDBaseViewController/DDBaseViewController.m; sourceTree = ""; }; - B2C6A85334E4A4FE95AAD8BC94A89603 /* MAOverlayPathRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlayPathRenderer.h; path = AMapNaviKit.framework/Headers/MAOverlayPathRenderer.h; sourceTree = ""; }; - B2DAAA88BBCD7084DE97F2CE01EA9585 /* UIApplication+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+Rx.swift"; path = "RxCocoa/iOS/UIApplication+Rx.swift"; sourceTree = ""; }; - B355B796317567F12CB7DA54B807B9A2 /* RxCocoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RxCocoa.h; path = RxCocoa/RxCocoa.h; sourceTree = ""; }; - B361857491B70516454A565F87545DD5 /* AMapTrackKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackKit.h; path = AMapTrackKit.framework/Headers/AMapTrackKit.h; sourceTree = ""; }; + B110E14993BA628C03E784EC20D250D2 /* DDBaseCollectionViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseCollectionViewCell.h; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionViewCell/DDBaseCollectionViewCell.h; sourceTree = ""; }; + B19F4E5342F19A3EDF819802D9F91F20 /* BehaviorSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorSubject.swift; path = RxSwift/Subjects/BehaviorSubject.swift; sourceTree = ""; }; + B2248953DD7A0C5A2A5E0A361390FA67 /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-prefix.pch"; sourceTree = ""; }; + B2A4AC94A106CB444D55A3070F70FBD2 /* DDBaseImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseImageView.h; path = DDBasicControlsKit_Private/Classes/DDBaseImageView/DDBaseImageView.h; sourceTree = ""; }; + B3118754C00DC5A18C3E5C511E5F8F49 /* UINavigationController+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationController+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UINavigationController+DDCategory/UINavigationController+DDCategory.m"; sourceTree = ""; }; + B315DC4595306B5F2D11ED169E1D4B89 /* IJKMediaFramework.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IJKMediaFramework.framework; path = DDZFPlayerKit_Private/Classes/ijkplayer/IJKMediaFramework.framework; sourceTree = ""; }; + B32CB0D13462C2F2BD813A40A7C428EC /* ZFLandscapeWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLandscapeWindow.h; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeWindow.h; sourceTree = ""; }; + B336A0BF037A407DE633D95F37D0E9E6 /* ObservableConvertibleType+SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+SharedSequence.swift"; path = "RxCocoa/Traits/SharedSequence/ObservableConvertibleType+SharedSequence.swift"; sourceTree = ""; }; + B384E22DA7C49A8A7FBF977297AE3BB7 /* DDBasicControlsKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDBasicControlsKit_Private-prefix.pch"; sourceTree = ""; }; + B3A3678CD7310132EA271C69596E9969 /* UITableViewCell+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableViewCell+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITableViewCell+DDCategory/UITableViewCell+DDCategory.m"; sourceTree = ""; }; B3B0956B7EBF66A8FD677D586C9C387A /* Pods-OrderScheduling */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-OrderScheduling"; path = "libPods-OrderScheduling.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - B3BC18FBD4E26EE47204AE5C0938E3F1 /* AMapTrackHistoryObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackHistoryObj.h; path = AMapTrackKit.framework/Headers/AMapTrackHistoryObj.h; sourceTree = ""; }; - B3FEB9B2D27F3E1688FE70C9828E6B66 /* Repeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Repeat.swift; path = RxSwift/Observables/Repeat.swift; sourceTree = ""; }; - B416E3336128DEAD10FCDEC9C98D5DD0 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; - B44448047B2C467309AAAE75CE2BD4B4 /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+MJExtension.h"; path = "MJRefresh/UIView+MJExtension.h"; sourceTree = ""; }; - B4784DA17975837AC6A1260AC753942D /* Infallible+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Bind.swift"; path = "RxCocoa/Common/Infallible+Bind.swift"; sourceTree = ""; }; - B4A23E63B70F4027F910FF9823B0A5CA /* ImageDownloaderDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloaderDelegate.swift; path = Sources/Networking/ImageDownloaderDelegate.swift; sourceTree = ""; }; - B4A45C8475EEC88204B9CA00F7CDC273 /* DDProgressHUDKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDProgressHUDKit_Private.release.xcconfig; sourceTree = ""; }; - B4B59B01E852D0C48BDA0BE1085896D5 /* SectionedViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SectionedViewDataSourceType.swift; path = RxCocoa/Common/SectionedViewDataSourceType.swift; sourceTree = ""; }; - B4BDF4B29CDA5E515E318FC460748C6F /* ZLProgressView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLProgressView.swift; path = Sources/General/ZLProgressView.swift; sourceTree = ""; }; - B4CB308A06446D2A73A68F930B5D04D8 /* MABaseOverlay+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MABaseOverlay+DDCategory.h"; path = "DDMAMapKit_Private/Classes/DDMAMap/Overlay/MABaseOverlay+DDCategory.h"; sourceTree = ""; }; - B4D418578C68AF7C0F160C69F6D719A2 /* DDZFPlayerKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDZFPlayerKit_Private-umbrella.h"; sourceTree = ""; }; - B4E84B6EA2A74FDEC8600BE08CD2B986 /* EKAttributes+HapticFeedback.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+HapticFeedback.swift"; path = "Source/Model/EntryAttributes/EKAttributes+HapticFeedback.swift"; sourceTree = ""; }; - B506DA3C8289CBE81DDBAF24891B135F /* Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Driver.swift; path = RxCocoa/Traits/Driver/Driver.swift; sourceTree = ""; }; - B5133A03F61B7459A68E50BDB209BF64 /* RxWKNavigationDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxWKNavigationDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxWKNavigationDelegateProxy.swift; sourceTree = ""; }; - B570BA14A14CAAAD852EA4DAF5121084 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; - B57AC1DD2D20C0444F00D97E064EA74C /* ZFPortraitControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPortraitControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPortraitControlView.m; sourceTree = ""; }; - B58B992A585D4EB8BB2BB7DB0625FDD7 /* DDScrollView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDScrollView.swift; path = DDControlsKit_Private/Classes/DDScrollView/DDScrollView.swift; sourceTree = ""; }; - B599060CE2C52BF65174D29738625943 /* Delay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delay.swift; path = RxSwift/Observables/Delay.swift; sourceTree = ""; }; - B5B09F3B56D2F9CA22294C192F477BEB /* GraphicsContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphicsContext.swift; path = Sources/Image/GraphicsContext.swift; sourceTree = ""; }; - B5B4BC79F9C53FA8840D657CCD274548 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; - B5BD125244CCD4A25E8260D6DC26CC5D /* ClearMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClearMessage.swift; path = Source/ClearMessage.swift; sourceTree = ""; }; - B5BFBBEEDE76412C60C6A68B87FC9FAF /* Infallible+Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Operators.swift"; path = "RxSwift/Traits/Infallible/Infallible+Operators.swift"; sourceTree = ""; }; - B642534322DE9B990E24CCE3C647DE72 /* IQKeyboardManagerSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardManagerSwift.modulemap; sourceTree = ""; }; - B69057783FB74D8CBED25ABDDAF08602 /* JXCategoryIndicatorCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorCellModel.m; path = Sources/Indicator/JXCategoryIndicatorCellModel.m; sourceTree = ""; }; - B6B9EBE6340CB7AACFC41CCF5CCEE7B8 /* IQKeyboardManagerSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.release.xcconfig; sourceTree = ""; }; - B6BBAE085040BC9BC785838BCA07D8EE /* UIImageView+DDWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+DDWebCache.h"; path = "DDWebImageKit_Private/Classes/DDWebImage/UIImageView+DDWebCache.h"; sourceTree = ""; }; - B6D75EF1453E751B4B4F4DFE4FB6CBAA /* RequestInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestInterceptor.swift; path = Source/RequestInterceptor.swift; sourceTree = ""; }; - B6E95CB0B4172465AE85C68B8F650249 /* ZFUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFUtilities.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFUtilities.m; sourceTree = ""; }; - B709F1F1BA29FAD095CAAA02FCF5611D /* ZFPlayerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerController.m; sourceTree = ""; }; - B743BD461CDD7E3B19621C9A8BC31DED /* JXCategoryTitleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleView.h; path = Sources/Title/JXCategoryTitleView.h; sourceTree = ""; }; - B76415160DF7F93FF45B44C30B94F6CE /* ItemEvents.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ItemEvents.swift; path = RxCocoa/iOS/Events/ItemEvents.swift; sourceTree = ""; }; - B79DF7DF2251EF8A9A4DD8BBDB32B5D9 /* UIViewController+ZFPlayerRotation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+ZFPlayerRotation.m"; path = "DDZFPlayerKit_Private/Classes/Core/UIViewController+ZFPlayerRotation.m"; sourceTree = ""; }; - B7CD4F4F951D9C61A9AB7D1C7C9927D6 /* DisposeBag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBag.swift; path = RxSwift/Disposables/DisposeBag.swift; sourceTree = ""; }; - B80E897D71688C0FC11FEFB6C23A171D /* NSMutableParagraphStyle+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableParagraphStyle+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableParagraphStyle+DDCategory.h"; sourceTree = ""; }; - B81F0160F1F5BEF6E4F97A60367D6B7A /* AMapNaviDriveDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviDriveDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviDriveDataRepresentable.h; sourceTree = ""; }; - B824328C0D419E89836EBFA411DCEF88 /* RxCocoa-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxCocoa-prefix.pch"; sourceTree = ""; }; - B85428ACF1CDCD7FAAE71CC6BE1937AF /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackStateFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h; sourceTree = ""; }; - B892F46148AF9A03D07EDCCAF9A48ADC /* MAPointAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPointAnnotation.h; path = AMapNaviKit.framework/Headers/MAPointAnnotation.h; sourceTree = ""; }; - B8B4E170B30220ED1ABFC02EA22F60C7 /* JXCategoryIndicatorImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorImageView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorImageView.m; sourceTree = ""; }; - B93A9BB30CD31ED985932B1C23FA812F /* JXCategoryIndicatorBallView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorBallView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBallView.h; sourceTree = ""; }; - B93F032484DDAF18E61E57B25D90D36E /* AnimatedImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedImageView.swift; path = Sources/Views/AnimatedImageView.swift; sourceTree = ""; }; - B960F6DA9DBDF17B3FE9FD1535098037 /* RxCocoa-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxCocoa-umbrella.h"; sourceTree = ""; }; - B969ACE825F0987C14FA58E931DFC01B /* JXCategoryNumberView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberView.h; path = Sources/Number/JXCategoryNumberView.h; sourceTree = ""; }; - BA0391BD18FA000ED45F11F7FC0C5941 /* DDLogKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDLogKit_Private.release.xcconfig; sourceTree = ""; }; - BA1421B2932619A7D54A922FC19764AE /* UIEdgeInsets+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIEdgeInsets+Utils.swift"; path = "Source/Extensions/UIEdgeInsets+Utils.swift"; sourceTree = ""; }; - BA5E4A3C4AC2BC50FC69BD67023250B6 /* AMapTrackCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackCommonObj.h; path = AMapTrackKit.framework/Headers/AMapTrackCommonObj.h; sourceTree = ""; }; - BA9F4895D9C85F020B0DEE2FBC3C636B /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; - BAAEE5266B24A1F47CF5D571FDDF99F6 /* RequestTaskMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestTaskMap.swift; path = Source/RequestTaskMap.swift; sourceTree = ""; }; - BADD81DA718C13A84A3FED29403DA654 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; - BAE15B51CE41A8E6F222EF552783DB5C /* BRPickerStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRPickerStyle.m; path = BRPickerView/Base/BRPickerStyle.m; sourceTree = ""; }; - BAECA9F4959686F4679BAB6D36BC79D8 /* PublicKey.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublicKey.swift; path = Source/PublicKey.swift; sourceTree = ""; }; - BB0810EA23F98BB396B250D2DC45F9F6 /* ZFLandscapeWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLandscapeWindow.m; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeWindow.m; sourceTree = ""; }; + B3F3FDCE964A52521401B5CDDAE320C6 /* RxRelay-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxRelay-prefix.pch"; sourceTree = ""; }; + B401C5BDB0EE0FDF670F962EC5A6FB42 /* AsSingle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsSingle.swift; path = RxSwift/Observables/AsSingle.swift; sourceTree = ""; }; + B42B63F2DF1D596A58E39B88A4B30BB3 /* MATraceReplayOverlay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MATraceReplayOverlay.m; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlay.m; sourceTree = ""; }; + B44B4D11914CA78A741F0F38185103B3 /* ZLAlbumListController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAlbumListController.swift; path = Sources/General/ZLAlbumListController.swift; sourceTree = ""; }; + B4579EEEE8A2EC43D53BC2BF8C1FF0F9 /* DDMANaviManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMANaviManager.h; path = DDMAMapKit_Private/Classes/DDMANaviManager/DDMANaviManager.h; sourceTree = ""; }; + B45B58DD580CD6D14A8184D57ACB0066 /* MAAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotation.h; path = AMapNaviKit.framework/Headers/MAAnnotation.h; sourceTree = ""; }; + B4C0E6869F4D7E37A614613CCA52203C /* DDOCLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDOCLog.h; path = DDLogKit_Private/Classes/OCLog/DDOCLog.h; sourceTree = ""; }; + B4CFC1035E1AAE5B4465F80CB345CDC6 /* MAArcRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAArcRenderer.h; path = AMapNaviKit.framework/Headers/MAArcRenderer.h; sourceTree = ""; }; + B4D649A72A0FBB2BF64F58C6991FD1E4 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; + B545480560F1C724C5E6029068B80140 /* ControlProperty+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlProperty+Driver.swift"; path = "RxCocoa/Traits/Driver/ControlProperty+Driver.swift"; sourceTree = ""; }; + B549F00312347D99FC55765EB6A96E8C /* JXCategoryListContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryListContainerView.m; path = Sources/Common/JXCategoryListContainerView.m; sourceTree = ""; }; + B5862FB48825755A261067D1B202C048 /* ImageContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageContext.swift; path = Sources/SwiftUI/ImageContext.swift; sourceTree = ""; }; + B5A50B006A6B5F82E978EE34682CF652 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; + B5DCFD445F02011536789C989FC8049B /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoStateFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h; sourceTree = ""; }; + B5E4D45ED57A641B322684677B97618F /* BRAddressPickerView.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = BRAddressPickerView.bundle; path = BRPickerView/AddressPickerView/BRAddressPickerView.bundle; sourceTree = ""; }; + B5E4EF4863936FF08D25C19F8C4247BE /* GraphicsContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphicsContext.swift; path = Sources/Image/GraphicsContext.swift; sourceTree = ""; }; + B5FF0FF13C4F9B1ECE12A15750A6A120 /* MAParticleOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlay.h; path = AMapNaviKit.framework/Headers/MAParticleOverlay.h; sourceTree = ""; }; + B63FC9B6DA49EF325814122062E72D8F /* UIImage+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIImage+DDCategory/UIImage+DDCategory.m"; sourceTree = ""; }; + B65734589527F52728F0446B9494C731 /* DDBaseNavigationController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseNavigationController.m; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDBaseNavigationController.m; sourceTree = ""; }; + B68D04C1C21C4D6BE48F329D78E42FA5 /* DDTextField.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTextField.swift; path = DDControlsKit_Private/Classes/DDTextField/DDTextField.swift; sourceTree = ""; }; + B6B2DA1CF7575FFD6CC46E98A83B57D4 /* UIColor+JXAdd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+JXAdd.h"; path = "Sources/Common/UIColor+JXAdd.h"; sourceTree = ""; }; + B73D0E3E5524D99DD115DB1865363FEA /* DDMATrackManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMATrackManager.h; path = DDMAMapKit_Private/Classes/DDMATrackManager/DDMATrackManager.h; sourceTree = ""; }; + B787F5B42EF32084ED0FFF45762F71D9 /* RxCocoa.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxCocoa.modulemap; sourceTree = ""; }; + B7B349E830B45ADB89E33A896487E04F /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; + B7B532F03C5F88DAE2C697DBADFBC6C5 /* JXCategoryIndicatorParamsModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorParamsModel.m; path = Sources/Common/JXCategoryIndicatorParamsModel.m; sourceTree = ""; }; + B8805202893A18AFF8B3ED98F3B3E2AE /* AMapNaviRoute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRoute.h; path = AMapNaviKit.framework/Headers/AMapNaviRoute.h; sourceTree = ""; }; + B8D9026E6AD733D4F82F478DF11DF6FD /* RetryWhen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryWhen.swift; path = RxSwift/Observables/RetryWhen.swift; sourceTree = ""; }; + B92F5DE6EDC55DB5A29243A5B800516A /* PublishRelay+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PublishRelay+Signal.swift"; path = "RxCocoa/Traits/Signal/PublishRelay+Signal.swift"; sourceTree = ""; }; + B93041A630990C6AC415ED34106D1D1A /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = ""; }; + B934BF3CDC8F9E1621AA8A61C44FCC10 /* SnapKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-prefix.pch"; sourceTree = ""; }; + B93C321456BC9DB8999A599AA84293D6 /* ObservableType+PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+PrimitiveSequence.swift"; path = "RxSwift/Traits/PrimitiveSequence/ObservableType+PrimitiveSequence.swift"; sourceTree = ""; }; + B93C9B1E9CAE4AA1A81684408EBE7421 /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; + B97764B5C39055E3EC18E9F7FFB4EA4E /* UITextView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITextView+DDCategory/UITextView+DDCategory.m"; sourceTree = ""; }; + B9C2ACD62F530BEE464FCF63376EEEFE /* DDControlsKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDControlsKit_Private-dummy.m"; sourceTree = ""; }; + B9DAC7A00E6908FD3CE179B6FF564AA5 /* ImageFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageFormat.swift; path = Sources/Image/ImageFormat.swift; sourceTree = ""; }; + B9DB646C1B86D65F8404A92607E85CEA /* ZLAddPhotoCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAddPhotoCell.swift; path = Sources/General/ZLAddPhotoCell.swift; sourceTree = ""; }; + B9ECEDC5B8D579BEB835DFDEB9046C52 /* DDView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDView.swift; path = DDControlsKit_Private/Classes/DDView/DDView.swift; sourceTree = ""; }; + BA2F69C3200D9F1B94E8644DAAFA3758 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; + BA3DBAEFC53BE65259C23C0473A67C63 /* ZLPhotoPreviewAnimatedTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewAnimatedTransition.swift; path = Sources/Animation/ZLPhotoPreviewAnimatedTransition.swift; sourceTree = ""; }; + BA3F4F32285B3D7988F8318EFC6F8DBF /* DiskStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DiskStorage.swift; path = Sources/Cache/DiskStorage.swift; sourceTree = ""; }; + BA54A3F1CE6E705C6D6B771F178C2C1B /* PublishRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublishRelay.swift; path = RxRelay/PublishRelay.swift; sourceTree = ""; }; + BA919820C7DC7DC7A3EF3AF5DA84CD93 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; + BAA62652ABA1F70E3018F2937714751C /* ESTabBarItemMoreContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemMoreContentView.swift; path = Sources/ESTabBarItemMoreContentView.swift; sourceTree = ""; }; + BAC84E0E5BBDAD4F6BD6369E5E2C330A /* UIView+QuickLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+QuickLayout.swift"; path = "Source/Extensions/QuickLayout/UIView+QuickLayout.swift"; sourceTree = ""; }; + BAD862AFFAD9B19954E959C2DC9BEEB5 /* AMapURLSearch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearch.h; path = AMapFoundationKit.framework/Headers/AMapURLSearch.h; sourceTree = ""; }; + BB1BCE3AC517287CE470EFD855396EF3 /* ScheduledDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledDisposable.swift; path = RxSwift/Disposables/ScheduledDisposable.swift; sourceTree = ""; }; BB28130B0F4C47DC99D2DB9C80F70152 /* ZLPhotoBrowser */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = ZLPhotoBrowser; path = libZLPhotoBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BB41E47A6C127A8FE9CABF4AD0EE6E43 /* DDAutoUIKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDAutoUIKit_Private.modulemap; sourceTree = ""; }; - BB72A1810FDD4CCC3BE72F8F8789ACE8 /* DDColorKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDColorKit_Private.release.xcconfig; sourceTree = ""; }; - BB93A49E9634BBCEFDD4A96DB107C288 /* DDBasicControlsKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDBasicControlsKit_Private-umbrella.h"; sourceTree = ""; }; - BBB2811E9DC264F1849B265F6BD4C005 /* ZLResultModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLResultModel.swift; path = Sources/General/ZLResultModel.swift; sourceTree = ""; }; - BBBD402D4B1A0F17CBF107CF4CCAFB85 /* NSTextView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextView+Rx.swift"; path = "RxCocoa/macOS/NSTextView+Rx.swift"; sourceTree = ""; }; - BBC4A1F24EDA3263F4284B89F47B913D /* DDBasicControlsKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDBasicControlsKit_Private.debug.xcconfig; sourceTree = ""; }; - BBC83FFB7E5BAEDCC3A3C2CAD3967AF0 /* DDTimerSwiftKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDTimerSwiftKit_Private.modulemap; sourceTree = ""; }; - BBE6DE1330BA9582C66D2FE825BD96FF /* BRStringPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRStringPickerView.m; path = BRPickerView/StringPickerView/BRStringPickerView.m; sourceTree = ""; }; - BC0F31D20DAA777B08D7F0A70FBF0456 /* UIView+QLContentWrap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+QLContentWrap.swift"; path = "Source/Extensions/QuickLayout/UIView+QLContentWrap.swift"; sourceTree = ""; }; + BB2B3A2B43DD92BB22A545662ECF1246 /* JXCategoryCollectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryCollectionView.h; path = Sources/Common/JXCategoryCollectionView.h; sourceTree = ""; }; + BB8088C49642EBEE3519DC987805B43D /* ControlEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlEvent.swift; path = RxCocoa/Traits/ControlEvent.swift; sourceTree = ""; }; + BB9672EAE38B5A18C8478F003A712C51 /* DDDateKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDDateKit_Private-prefix.pch"; sourceTree = ""; }; + BBD2651733A27E35D22EDB7006D5478D /* Empty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Empty.swift; path = RxSwift/Observables/Empty.swift; sourceTree = ""; }; + BBFEDA1148137ADF1E0BD76C7144A1D8 /* EKAttributes+PopBehavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+PopBehavior.swift"; path = "Source/Model/EntryAttributes/EKAttributes+PopBehavior.swift"; sourceTree = ""; }; BC432FD48A5932251F1CAFBC4BF74894 /* RxCocoa */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RxCocoa; path = libRxCocoa.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BC71308873FDE26EABD8F4629B5B9526 /* ObserverBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverBase.swift; path = RxSwift/Observers/ObserverBase.swift; sourceTree = ""; }; - BC9283DA686D39710258BDB7370A42A9 /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateHeader.m; path = MJRefresh/Custom/Header/MJRefreshStateHeader.m; sourceTree = ""; }; - BD0143D4AE7CE50611E13A74E9CA36D2 /* UISwitch+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UISwitch+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UISwitch+DDCategory/UISwitch+DDCategory.m"; sourceTree = ""; }; - BD06A6592E10B1AA8536DD4E0F68594D /* RxPickerViewAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewAdapter.swift; path = RxCocoa/iOS/DataSources/RxPickerViewAdapter.swift; sourceTree = ""; }; - BD22009E70BD6EADE5345601C6C73233 /* Take.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Take.swift; path = RxSwift/Observables/Take.swift; sourceTree = ""; }; - BD393D5805C510AC305C4D96DC6CA7ED /* AnyObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyObserver.swift; path = RxSwift/AnyObserver.swift; sourceTree = ""; }; - BD47C7E094CE4B7D5DE6B3AC6B090994 /* UIViewController+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIViewController+ZLPhotoBrowser.swift"; sourceTree = ""; }; - BDACE794855D907CD5A4811E72866CAB /* ZLEmbedAlbumListView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEmbedAlbumListView.swift; path = Sources/General/ZLEmbedAlbumListView.swift; sourceTree = ""; }; - BDD2A5B96EF08036A2BE14C8D6B54AAB /* TakeWithPredicate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeWithPredicate.swift; path = RxSwift/Observables/TakeWithPredicate.swift; sourceTree = ""; }; - BE0947970D0446B4AA354037997C2E18 /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; - BE3A167EC879F9AFA8856D0491ED4FB3 /* AMapNavi-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapNavi-NO-IDFA.release.xcconfig"; sourceTree = ""; }; - BE5C3DED1065C379F19BC07715696400 /* ZLTextStickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLTextStickerView.swift; path = Sources/Edit/ZLTextStickerView.swift; sourceTree = ""; }; - BE5DD252BA69434899C678B2483C0DD9 /* CachedResponseHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachedResponseHandler.swift; path = Source/CachedResponseHandler.swift; sourceTree = ""; }; - BE5E8C3CB6962907C20F39684AC6B5F2 /* InvocableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableType.swift; path = RxSwift/Schedulers/Internal/InvocableType.swift; sourceTree = ""; }; - BE6A795BD6D757EA9E0FF2F23006ED62 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = RxSwift/Errors.swift; sourceTree = ""; }; - BE7829D49288BB4A2B1C3428C611EBD3 /* DDBaseTextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTextField.m; path = DDBasicControlsKit_Private/Classes/DDBaseTextField/DDBaseTextField.m; sourceTree = ""; }; - BEA8B765F481DC57F4732FDBF5EE36F9 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; - BEB7A835711843AB7EB5AF006F213F61 /* AMapNaviBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviBaseManager.h; path = AMapNaviKit.framework/Headers/AMapNaviBaseManager.h; sourceTree = ""; }; - BECAAD109009CA7B14C5C3F17516B80E /* PublishRelay+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PublishRelay+Signal.swift"; path = "RxCocoa/Traits/Signal/PublishRelay+Signal.swift"; sourceTree = ""; }; - BEE633116376F346AF7F8F6CA982F22D /* ZLPhotoUIConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoUIConfiguration.swift; path = Sources/General/ZLPhotoUIConfiguration.swift; sourceTree = ""; }; - BF6C0E62E3204699D57A676102058BEC /* BRAddressModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRAddressModel.h; path = BRPickerView/AddressPickerView/BRAddressModel.h; sourceTree = ""; }; - BFB98FE897CD0F8B97DD69E0F49442B8 /* jpush-extension-ios-2.0.1.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = "jpush-extension-ios-2.0.1.xcframework"; sourceTree = ""; }; - BFE98D61E00FBF2F1AC83471FCC00012 /* RxTableViewDataSourcePrefetchingProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourcePrefetchingProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDataSourcePrefetchingProxy.swift; sourceTree = ""; }; - C0181110767F7B26C86A5CD95E9D0328 /* ConstraintMakerFinalizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerFinalizable.swift; path = Sources/ConstraintMakerFinalizable.swift; sourceTree = ""; }; - C060210364045E3C55FC24892C50B322 /* NSBundle+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSBundle+DDCategory/NSBundle+DDCategory.m"; sourceTree = ""; }; - C0B26C965B86D3C1D65541209625A838 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; - C0CC88DEAD39E5F951966CC66C8E0D87 /* DDBaseViewController.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = DDBaseViewController.xcassets; path = DDBasicControlsKit_Private/Assets/DDBaseViewController.xcassets; sourceTree = ""; }; - C0CDD553F3C9F50C5FF0BC701343181D /* IQTitleBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTitleBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQTitleBarButtonItem.swift; sourceTree = ""; }; - C0D07D99309044AA88637A2C416C0875 /* IQKeyboardManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManager.swift; path = IQKeyboardManagerSwift/IQKeyboardManager.swift; sourceTree = ""; }; - C0DD7AF9A83D7CE2F42E45E586A80822 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; - C0F39A19B87F0AADE9A36F8C092E68A9 /* RxPickerViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxPickerViewDelegateProxy.swift; sourceTree = ""; }; - C11C30399545FCCDA38C3426C95032C5 /* ZFPlayerLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerLogManager.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerLogManager.m; sourceTree = ""; }; - C120D78DD89D582A5405DA3F63D5932E /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateHeader.h; path = MJRefresh/Custom/Header/MJRefreshStateHeader.h; sourceTree = ""; }; - C12152C1D82ACAD0AE69FF009CFA194E /* AMapSearchObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchObj.h; path = AMapSearchKit.framework/Headers/AMapSearchObj.h; sourceTree = ""; }; - C12E4B65F0F161EB8E92BA3F5B6D43E9 /* JXCategoryCollectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryCollectionView.m; path = Sources/Common/JXCategoryCollectionView.m; sourceTree = ""; }; - C139AE58D7913987FB4420842FA7DE6A /* X509Certificate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = X509Certificate.swift; path = Source/X509Certificate.swift; sourceTree = ""; }; - C151E9609F3F8263902C2A465EE7AAF8 /* UIBarButtonItem+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIBarButtonItem+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIBarButtonItem+DDCategory/UIBarButtonItem+DDCategory.h"; sourceTree = ""; }; - C15F2F15A6C86BD8CC2F988F189F47D4 /* JXCategoryTitleVerticalZoomView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomView.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomView.m; sourceTree = ""; }; - C16BCEBF8B14C05C1C168CF5066D490F /* UIGestureRecognizer+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIGestureRecognizer+Rx.swift"; path = "RxCocoa/iOS/UIGestureRecognizer+Rx.swift"; sourceTree = ""; }; - C16CFFA10E10AC68D34D9C45D8627AE5 /* DDWebImageKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDWebImageKit_Private.release.xcconfig; sourceTree = ""; }; - C17A699C03E45BB7F13E926A3DFAC928 /* DelaySubscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelaySubscription.swift; path = RxSwift/Observables/DelaySubscription.swift; sourceTree = ""; }; - C1BF1F9F27903435E44899E32F04FD8A /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; - C1C63D3300052B1D92A1FBB7216FCC29 /* DDPersistenceKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDPersistenceKit_Private-umbrella.h"; sourceTree = ""; }; - C1D32C526B817BFAF0AB989D752D5936 /* SnapKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.release.xcconfig; sourceTree = ""; }; - C1DD28DA6F2BDBEE79793A9713DD757B /* ZFPlayerControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPlayerControlView.h; sourceTree = ""; }; - C205040D1E5A8BCE3926353BCD81A03B /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; - C21008FE97D98B3C3F38696A205F9BD8 /* DDBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseView.m; path = DDBasicControlsKit_Private/Classes/DDBaseView/DDBaseView.m; sourceTree = ""; }; - C28ADE09E86BBD513D57E6FAEF8F4BF4 /* ESTabBarItemMoreContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemMoreContentView.swift; path = Sources/ESTabBarItemMoreContentView.swift; sourceTree = ""; }; - C2A9A6E678A1FB4016A2A4EB7243735A /* DDUtilsSwiftKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDUtilsSwiftKit_Private.modulemap; sourceTree = ""; }; - C2B5BE12966E4BFC22AE6A701FD66E8A /* JPush.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPush.release.xcconfig; sourceTree = ""; }; - C2D65E4D24B7B4384EE846067ACC29B2 /* DDAudioPlayerKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDAudioPlayerKit_Private-prefix.pch"; sourceTree = ""; }; - C300C14B5A2FF321FCDA01B649AA7383 /* DDBaseImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseImage.h; path = DDBasicControlsKit_Private/Classes/DDBaseImage/DDBaseImage.h; sourceTree = ""; }; - C328946E28BB6CE7648ED67BB516A3EE /* UITabBarController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITabBarController+Rx.swift"; path = "RxCocoa/iOS/UITabBarController+Rx.swift"; sourceTree = ""; }; - C360CBF6B0E6AD7F01957675C510BE89 /* UIColor+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIColor+ZLPhotoBrowser.swift"; sourceTree = ""; }; - C3861B49B9CDC8661EAD6383D750FB37 /* RxTabBarDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTabBarDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTabBarDelegateProxy.swift; sourceTree = ""; }; - C388C572C414DE2530573984668DEE32 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = ""; }; + BCA2508381061E8227A93838DC1FE52C /* Bugly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Bugly.release.xcconfig; sourceTree = ""; }; + BCD19CFE18A33C6C4726C8B7A290E134 /* ZLPhotoBrowser.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = ZLPhotoBrowser.bundle; path = Sources/ZLPhotoBrowser.bundle; sourceTree = ""; }; + BCEE8BAC139BD80F60365DAF802BF8AE /* DDColorKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDColorKit_Private-umbrella.h"; sourceTree = ""; }; + BD0B5C824276F88E52D0060A73CDB57D /* IQKeyboardManagerSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.release.xcconfig; sourceTree = ""; }; + BD8C0BEA44A3F19AB254339CA52001DC /* MKAnnotationView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MKAnnotationView+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImageMapKit/MapKit/MKAnnotationView+WebCache.h"; sourceTree = ""; }; + BD9259973A3D723B28D98BAC298321D0 /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalHeader.m; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.m; sourceTree = ""; }; + BD9D667C94A007216D3FF3F2869CD15B /* ConstraintOffsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintOffsetTarget.swift; path = Sources/ConstraintOffsetTarget.swift; sourceTree = ""; }; + BE39C38E34567D084D08F3F203E57E2E /* DDNetworkingOfAlamofireKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDNetworkingOfAlamofireKit_Private.debug.xcconfig; sourceTree = ""; }; + BE42E9A9BCAECDCD62405C4D535D6B48 /* ClearMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClearMessage.swift; path = Source/ClearMessage.swift; sourceTree = ""; }; + BE54042610CD5021652EE0303692E65D /* Concat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concat.swift; path = RxSwift/Observables/Concat.swift; sourceTree = ""; }; + BE5F512A605C45E66D7CAB4121CEC4ED /* MJRefreshNormalTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.m; sourceTree = ""; }; + BE65C9E6950662503F0751D9A21A4A82 /* UIColor+Hue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+Hue.swift"; path = "DDColorKit_Private/Classes/UIColor+Hue.swift"; sourceTree = ""; }; + BE77F60FDAFF573C58673D232899DD75 /* DDAutoUIKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDAutoUIKit_Private-prefix.pch"; sourceTree = ""; }; + BE8155B9BA8C237438676C3367DBA8BD /* DDNavigationController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDNavigationController.swift; path = DDControlsKit_Private/Classes/DDNavigationController/DDNavigationController.swift; sourceTree = ""; }; + BF697E5581829F53A837CA4F94F1C2B3 /* First.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = First.swift; path = RxSwift/Observables/First.swift; sourceTree = ""; }; + BF835AF874C679A92945FD3680D97C6B /* SwiftEntryKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftEntryKit-dummy.m"; sourceTree = ""; }; + BFA0B4ADBA7A655A623B55A77AB3F393 /* UIApplication+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+Rx.swift"; path = "RxCocoa/iOS/UIApplication+Rx.swift"; sourceTree = ""; }; + C058BCFE672D5791D938C8E04CD9BA55 /* AutoUI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutoUI.swift; path = DDAutoUIKit_Private/Classes/AutoUI.swift; sourceTree = ""; }; + C0620E30D560801C592DCBDEE95B78BE /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = DDWebImageKit_Private/Classes/SDWebImage/SDWebImage.h; sourceTree = ""; }; + C08648DEED9804F089D41B684A7D1BCD /* DDFontKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDFontKit_Private.release.xcconfig; sourceTree = ""; }; + C097AFF1B8C2C891B31FD8EFD9BC3A35 /* Scan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Scan.swift; path = RxSwift/Observables/Scan.swift; sourceTree = ""; }; + C0BB1D2E902F844CB3929719A7737AEB /* JXCategoryIndicatorBallView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorBallView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBallView.m; sourceTree = ""; }; + C0C4F5D3B0E9E2DAC945CB3EE359B48E /* JXCategoryView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXCategoryView.release.xcconfig; sourceTree = ""; }; + C1131D66AFE877FB9229D8A0A587BB9C /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; + C121B61163D889285F9E307ADE5EAFA8 /* DisposeBag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBag.swift; path = RxSwift/Disposables/DisposeBag.swift; sourceTree = ""; }; + C17C898D9A47EE5A5C2A1354F9B9A906 /* CurrentThreadScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurrentThreadScheduler.swift; path = RxSwift/Schedulers/CurrentThreadScheduler.swift; sourceTree = ""; }; + C1AAA50E3ECC82DE8B66ABCC558B4233 /* BRPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRPickerView.h; path = BRPickerView/BRPickerView.h; sourceTree = ""; }; + C1BD4BCBFF2205C91FBE2FBF1E963ACA /* Disposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposable.swift; path = RxSwift/Disposable.swift; sourceTree = ""; }; + C1D9CBF421F9E05D47EBAA021E5E6BAC /* MACustomBuildingOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomBuildingOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MACustomBuildingOverlayRenderer.h; sourceTree = ""; }; + C1F5F806AFCD503624E55B19A123B2BA /* AMapNavi-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapNavi-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; + C1F9F1C286C0F8A5553D967D22C70702 /* DDCategoryKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDCategoryKit_Private.release.xcconfig; sourceTree = ""; }; + C207EA960C3E98E377D11BE272564828 /* AMapFoundationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapFoundationKit.framework; sourceTree = ""; }; + C2316927F6CBDF5DA591A652E5D3A60F /* ZLPhotoUIConfiguration+Chaining.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ZLPhotoUIConfiguration+Chaining.swift"; path = "Sources/General/ZLPhotoUIConfiguration+Chaining.swift"; sourceTree = ""; }; + C2618B28A7F9A7728D42E28F08EC3888 /* ItemEvents.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ItemEvents.swift; path = RxCocoa/iOS/Events/ItemEvents.swift; sourceTree = ""; }; + C2F1D29858616113ACA6B53DAB94F499 /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; + C30127D60AA841A915A8039BB99FD886 /* MATraceReplayOverlay+Addition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MATraceReplayOverlay+Addition.h"; path = "DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlay+Addition.h"; sourceTree = ""; }; + C31BD0A86D6F1766685BA2FF1AD9144E /* Sink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sink.swift; path = RxSwift/Observables/Sink.swift; sourceTree = ""; }; + C34D216497732A44544F47481406400C /* CompactMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompactMap.swift; path = RxSwift/Observables/CompactMap.swift; sourceTree = ""; }; + C35B805FA8F697BD5BF39C8B592CA1A4 /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; + C3679818231CE0E9FCBA514CCAC0D3F1 /* UIButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Kingfisher.swift"; path = "Sources/Extensions/UIButton+Kingfisher.swift"; sourceTree = ""; }; + C3A3027F3A887D54F8A5D4C8DBEA80A1 /* ZFLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLoadingView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLoadingView.h; sourceTree = ""; }; C3A46B03C308EEEB11F2A62BA5D2E8BE /* JXCategoryView */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = JXCategoryView; path = libJXCategoryView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C3B3E3DC8E17D08C672F42E30E8FE2A3 /* AMapTrackTrackObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackTrackObj.h; path = AMapTrackKit.framework/Headers/AMapTrackTrackObj.h; sourceTree = ""; }; - C3BD0964A6F8D1D6F6A8DDC56EEC9402 /* ApplicationInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ApplicationInfo.swift; path = DDUtilsSwiftKit_Private/Classes/ApplicationInfo/ApplicationInfo.swift; sourceTree = ""; }; - C3C0208E9881890347178C31FE5251F0 /* MAOfflineItemCommonCity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemCommonCity.h; path = AMapNaviKit.framework/Headers/MAOfflineItemCommonCity.h; sourceTree = ""; }; + C3A506D4AE4A293357B49D9AD000A532 /* ConstraintRelation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelation.swift; path = Sources/ConstraintRelation.swift; sourceTree = ""; }; + C3BFBF760F1C3A2D7641DA056C02D903 /* RxSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwift.debug.xcconfig; sourceTree = ""; }; + C3EB24F4485698DF0313E5B14C03D447 /* MABaseOverlay+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "MABaseOverlay+DDCategory.m"; path = "DDMAMapKit_Private/Classes/DDMAMap/Overlay/MABaseOverlay+DDCategory.m"; sourceTree = ""; }; + C3F06F4E5B677529EA469005518F6F78 /* BRResultModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRResultModel.h; path = BRPickerView/StringPickerView/BRResultModel.h; sourceTree = ""; }; C3F44C782D64D7EB20B61CE3844EBFAD /* Kingfisher */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = Kingfisher; path = libKingfisher.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C40FF4E2E866ECD39362F72377471EB8 /* ControlEvent+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlEvent+Signal.swift"; path = "RxCocoa/Traits/Signal/ControlEvent+Signal.swift"; sourceTree = ""; }; - C4654F192727322A5B6B3618A117EC3E /* EKRatingSymbolsContainerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingSymbolsContainerView.swift; path = Source/MessageViews/MessagesUtils/EKRatingSymbolsContainerView.swift; sourceTree = ""; }; - C46C761650FA1E617B103D44DA211211 /* Kingfisher-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-prefix.pch"; sourceTree = ""; }; - C4FA30701774D87202960971019C48C4 /* BRPickerView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BRPickerView-dummy.m"; sourceTree = ""; }; - C4FB019431EDA44040E819530DFEC690 /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/DispatchQueue+Alamofire.swift"; sourceTree = ""; }; - C51DCD033EC4E5306D57EFE8A9875BB9 /* IQInvocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQInvocation.swift; path = IQKeyboardManagerSwift/IQToolbar/IQInvocation.swift; sourceTree = ""; }; - C53F82D0FD922169F23C0581E8431009 /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = ""; }; - C5ABA828B468E724249D9BFEDCCDD082 /* JXCategoryIndicatorCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorCell.h; path = Sources/Indicator/JXCategoryIndicatorCell.h; sourceTree = ""; }; - C5D2643257262C300B029ED4BF866DAA /* EKProcessingNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKProcessingNoteMessageView.swift; path = Source/MessageViews/Notes/EKProcessingNoteMessageView.swift; sourceTree = ""; }; - C5E42D0B25C03CE671ABDE16E5377BE4 /* UIPickerView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIPickerView+Rx.swift"; path = "RxCocoa/iOS/UIPickerView+Rx.swift"; sourceTree = ""; }; - C5E6E3CA4A8E52A62926BBB0C348C335 /* ZFPlayerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerView.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerView.m; sourceTree = ""; }; - C63B20DD5CDF937F94ECB7D6B393EE91 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; - C67C6724F31CC33E0E6006D76AE4A7F2 /* JXCategoryBaseCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseCell.m; path = Sources/Base/JXCategoryBaseCell.m; sourceTree = ""; }; - C6A774B057A711719B7985ECF2457F71 /* BRPickerView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BRPickerView-umbrella.h"; sourceTree = ""; }; - C6CD56560520874C485B6D286D6DF07B /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; - C77EAD8BE8D24538219A854747B554D8 /* DDFontKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDFontKit_Private-umbrella.h"; sourceTree = ""; }; - C7A2C1CEE4F24D36F16B60F5E6F88E91 /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = ""; }; - C7D3CF07712285D66BD1473D170DF56C /* MAUserLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAUserLocation.h; path = AMapNaviKit.framework/Headers/MAUserLocation.h; sourceTree = ""; }; - C80B46B81E9F8AD4793199E559EA439E /* UIScrollView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIScrollView+DDCategory/UIScrollView+DDCategory.m"; sourceTree = ""; }; - C8315FE5AA39135DA77E2D07472BE719 /* KF.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KF.swift; path = Sources/General/KF.swift; sourceTree = ""; }; - C842FDBBDB7AC6BB51DD45499CB83DFD /* AsyncSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncSubject.swift; path = RxSwift/Subjects/AsyncSubject.swift; sourceTree = ""; }; - C85ADE394FBB5DF16407098375D223AB /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; - C88E3188BA7AF942D1FA7C974083D95F /* _RXKVOObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXKVOObserver.h; path = RxCocoa/Runtime/include/_RXKVOObserver.h; sourceTree = ""; }; - C89C07CF28194AA10DED3CF6E582FD79 /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Alamofire.modulemap; sourceTree = ""; }; - C8C1BD92F4FFFE77CBCF4697A475E103 /* EKAttributes+Duration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Duration.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Duration.swift"; sourceTree = ""; }; - C8E0BEE7BA06A00AFFDAF9DDAFC4BF82 /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = ""; }; - C8ED51CB709A5C22E282B9EA5A763792 /* ImageView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ImageView+Kingfisher.swift"; path = "Sources/Extensions/ImageView+Kingfisher.swift"; sourceTree = ""; }; - C905A081820701114CFF2982FF8F0597 /* SnapKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SnapKit.modulemap; sourceTree = ""; }; - C97E9525A94CDAA9F9FD8C7A3E12D63F /* Resource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Resource.swift; path = Sources/General/ImageSource/Resource.swift; sourceTree = ""; }; - C9BD42BD673516F1481F3B0A1F54144A /* IQKeyboardManager+UIKeyboardNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+UIKeyboardNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+UIKeyboardNotification.swift"; sourceTree = ""; }; - CA0A74178538170BF7A45834883DDEF7 /* RequestCompression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestCompression.swift; path = Source/RequestCompression.swift; sourceTree = ""; }; - CA160D9C840C9C92BDE46D95F085F7CF /* DDControlsKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDControlsKit_Private.modulemap; sourceTree = ""; }; - CA25A894AF5692143BA3754D55BAE255 /* ZLPhotoPreviewSheet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewSheet.swift; path = Sources/General/ZLPhotoPreviewSheet.swift; sourceTree = ""; }; - CA341672AD12C91E1D680EEACB407F91 /* SwiftyRSA.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwiftyRSA.h; path = Source/SwiftyRSA.h; sourceTree = ""; }; - CA4C80C28A1D29CF0675B0273176FB29 /* DDMALocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMALocationManager.h; path = DDMAMapKit_Private/Classes/DDMALocation/DDMALocationManager.h; sourceTree = ""; }; - CA85C09EA5AF001F5FF14B93BBC14082 /* DDNavigationController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDNavigationController.swift; path = DDControlsKit_Private/Classes/DDNavigationController/DDNavigationController.swift; sourceTree = ""; }; - CABD0292800696BF629AE9D17BEF0C66 /* UIFont+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIFont+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIFont+ZLPhotoBrowser.swift"; sourceTree = ""; }; - CAF84A0D6E4DAD25836F4C3BB1C4D978 /* UISearchBar+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISearchBar+Rx.swift"; path = "RxCocoa/iOS/UISearchBar+Rx.swift"; sourceTree = ""; }; - CB0D6EDBBAFBAB3C0412FF4A4299B71D /* ImageProgressive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProgressive.swift; path = Sources/Image/ImageProgressive.swift; sourceTree = ""; }; - CB4D065BD3993C63341C9CF0FF891C6B /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoGifFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h; sourceTree = ""; }; - CB7E977B6E943E626C7977D2A1745257 /* JXCategoryIndicatorCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorCellModel.h; path = Sources/Indicator/JXCategoryIndicatorCellModel.h; sourceTree = ""; }; - CB822E6C500EE56E8F7B092F27EB2FD8 /* JXCategoryIndicatorParamsModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorParamsModel.h; path = Sources/Common/JXCategoryIndicatorParamsModel.h; sourceTree = ""; }; - CBC007B06F3B82EC70390638365C0E32 /* MATileOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATileOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MATileOverlayRenderer.h; sourceTree = ""; }; - CBE79F1DEB908F14820EA89EAEEA020D /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDNetworkingOfAlamofireKit_Private.release.xcconfig; sourceTree = ""; }; + C4350C29094821EFDC1B06A3C11183F2 /* RxSearchBarDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxSearchBarDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxSearchBarDelegateProxy.swift; sourceTree = ""; }; + C4A993DBC2B198CC671EA3E4BE861FD4 /* NSObject+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSObject+DDCategory/NSObject+DDCategory.h"; sourceTree = ""; }; + C4CF7E3F8F11577FB662D7839D4CEA2D /* DDAutoUIKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDAutoUIKit_Private-umbrella.h"; sourceTree = ""; }; + C532DF0FD239F67E33BC7009890811BD /* BRPickerView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BRPickerView.release.xcconfig; sourceTree = ""; }; + C5A4AABC29A6330BDFCFA1AFAE3B5213 /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; + C5BABAD0DB889E399D6337FF47931FC4 /* Sample.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sample.swift; path = RxSwift/Observables/Sample.swift; sourceTree = ""; }; + C5C437B57F6267154B51FA60533A916D /* JPush-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "JPush-xcframeworks.sh"; sourceTree = ""; }; + C5E1D11043291F9B266581EBA47576CF /* IQKeyboardManager+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Position.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Position.swift"; sourceTree = ""; }; + C6167FB726839DC880D86CDA93B64D10 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; + C61B9725A7675018476602AD4FB847DE /* ZLPhotoUIConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoUIConfiguration.swift; path = Sources/General/ZLPhotoUIConfiguration.swift; sourceTree = ""; }; + C6370465DE051DC741FEEC5C865F2540 /* UICollectionView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UICollectionView+DDCategory/UICollectionView+DDCategory.m"; sourceTree = ""; }; + C66A1EC622EB89251B891115E47799E7 /* UIApplication+EKAppearance.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+EKAppearance.swift"; path = "Source/Extensions/UIApplication+EKAppearance.swift"; sourceTree = ""; }; + C67827622B2E2B8F80571936FA2D77E8 /* String+MD5.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+MD5.swift"; path = "Sources/Utility/String+MD5.swift"; sourceTree = ""; }; + C6AD4B383AA40248F0A4DCFB58420DD4 /* ConstraintLayoutGuide+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintLayoutGuide+Extensions.swift"; path = "Sources/ConstraintLayoutGuide+Extensions.swift"; sourceTree = ""; }; + C6C8D677B166F29318F8622DE9A027D8 /* AsyncSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncSubject.swift; path = RxSwift/Subjects/AsyncSubject.swift; sourceTree = ""; }; + C6ECB131B239110E605B70CEA74056DC /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Alamofire.modulemap; sourceTree = ""; }; + C6F011A6567C1FA74D49BE5B3BC046E1 /* AMapURLSearchType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearchType.h; path = AMapFoundationKit.framework/Headers/AMapURLSearchType.h; sourceTree = ""; }; + C7029C52AFA58A03BECCD586864EC830 /* ConstraintPriorityTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriorityTarget.swift; path = Sources/ConstraintPriorityTarget.swift; sourceTree = ""; }; + C7811454E721A5FD45CC5C7D90661712 /* EKAlertMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAlertMessage.swift; path = Source/Model/EKAlertMessage.swift; sourceTree = ""; }; + C7AFB2C050969535553B023673BFA656 /* SwiftEntryKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftEntryKit.release.xcconfig; sourceTree = ""; }; + C8089DA26BABA8964F548DF76BBE1F25 /* MAHeatMapVectorOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorOverlay.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorOverlay.h; sourceTree = ""; }; + C81D53F63D09D4F31DA50B009D962D36 /* BRDatePickerView+BR.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "BRDatePickerView+BR.m"; path = "BRPickerView/DatePickerView/BRDatePickerView+BR.m"; sourceTree = ""; }; + C85ACE659AB892043964E240817ABE84 /* ConstraintMakerRelatable+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintMakerRelatable+Extensions.swift"; path = "Sources/ConstraintMakerRelatable+Extensions.swift"; sourceTree = ""; }; + C89ADCB72663A7461E23819200652DC9 /* AMapNavi-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapNavi-NO-IDFA.release.xcconfig"; sourceTree = ""; }; + C8A8489140566ECA8EDA4D728B332DF4 /* DDColorKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDColorKit_Private.modulemap; sourceTree = ""; }; + C8B6185261C4A1F47B8494904765E50B /* EKNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKNoteMessageView.swift; path = Source/MessageViews/Notes/EKNoteMessageView.swift; sourceTree = ""; }; + C8D1AED708A9B8A37C19E3698B4A9147 /* JXCategoryIndicatorDotLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorDotLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorDotLineView.h; sourceTree = ""; }; + C8F85005C6DF90570A1583DDB15CA994 /* DDControlsKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDControlsKit_Private-prefix.pch"; sourceTree = ""; }; + C9422BCE04EF9FDF7731F727B1871ACC /* RxCollectionViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxCollectionViewDataSourceType.swift; sourceTree = ""; }; + C9589DB5D2D94EE3C30777E55FE0137D /* NSThread+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSThread+DDCategory.m"; path = "DDCategoryKit_Private/Classes/NSThread+DDCategory/NSThread+DDCategory.m"; sourceTree = ""; }; + C977D17E853DDA265702B6C3135F7F62 /* BRPickerView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = BRPickerView.modulemap; sourceTree = ""; }; + C9784281ACB2D7C2250D7EE2F61CD434 /* Buffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Buffer.swift; path = RxSwift/Observables/Buffer.swift; sourceTree = ""; }; + C989A5E3A0C940065085747D06AF2C15 /* Infallible+Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Operators.swift"; path = "RxSwift/Traits/Infallible/Infallible+Operators.swift"; sourceTree = ""; }; + C99EDFB2E551B870D8E8300A27ED9D3C /* DDAudioPlayerKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDAudioPlayerKit_Private-umbrella.h"; sourceTree = ""; }; + C99EFD48AE56A50A5C6B8A95616C2B28 /* RxCollectionViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDataSourceProxy.swift; sourceTree = ""; }; + C99FE6BA7DFE2B09AFD87A8B9384095D /* _RXObjCRuntime.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXObjCRuntime.m; path = RxCocoa/Runtime/_RXObjCRuntime.m; sourceTree = ""; }; + C9A889FED6B708012C5F48904D4C41F3 /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; + C9B0FCB9F422D0D1CC931B29ADC21625 /* IQUIView+Hierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+Hierarchy.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIView+Hierarchy.swift"; sourceTree = ""; }; + C9B717FA80B8357845D70F278EE7C0E2 /* ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoBrowser.swift; path = Sources/General/ZLPhotoBrowser.swift; sourceTree = ""; }; + C9D1E64F705B9EE7B1190E071B22C188 /* ZLCameraConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCameraConfiguration.swift; path = Sources/General/ZLCameraConfiguration.swift; sourceTree = ""; }; + C9FA719873C60C24D39842F2458992B3 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; + CA29CA7B6160A23E956BC4624FCA6B9D /* DDBaseTextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTextField.h; path = DDBasicControlsKit_Private/Classes/DDBaseTextField/DDBaseTextField.h; sourceTree = ""; }; + CA5DAAA25AE8EDD19A8969327550AD00 /* DDUtilsSwiftKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDUtilsSwiftKit_Private.release.xcconfig; sourceTree = ""; }; + CA6DFF43188781594F72C45869D3D810 /* UIViewController+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIViewController+DDCategory/UIViewController+DDCategory.m"; sourceTree = ""; }; + CA786B47E39D1946459AB3336473EA7B /* UIImageView+ZFCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+ZFCache.m"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIImageView+ZFCache.m"; sourceTree = ""; }; + CA7DA7ABF6E0DD9E4C0BD8433C515A3D /* AMapTrack-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapTrack-NO-IDFA.release.xcconfig"; sourceTree = ""; }; + CA7E506535DBB32097276C5F234E50C4 /* DDBaseViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseViewController.h; path = DDBasicControlsKit_Private/Classes/DDBaseViewController/DDBaseViewController.h; sourceTree = ""; }; + CADC2F0323519D2B1EC5039CA5A6E625 /* DDMAMapKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDMAMapKit_Private.debug.xcconfig; sourceTree = ""; }; + CAE61E46CD80D963B04B6CED2CF096C6 /* SwiftyRSA.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwiftyRSA.h; path = Source/SwiftyRSA.h; sourceTree = ""; }; + CAEF301C32F7A78E006E5B503606BA42 /* UITableView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITableView+Rx.swift"; path = "RxCocoa/iOS/UITableView+Rx.swift"; sourceTree = ""; }; + CB3908E3273D37090384F2B128AD30F2 /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateHeader.m; path = MJRefresh/Custom/Header/MJRefreshStateHeader.m; sourceTree = ""; }; + CBDB9A6ED22F3A355A3D6DED3FD9B36B /* JXCategoryNumberView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberView.m; path = Sources/Number/JXCategoryNumberView.m; sourceTree = ""; }; + CC03BCC7B94731E48B755D29B5213399 /* JXCategoryImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageView.m; path = Sources/Image/JXCategoryImageView.m; sourceTree = ""; }; + CC60699842D35C2352504CA8FDA577D0 /* AMapLocationKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationKit.h; path = AMapLocationKit.framework/Headers/AMapLocationKit.h; sourceTree = ""; }; + CC631F3699254A910FFE708DB2E5C67A /* KVORepresentable+CoreGraphics.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KVORepresentable+CoreGraphics.swift"; path = "RxCocoa/Foundation/KVORepresentable+CoreGraphics.swift"; sourceTree = ""; }; + CC8E283F6E8225E91F6D44784460A8D5 /* ZFPlayerGestureControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerGestureControl.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerGestureControl.h; sourceTree = ""; }; CCA25F5644BF0246ABFFF775553FEEAE /* Pods-OrderScheduling.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OrderScheduling.debug.xcconfig"; sourceTree = ""; }; - CCA7A07265A140074AF6831472C5F5E1 /* AMapURLSearchConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearchConfig.h; path = AMapFoundationKit.framework/Headers/AMapURLSearchConfig.h; sourceTree = ""; }; - CCBEFE7EFDBF5BA4C9D550781394D569 /* ZLClipImageViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLClipImageViewController.swift; path = Sources/Edit/ZLClipImageViewController.swift; sourceTree = ""; }; - CD0710BE17B7076DE0C5064A4556B118 /* ZFReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFReachabilityManager.h; path = DDZFPlayerKit_Private/Classes/Core/ZFReachabilityManager.h; sourceTree = ""; }; - CD08E3FDD80F9FFC9C233F07CB1475AF /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = ""; }; - CD4988A73971BD15618F043A0E1FCD74 /* AMapSearchError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchError.h; path = AMapSearchKit.framework/Headers/AMapSearchError.h; sourceTree = ""; }; - CD7470709DB5A2CACA7A5717325C23C5 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; - CD7BCF2123C7DEE80FBC20A8935F56FD /* AMapNaviCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCommonObj.h; path = AMapNaviKit.framework/Headers/AMapNaviCommonObj.h; sourceTree = ""; }; - CE2D2AED7DDB9D52895804D55B53C874 /* NotificationCenter+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NotificationCenter+Rx.swift"; path = "RxCocoa/Foundation/NotificationCenter+Rx.swift"; sourceTree = ""; }; - CE46837814917E3C3A303BE9E4962FF0 /* Bugly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Bugly.debug.xcconfig; sourceTree = ""; }; - CE559017FE5BEB1B86DD1ED2FF6E4C7D /* DDToastKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDToastKit_Private-umbrella.h"; sourceTree = ""; }; - CE78DE063032C13CA169F0D4E35D0C06 /* DDCategoryKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDCategoryKit_Private.release.xcconfig; sourceTree = ""; }; - CE8C07FB0C9157E9EA4C65E1ADD0DA58 /* CurrentThreadScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurrentThreadScheduler.swift; path = RxSwift/Schedulers/CurrentThreadScheduler.swift; sourceTree = ""; }; - CE9750A886819C0851AD8E9C9CB07B10 /* AMapGeoFenceRegionObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceRegionObj.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceRegionObj.h; sourceTree = ""; }; - CEA42E366894AB71108DF72F7DE96837 /* NSTextField+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextField+Rx.swift"; path = "RxCocoa/macOS/NSTextField+Rx.swift"; sourceTree = ""; }; - CEB242466FB5AFE798843B12D9066C3A /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; - CEE53DC88755CA53BD5211B8C2D625CD /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = ""; }; - CF076568CD19BB280A4E2AE5F00A9E81 /* JXCategoryTitleImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageView.h; path = Sources/TitleImage/JXCategoryTitleImageView.h; sourceTree = ""; }; - CF0C22AAC879EB5882F4EC33B4AD683F /* DDUtilsSwiftKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDUtilsSwiftKit_Private-prefix.pch"; sourceTree = ""; }; - CF638130DB223CA073CCEFF8B7377E46 /* Sample.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sample.swift; path = RxSwift/Observables/Sample.swift; sourceTree = ""; }; - CF86069B5E64D44181476909B6BCB38E /* DDViewControllerAnimatedTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDViewControllerAnimatedTransition.h; path = DDBasicControlsKit_Private/Classes/DDBaseAnimation/DDTransitionAnimation/DDViewControllerAnimatedTransition.h; sourceTree = ""; }; - CFB658FC4FDDCDD612FC03C10F5EC8A5 /* BRBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRBaseView.m; path = BRPickerView/Base/BRBaseView.m; sourceTree = ""; }; - D01D009193A941A003AC0517D76DE454 /* GIFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GIFAnimatedImage.swift; path = Sources/Image/GIFAnimatedImage.swift; sourceTree = ""; }; - D05F0F35506B1255CD38C56E37E93813 /* CallbackQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CallbackQueue.swift; path = Sources/Utility/CallbackQueue.swift; sourceTree = ""; }; - D07B045DEB70E217C83F4D2724D77EF0 /* BinaryDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BinaryDisposable.swift; path = RxSwift/Disposables/BinaryDisposable.swift; sourceTree = ""; }; - D0BD2BEEDF911D1C192487DDFA65BCBD /* ConstraintMakerRelatable+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintMakerRelatable+Extensions.swift"; path = "Sources/ConstraintMakerRelatable+Extensions.swift"; sourceTree = ""; }; - D0EEC141105B6EE53CEDC1EDF464374C /* JXCategoryIndicatorParamsModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorParamsModel.m; path = Sources/Common/JXCategoryIndicatorParamsModel.m; sourceTree = ""; }; - D10392DBBF45DE4D23794FCCB748DE71 /* TVMonogramView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TVMonogramView+Kingfisher.swift"; path = "Sources/Extensions/TVMonogramView+Kingfisher.swift"; sourceTree = ""; }; - D123B4BE07B72930183427DA4699782C /* EKStyleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKStyleView.swift; path = Source/Infra/EKStyleView.swift; sourceTree = ""; }; + CCD5719E35CDF09E7221B6BF27CD9FC5 /* MJRefreshStateTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.h; sourceTree = ""; }; + CCDD405D2CACCD34CB88DC13A028528E /* MATraceLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceLocation.h; path = AMapNaviKit.framework/Headers/MATraceLocation.h; sourceTree = ""; }; + CD3F752558AFD746CCE24A9B29DCD333 /* ZLClipImageViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLClipImageViewController.swift; path = Sources/Edit/ZLClipImageViewController.swift; sourceTree = ""; }; + CD59367B27600004E8CC3E36A4116E35 /* BRPickerView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BRPickerView-dummy.m"; sourceTree = ""; }; + CD657A088DAEA5B486197B7757B6757D /* MATouchPoi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATouchPoi.h; path = AMapNaviKit.framework/Headers/MATouchPoi.h; sourceTree = ""; }; + CD6C5B5712F24543E9686ACF3F7180E0 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; + CDA2C01C5C9E53D268788C255E2BC642 /* DriveRouteCustomAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DriveRouteCustomAnnotation.h; path = DDMAMapKit_Private/Classes/DDMAMap/Annotation/DriveRouteCustomAnnotation.h; sourceTree = ""; }; + CDB7E7BE996331DFE30986CEAD96F9E9 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; + CDC1E06BD99C0082E2E7169902D8A03B /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; + CDD1DD5925E3B14369E344D3506EAEF3 /* DDColorKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDColorKit_Private-prefix.pch"; sourceTree = ""; }; + CEB3D4C291A99DA937CEDF324A6C2E85 /* JXCategoryIndicatorBackgroundView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorBackgroundView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBackgroundView.m; sourceTree = ""; }; + CEB4721B00F3D917AE91CED8A02279E2 /* EKBackgroundView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKBackgroundView.swift; path = Source/Infra/EKBackgroundView.swift; sourceTree = ""; }; + CEFB7C567B170E54023DD9E3C7C9E6EB /* SwiftyRSA+ObjC.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SwiftyRSA+ObjC.swift"; path = "Source/SwiftyRSA+ObjC.swift"; sourceTree = ""; }; + CF24B514D6255FA778A0A56806D75A4B /* AMapSearchAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchAPI.h; path = AMapSearchKit.framework/Headers/AMapSearchAPI.h; sourceTree = ""; }; + CF3813D38A26E07C0EFD923B301F323F /* AMapNaviCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCommonObj.h; path = AMapNaviKit.framework/Headers/AMapNaviCommonObj.h; sourceTree = ""; }; + CF6A987FBC1DCE05DA16BA51DDFC41B7 /* StringEncoding+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "StringEncoding+Alamofire.swift"; path = "Source/StringEncoding+Alamofire.swift"; sourceTree = ""; }; + CF6C455861CE7535DBC4C7C506FC4BDE /* Placeholder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Placeholder.swift; path = Sources/Image/Placeholder.swift; sourceTree = ""; }; + CFA7B46FB60F1694489043FE2328E875 /* UIView+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIView+ZLPhotoBrowser.swift"; sourceTree = ""; }; + CFBD3DE3DBE50C35DC8C125936E8C594 /* SchedulerServices+Emulation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SchedulerServices+Emulation.swift"; path = "RxSwift/Schedulers/SchedulerServices+Emulation.swift"; sourceTree = ""; }; + CFCD7365B39C984D4DD7614F53B3369B /* HistoricalSchedulerTimeConverter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalSchedulerTimeConverter.swift; path = RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift; sourceTree = ""; }; + D0440522426DB3AF3678746967417BAF /* Merge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Merge.swift; path = RxSwift/Observables/Merge.swift; sourceTree = ""; }; + D04829CC1B4D29D3E71931EB1F362EA6 /* UIActivityIndicatorView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIActivityIndicatorView+Rx.swift"; path = "RxCocoa/iOS/UIActivityIndicatorView+Rx.swift"; sourceTree = ""; }; + D0551D44470D5A9C9044C6A992F8CB74 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; + D05B97EE823062BC337989E133CEECE6 /* Bugly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Bugly.debug.xcconfig; sourceTree = ""; }; + D096A66A7BEE99520FA331B561FDE88D /* UINavigationBar+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationBar+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UINavigationBar+DDCategory/UINavigationBar+DDCategory.h"; sourceTree = ""; }; + D0B4E70B63192B2C9BEF85807D3AD3E7 /* ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist"; sourceTree = ""; }; + D0CE585EB3DAF6AC0DC448953A0D84C9 /* JXCategoryTitleVerticalZoomCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomCellModel.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCellModel.h; sourceTree = ""; }; + D0D16C957D8EA73812F8C94BD9839EC2 /* RxTableViewReactiveArrayDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewReactiveArrayDataSource.swift; path = RxCocoa/iOS/DataSources/RxTableViewReactiveArrayDataSource.swift; sourceTree = ""; }; + D1349DC561D2FF898F5271AF2B441434 /* EKAttributes+FrameStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+FrameStyle.swift"; path = "Source/Model/EntryAttributes/EKAttributes+FrameStyle.swift"; sourceTree = ""; }; D13827848C413A76ADD18E47761D2B20 /* Pods-OrderScheduling.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-OrderScheduling.modulemap"; sourceTree = ""; }; - D161CC3876E5C0136B9B88CE4F5A805F /* NSMutableAttributedString+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableAttributedString+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableAttributedString+DDCategory.h"; sourceTree = ""; }; - D1742FDCF0050E56F79D6F64221112F0 /* AsSingle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsSingle.swift; path = RxSwift/Observables/AsSingle.swift; sourceTree = ""; }; - D181FBBAC748BB8057E08172D4F3831D /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; - D1981AB4E6095FE67A531C3C89E89D1A /* DDColorKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDColorKit_Private.modulemap; sourceTree = ""; }; - D19DE406AA047CD1C100910EE6A46463 /* NSBundle+BRPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+BRPickerView.m"; path = "BRPickerView/Base/NSBundle+BRPickerView.m"; sourceTree = ""; }; - D1C95840DC145B6A5D3F749B2141FD5F /* ZFPlayerNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerNotification.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerNotification.h; sourceTree = ""; }; - D1DE7891489E9D59D79DCE22AF66F9D9 /* AuthenticationInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationInterceptor.swift; path = Source/AuthenticationInterceptor.swift; sourceTree = ""; }; - D1E5B89FE2BD8A0B0D3B2D9A4B27068C /* ColorUtil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorUtil.swift; path = DDColorKit_Private/Classes/ColorUtil.swift; sourceTree = ""; }; - D1E7C78D84C1DDF77BAF466F926B8B3E /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; - D1EF1F720BB44436F9E72A9D89FF8C0A /* MAOfflineCity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineCity.h; path = AMapNaviKit.framework/Headers/MAOfflineCity.h; sourceTree = ""; }; - D2B52B269ED8E8694CC4B8556F7460F6 /* DDFontKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDFontKit_Private-prefix.pch"; sourceTree = ""; }; - D2C790694D3AA49873E2CBB0B13284FC /* ESTabBarItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItem.swift; path = Sources/ESTabBarItem.swift; sourceTree = ""; }; - D2D99684924B37D6D10017B50BCCF47E /* SwiftEntryKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftEntryKit-dummy.m"; sourceTree = ""; }; - D30DF5A4E8DEB9FCDC93770CFEDA7938 /* UIView+ZFFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+ZFFrame.m"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIView+ZFFrame.m"; sourceTree = ""; }; - D319BE64A44DF3EF7E975E3C7B5CB7E7 /* DDPersistenceKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDPersistenceKit_Private.release.xcconfig; sourceTree = ""; }; - D319C5607ED9AC195CC83D1F272DA64C /* EKAttributes+Animation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Animation.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Animation.swift"; sourceTree = ""; }; - D377340625F32C54FD755E656C656D64 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; - D383DA1391C54C646431F49F02AD4CB3 /* EKButtonView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKButtonView.swift; path = Source/MessageViews/MessagesUtils/EKButtonView.swift; sourceTree = ""; }; - D3D0D1770DBD79014E10B615E908B7FB /* Key.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Key.swift; path = Source/Key.swift; sourceTree = ""; }; - D3F3C29F79517D4BE19D48E89B13B336 /* DDCategoryKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDCategoryKit_Private-prefix.pch"; sourceTree = ""; }; - D409A3AB540AB9E35D4AD5C1DDCC1B5A /* JXCategoryTitleCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleCell.m; path = Sources/Title/JXCategoryTitleCell.m; sourceTree = ""; }; - D4117C597DE1692CE8789DB702543828 /* RxPickerViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxPickerViewDataSourceProxy.swift; sourceTree = ""; }; - D4370EB0527F8951315CFCDF2B136F01 /* DDNetworkingOfAlamofireKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDNetworkingOfAlamofireKit_Private-umbrella.h"; sourceTree = ""; }; - D446283244E7CA1B1117F7A419DA6B22 /* Completable+AndThen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Completable+AndThen.swift"; path = "RxSwift/Traits/PrimitiveSequence/Completable+AndThen.swift"; sourceTree = ""; }; - D453CD8AD12EF26AAC4327F4D9CD6063 /* AMapLocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationManager.h; path = AMapLocationKit.framework/Headers/AMapLocationManager.h; sourceTree = ""; }; - D4624618AC29973CA5CAC6A9D7005664 /* JXCategoryBaseCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseCell.h; path = Sources/Base/JXCategoryBaseCell.h; sourceTree = ""; }; - D46A02AA3FEB386950BAB6DA32E6F726 /* DDAudioPlayerKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDAudioPlayerKit_Private.release.xcconfig; sourceTree = ""; }; - D48D3A43723EE2AB26487BF291CB6054 /* IQNSArray+Sort.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQNSArray+Sort.swift"; path = "IQKeyboardManagerSwift/Categories/IQNSArray+Sort.swift"; sourceTree = ""; }; - D4EAAE7B32C406F4009E289132CA4E45 /* AMapNaviRideDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRideDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviRideDataRepresentable.h; sourceTree = ""; }; - D533FADDA301CD753353068193F72777 /* Optional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Optional.swift; path = RxSwift/Observables/Optional.swift; sourceTree = ""; }; - D556921C9A1B32E0A547A047F0896E10 /* DDMAMapKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDMAMapKit_Private.debug.xcconfig; sourceTree = ""; }; - D57763CCD643A0FB8242C8FF13B9D636 /* ImmediateSchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImmediateSchedulerType.swift; path = RxSwift/ImmediateSchedulerType.swift; sourceTree = ""; }; - D5886F33EF778DF727B1D6EE738A61B5 /* DDMASearch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMASearch.h; path = DDMAMapKit_Private/Classes/DDMASearch/DDMASearch.h; sourceTree = ""; }; - D58E7DB5FC0169C68C47543EFBC12BC5 /* BRResultModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRResultModel.m; path = BRPickerView/StringPickerView/BRResultModel.m; sourceTree = ""; }; - D5929EBD76F6ADD256AA324D24F52A32 /* DDProgressHUDKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDProgressHUDKit_Private.debug.xcconfig; sourceTree = ""; }; - D59A3B53B13AAA33732833486B7E5780 /* SwiftyRSA-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyRSA-umbrella.h"; sourceTree = ""; }; - D59C0C03644CD9FEB9AE0D8C65741CB3 /* ZFPlayerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerController.h; sourceTree = ""; }; + D15DA1770C29D7F3B1440F9B3B3ED1B3 /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Source/RedirectHandler.swift; sourceTree = ""; }; + D1B3C59A3746CE85515C59617A5A65B6 /* DDBaseNavigationController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseNavigationController.h; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDBaseNavigationController.h; sourceTree = ""; }; + D1E4C81D90898DB5A4EA9B85F71A6964 /* EKRatingSymbolsContainerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingSymbolsContainerView.swift; path = Source/MessageViews/MessagesUtils/EKRatingSymbolsContainerView.swift; sourceTree = ""; }; + D1F0060E75A220C59F54F416CA6B27E0 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = ""; }; + D1F18F93101AC60EE823FFBC59264DF0 /* UIView+ZFFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+ZFFrame.h"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIView+ZFFrame.h"; sourceTree = ""; }; + D20B70C52D072A0C0033C7B7F8687C4D /* DDCategoryKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDCategoryKit_Private-dummy.m"; sourceTree = ""; }; + D20EB1D60F5FA950B1D88F62FE24CBA3 /* DDLogKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDLogKit_Private.debug.xcconfig; sourceTree = ""; }; + D23D1B55CFA9E601EEAE694FC4999DBB /* ZLPhotoPreviewSheet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewSheet.swift; path = Sources/General/ZLPhotoPreviewSheet.swift; sourceTree = ""; }; + D24896F20383ED008DC90441CD13017E /* String+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+ZLPhotoBrowser.swift"; path = "Sources/Extensions/String+ZLPhotoBrowser.swift"; sourceTree = ""; }; + D24C48658D0AA1DFDAFF96989D396D50 /* UIView+QLContentWrap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+QLContentWrap.swift"; path = "Source/Extensions/QuickLayout/UIView+QLContentWrap.swift"; sourceTree = ""; }; + D25C6967D8373406CD6C51C689D66DC8 /* ElementAt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ElementAt.swift; path = RxSwift/Observables/ElementAt.swift; sourceTree = ""; }; + D26F5BBECDC3294562AD41764B614AB6 /* SingleAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAsync.swift; path = RxSwift/Observables/SingleAsync.swift; sourceTree = ""; }; + D28BADFD21FD34580D06439BF6E9EB6C /* TakeWithPredicate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeWithPredicate.swift; path = RxSwift/Observables/TakeWithPredicate.swift; sourceTree = ""; }; + D2A992906EF659EE6847D603133FAEC6 /* AMapFoundationKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationKit.h; path = AMapFoundationKit.framework/Headers/AMapFoundationKit.h; sourceTree = ""; }; + D2C62CE45E39BE434E4DC1A93063A884 /* ZFPortraitControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPortraitControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPortraitControlView.m; sourceTree = ""; }; + D2FA880FC160384800ED3D83C3F095AB /* DDTimerSwiftKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDTimerSwiftKit_Private-umbrella.h"; sourceTree = ""; }; + D3033ED13E860307AC3657C99F0F019F /* AMapLocation-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapLocation-NO-IDFA.release.xcconfig"; sourceTree = ""; }; + D34026654A2BB5E123BB5CEAC708A17E /* UIScreen+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScreen+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIScreen+DDCategory/UIScreen+DDCategory.h"; sourceTree = ""; }; + D3465B75044DE317BA11741C09EFF375 /* DDUtilsSwiftKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDUtilsSwiftKit_Private-prefix.pch"; sourceTree = ""; }; + D3808497EBD84678A672339209E38157 /* jpush-ios-5.0.1.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = "jpush-ios-5.0.1.xcframework"; sourceTree = ""; }; + D38ADE555546DCA1DBCFDCF58C1956D1 /* ZFSmallFloatControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFSmallFloatControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSmallFloatControlView.h; sourceTree = ""; }; + D3ACC5653212F2045ED8138F549D423A /* DDTimerSwiftKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDTimerSwiftKit_Private.modulemap; sourceTree = ""; }; + D3E10375E5768292EEC184DFEB9301F3 /* RxTableViewDataSourcePrefetchingProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourcePrefetchingProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDataSourcePrefetchingProxy.swift; sourceTree = ""; }; + D41F03449EFFAD7334A04DA3C9EAFB70 /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = ""; }; + D42473A68DA9A31A03103D6868ED2EB7 /* NSBundle+BRPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+BRPickerView.h"; path = "BRPickerView/Base/NSBundle+BRPickerView.h"; sourceTree = ""; }; + D43C24EE3A9DE22E56F4F295102378F2 /* AMapNaviKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviKit.h; path = AMapNaviKit.framework/Headers/AMapNaviKit.h; sourceTree = ""; }; + D43F9DFE294B601576D924D8D14689E0 /* Alamofire.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.debug.xcconfig; sourceTree = ""; }; + D45E1EAE02C54199896AF1626C1785EF /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; + D462A4B4DB8C8B40BC818DB0776504F4 /* AMapNaviHeaderHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviHeaderHandler.h; path = AMapNaviKit.framework/Headers/AMapNaviHeaderHandler.h; sourceTree = ""; }; + D47153E7D24BB2FCD8C70411D09E2F43 /* UICollectionViewLayout+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewLayout+MJRefresh.m"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.m"; sourceTree = ""; }; + D4AF302D9A9BB92C286E7CEB1C01C8B4 /* JXCategoryBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseView.h; path = Sources/Base/JXCategoryBaseView.h; sourceTree = ""; }; + D52676D7FF93EADA44F726BF34B13A02 /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; + D547B7EC123F580B0C8078B97398B638 /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; + D59A28A34B495482D16FF41CBE7A1FF0 /* EntryAppearanceDescriptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EntryAppearanceDescriptor.swift; path = Source/MessageViews/MessagesUtils/EntryAppearanceDescriptor.swift; sourceTree = ""; }; D5A3880A46506555230D960A979C59EA /* Pods-OrderScheduling-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-OrderScheduling-acknowledgements.plist"; sourceTree = ""; }; - D5C12CC8F474373055969C07D3A3C3EB /* DDUtilsSwiftKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDUtilsSwiftKit_Private-dummy.m"; sourceTree = ""; }; - D5CC3401DDE8788C49A2FB401C236B39 /* BehaviorRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorRelay.swift; path = RxRelay/BehaviorRelay.swift; sourceTree = ""; }; - D5F38DDA0977761FE8D74EA774ADBEB3 /* AMapLocationRegionObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationRegionObj.h; path = AMapLocationKit.framework/Headers/AMapLocationRegionObj.h; sourceTree = ""; }; - D603E61638C5D8B6B4577880F43440FD /* EKTextField.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKTextField.swift; path = Source/MessageViews/MessagesUtils/EKTextField.swift; sourceTree = ""; }; - D60EA2F98FB9BE841A4547635AA91D7F /* DDTimerSwiftKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDTimerSwiftKit_Private.release.xcconfig; sourceTree = ""; }; - D641644EF0296AE65C2F1D2249810365 /* UINavigationBar+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationBar+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UINavigationBar+DDCategory/UINavigationBar+DDCategory.h"; sourceTree = ""; }; - D678316C117EC91A4AC5159DE80A92F0 /* KFImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImage.swift; path = Sources/SwiftUI/KFImage.swift; sourceTree = ""; }; - D681619D94082F8FBAD3CFC95DF2C8FC /* MATraceReplayOverlay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MATraceReplayOverlay.m; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlay.m; sourceTree = ""; }; - D69B86109108D36D6C03F6928633BA0A /* Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Map.swift; path = RxSwift/Observables/Map.swift; sourceTree = ""; }; - D6DA38D57A840333E73BC2B72B5CD934 /* UIImageView+ZFCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+ZFCache.h"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIImageView+ZFCache.h"; sourceTree = ""; }; - D6DDAF1A1ED7AAFC0172CF5F31EC2D4B /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = Sources/Cache/Storage.swift; sourceTree = ""; }; - D6F8AE33F7159DCA3B9D151ECE2BECA7 /* UITextView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextView+Rx.swift"; path = "RxCocoa/iOS/UITextView+Rx.swift"; sourceTree = ""; }; - D704D6A35DF4622B7398E732D6ED8E57 /* Sequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sequence.swift; path = RxSwift/Observables/Sequence.swift; sourceTree = ""; }; - D70FB6D3ED988646CDCDA1119A91238E /* DelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelegateProxy.swift; path = RxCocoa/Common/DelegateProxy.swift; sourceTree = ""; }; - D71B26F8BD4F5A14695B67ED368D3C30 /* AMapNaviManagerConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviManagerConfig.h; path = AMapNaviKit.framework/Headers/AMapNaviManagerConfig.h; sourceTree = ""; }; - D72AF06664C2C1A387B4A2702072A8AF /* RxSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxSwift-dummy.m"; sourceTree = ""; }; - D7397272192155E4857A772EBD8C46EE /* Toast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Toast.swift; path = DDToastKit_Private/Classes/Toast.swift; sourceTree = ""; }; - D78ED7FF50379F1FE6D24BA5A1A6A5DF /* ZFPlayerMediaPlayback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerMediaPlayback.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerMediaPlayback.h; sourceTree = ""; }; - D7A6FC30ADB37AFEF59BBDA41CF604B9 /* MJRefreshTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshTrailer.m; path = MJRefresh/Base/MJRefreshTrailer.m; sourceTree = ""; }; - D7AA1041950AA3B048BA78D87D0FF176 /* NSThread+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSThread+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSThread+DDCategory/NSThread+DDCategory.h"; sourceTree = ""; }; - D7FC978BC1E8EF7BC06878A073EAEB09 /* StringEncoding+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "StringEncoding+Alamofire.swift"; path = "Source/StringEncoding+Alamofire.swift"; sourceTree = ""; }; - D850DE1D050D92936B3504ADF141E91B /* DDCollectionViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDCollectionViewCell.swift; path = DDControlsKit_Private/Classes/DDCollectionViewCell/DDCollectionViewCell.swift; sourceTree = ""; }; - D872D7C3EF24EA7A12661B82ACF37064 /* DDBasicControlsKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDBasicControlsKit_Private.release.xcconfig; sourceTree = ""; }; - D876E2642A6CF882B1DAB11985E3A787 /* DDControlsKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDControlsKit_Private-prefix.pch"; sourceTree = ""; }; - D8826C9D7063BD81BF1D0DCF113157C3 /* AMapSearchKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchKit.h; path = AMapSearchKit.framework/Headers/AMapSearchKit.h; sourceTree = ""; }; - D884C54D48E41C3591EA6C12160AFD84 /* UIFont+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIFont+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIFont+DDCategory/UIFont+DDCategory.h"; sourceTree = ""; }; - D8C0515601D4C72904FCC8547FD823FA /* MAMapStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapStatus.h; path = AMapNaviKit.framework/Headers/MAMapStatus.h; sourceTree = ""; }; - D8DBD4A19BC9CE26D2D0656B2303DA0D /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; - D8E6EAF45D9469E12A214B43BE24937F /* ZLPhotoBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ZLPhotoBrowser-prefix.pch"; sourceTree = ""; }; - D901979501F432235C64E6AC4AB82EDB /* ZLAlbumListModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAlbumListModel.swift; path = Sources/General/ZLAlbumListModel.swift; sourceTree = ""; }; - D90D3016E9BF0D33C094C69EB488BFFC /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; - D92891C0EEF85D2B5497707BDE9F95BC /* EKAttributes+LifecycleActions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+LifecycleActions.swift"; path = "Source/Model/EntryAttributes/EKAttributes+LifecycleActions.swift"; sourceTree = ""; }; - D93DC5FA6C8CE42E9948BD0360B325CB /* EntryCachingHeuristic.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EntryCachingHeuristic.swift; path = Source/Infra/EntryCachingHeuristic.swift; sourceTree = ""; }; - D98B3D2F58132F743364A7A04A7B5CB5 /* DDFileManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDFileManager.swift; path = DDUtilsSwiftKit_Private/Classes/FileManager/DDFileManager.swift; sourceTree = ""; }; - D9985D5699F85E989561E3CC0F9777F5 /* DDBaseButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseButton.m; path = DDBasicControlsKit_Private/Classes/DDBaseButton/DDBaseButton.m; sourceTree = ""; }; - D9A36C09A669F8D3ADAAB8C0846A6E42 /* UIView+ZFFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+ZFFrame.h"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIView+ZFFrame.h"; sourceTree = ""; }; - D9A7D92D806D8C7CCED28E85C8BBC789 /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = ""; }; - DA00B4D6DD3233157D07880E5049A07D /* DDControlsKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDControlsKit_Private.release.xcconfig; sourceTree = ""; }; - DA412BE98C427E788F2B66686FF75EBC /* MAShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAShape.h; path = AMapNaviKit.framework/Headers/MAShape.h; sourceTree = ""; }; - DA5EDA8AEBC1D4EBDE58EACAF14EAAE5 /* JXCategoryIndicatorDotLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorDotLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorDotLineView.h; sourceTree = ""; }; + D5DC0DDE990C0A7033E161AA7E899E94 /* DDCollectionViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDCollectionViewCell.swift; path = DDControlsKit_Private/Classes/DDCollectionViewCell/DDCollectionViewCell.swift; sourceTree = ""; }; + D62C83D50BFED5A4B6B6351ABE1536C8 /* _RXKVOObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXKVOObserver.h; path = RxCocoa/Runtime/include/_RXKVOObserver.h; sourceTree = ""; }; + D68BC02E3A18FAC545AD0942F8BD4C06 /* Constraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constraint.swift; path = Sources/Constraint.swift; sourceTree = ""; }; + D6A19355B7723280626F510E715EE27E /* ObserverBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverBase.swift; path = RxSwift/Observers/ObserverBase.swift; sourceTree = ""; }; + D6A992E1F1418803802C7312E0330C28 /* DDToastKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDToastKit_Private-dummy.m"; sourceTree = ""; }; + D712A94B0A589E674743E2F36DC32EE2 /* UIScrollView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIScrollView+DDCategory/UIScrollView+DDCategory.h"; sourceTree = ""; }; + D7606AAF9B3469C3A8E9BABB5B5D8298 /* DDProgressHUDKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDProgressHUDKit_Private.debug.xcconfig; sourceTree = ""; }; + D7C14800F2DA5E3340E31A7113A9D6C1 /* Resource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Resource.swift; path = Sources/General/ImageSource/Resource.swift; sourceTree = ""; }; + D811070CCA6CA50FC7CAA836707267AB /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = ""; }; + D816653F15A0720DC1BB328451E48B3D /* SwiftyRSA-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyRSA-umbrella.h"; sourceTree = ""; }; + D833F99829076C9F074DCD0531EFEAA8 /* Zip+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+Collection.swift"; path = "RxSwift/Observables/Zip+Collection.swift"; sourceTree = ""; }; + D8660D7EC237F514C3300C4A1753A4F5 /* ZFLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLoadingView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLoadingView.m; sourceTree = ""; }; + D878230AD5A542C60F6DDE5CEBD1B58C /* ZFPlayerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerView.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerView.h; sourceTree = ""; }; + D87D38F8DCD8D3B5BEF78D23FDD2E7B0 /* SkipWhile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipWhile.swift; path = RxSwift/Observables/SkipWhile.swift; sourceTree = ""; }; + D88A57E0029FEF793BB477D6BD6761EC /* DDProgressHUDKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDProgressHUDKit_Private.release.xcconfig; sourceTree = ""; }; + D8B88765BE86F25BEB9D19D6AD4C9C90 /* BRPickerView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BRPickerView.debug.xcconfig; sourceTree = ""; }; + D8F5ADB034A04A654B5D34FABDC5761E /* UrlLinks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UrlLinks.swift; path = DDUtilsSwiftKit_Private/Classes/UrlLinks/UrlLinks.swift; sourceTree = ""; }; + D92A8FE3E1B511EFFF6060691EAE164A /* UIScreen+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScreen+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIScreen+DDCategory/UIScreen+DDCategory.m"; sourceTree = ""; }; + D9509045BB173ED128A8FD4BEA2C1169 /* KFImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImage.swift; path = Sources/SwiftUI/KFImage.swift; sourceTree = ""; }; + D978E0E647D8E4FE925B1853F295328B /* DDAutoUIKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDAutoUIKit_Private.debug.xcconfig; sourceTree = ""; }; + D9C966704CE79EF9539C9BDF5CA9D346 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; + D9E7D9EE698F5F05F581FDF728B6836A /* UITabBarController+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITabBarController+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITabBarController+DDCategory/UITabBarController+DDCategory.m"; sourceTree = ""; }; + DA0A6C7B87A91E79A318418AE7E08F59 /* TakeLast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeLast.swift; path = RxSwift/Observables/TakeLast.swift; sourceTree = ""; }; + DA1AE6DF6ABD2055C14B6AEC6FDCD0EB /* Combine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Combine.swift; path = Source/Combine.swift; sourceTree = ""; }; + DA20B67B6F3CB9D1D49DAD9403C65C47 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; DA5F7E5AA5A762E4504855EAF3216C8A /* SwiftEntryKit */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = SwiftEntryKit; path = libSwiftEntryKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; - DAB9CC1539698C9F00995A0EB6E34BBB /* WKInterfaceImage+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKInterfaceImage+Kingfisher.swift"; path = "Sources/Extensions/WKInterfaceImage+Kingfisher.swift"; sourceTree = ""; }; - DADC90B2BBC9C7A1F28B16F5D10B2AB7 /* MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJRefresh-dummy.m"; sourceTree = ""; }; + DA7C542A8A0FEF11F40CAD6B4B783081 /* UISwitch+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UISwitch+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UISwitch+DDCategory/UISwitch+DDCategory.m"; sourceTree = ""; }; + DAA467CA7CA1AA41758A2D239A606EEB /* ZFSliderView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFSliderView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSliderView.h; sourceTree = ""; }; + DAC5D322C3E7C85FB85CF8A95F7D9FBC /* Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debug.swift; path = RxSwift/Observables/Debug.swift; sourceTree = ""; }; + DAC7038C6A95B0C20D9EBA2157B13FF2 /* RxSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwift.release.xcconfig; sourceTree = ""; }; DAFE13D35532C1BA0D3624F4C38BEE8E /* DDLogKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDLogKit_Private; path = libDDLogKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - DB0E4FB4D6900EC78ACBA96F5E96A2F7 /* Signal+Subscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Signal+Subscription.swift"; path = "RxCocoa/Traits/Signal/Signal+Subscription.swift"; sourceTree = ""; }; - DB5D541FB6D9AC9EFCEED74F791E43CD /* AMapFoundationVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationVersion.h; path = AMapFoundationKit.framework/Headers/AMapFoundationVersion.h; sourceTree = ""; }; - DB624DFCA58354E87A6A4642564AE62B /* RxTableViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDataSourceProxy.swift; sourceTree = ""; }; - DB78D91CF9F57A502BA45B9F388E1FF9 /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = ""; }; - DB8259E65C7342319A9322E5E3A86C5B /* EKAttributes+StatusBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+StatusBar.swift"; path = "Source/Model/EntryAttributes/EKAttributes+StatusBar.swift"; sourceTree = ""; }; - DB970411C4735ECD3EA57171615447BC /* CacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CacheSerializer.swift; path = Sources/Cache/CacheSerializer.swift; sourceTree = ""; }; - DB97BDF86E26A2A217026453B39D02A5 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; - DC38CD6E458446493D8DFD6140262228 /* ESTabBarController-swift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ESTabBarController-swift-umbrella.h"; sourceTree = ""; }; - DC45A2A75FC87B2102E4A16C67DC31D9 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; - DC504023A4CF8712E65954019EF54CC8 /* PrimitiveSequence+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PrimitiveSequence+Concurrency.swift"; path = "RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Concurrency.swift"; sourceTree = ""; }; - DC8D30364BD377148EAFD6BCFA8A4809 /* DDUtilsSwiftKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDUtilsSwiftKit_Private.release.xcconfig; sourceTree = ""; }; - DCEE93B89F877907EDEDF35837EEB69D /* NSObject+Rx+KVORepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx+KVORepresentable.swift"; path = "RxCocoa/Foundation/NSObject+Rx+KVORepresentable.swift"; sourceTree = ""; }; - DD2723477ECDF53C4B6841133E77B7CF /* ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist"; sourceTree = ""; }; - DD570F755886F17D3B53335C90F4B0FC /* MJRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJRefresh.modulemap; sourceTree = ""; }; - DD77B65A144AD2D2150F445522144789 /* ConstraintLayoutSupportDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupportDSL.swift; path = Sources/ConstraintLayoutSupportDSL.swift; sourceTree = ""; }; - DDA96801534455763CE25F6009227C16 /* DDNetworkingOfAlamofireKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDNetworkingOfAlamofireKit_Private.modulemap; sourceTree = ""; }; - DDF68F83FA73BDDF45C3B02E3B3DBD0C /* AlamofireExtended.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlamofireExtended.swift; path = Source/AlamofireExtended.swift; sourceTree = ""; }; - DE28F6C8920734CB78C861B48749CF7D /* ZFPlayerMediaControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerMediaControl.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerMediaControl.h; sourceTree = ""; }; - DE321EDB4DA518EA0C92146DAEA98721 /* EKAlertMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAlertMessage.swift; path = Source/Model/EKAlertMessage.swift; sourceTree = ""; }; - DE4B3B27625A65A6880C056D8B39690A /* ZFReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFReachabilityManager.m; path = DDZFPlayerKit_Private/Classes/Core/ZFReachabilityManager.m; sourceTree = ""; }; - DE58DC63124BECEF14EFDC17EE2F27EE /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; - DE60DBE6D5F359EB495C77110B2618A1 /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/AFError.swift; sourceTree = ""; }; - DE74B231D2EB9502C3166A078A160335 /* SnapKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-umbrella.h"; sourceTree = ""; }; - DE87F54785CE5A753ECD3B7635752855 /* ConstraintMakerExtendable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerExtendable.swift; path = Sources/ConstraintMakerExtendable.swift; sourceTree = ""; }; - DE9CABB0B007DC5E6F3D70E33F52F4F7 /* DDTableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTableView.swift; path = DDControlsKit_Private/Classes/DDTableView/DDTableView.swift; sourceTree = ""; }; - DEA2368A58CDACFDE20D6D1F2BC6DDE0 /* DDButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDButton.swift; path = DDControlsKit_Private/Classes/DDButton/DDButton.swift; sourceTree = ""; }; + DB4FCD3FC94B3DF92D64C7E6DF7BC4B3 /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; + DBAEA48C4CC4D29FAD44A328E071566A /* DDBaseTabBarController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTabBarController.h; path = DDBasicControlsKit_Private/Classes/DDBaseTabBarController/DDBaseTabBarController.h; sourceTree = ""; }; + DBD21FD126437077D0B354EDE7FE2318 /* DDFontKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDFontKit_Private-umbrella.h"; sourceTree = ""; }; + DC3F94B1983937C907AF3401283DDADD /* DDAutoUIKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDAutoUIKit_Private.modulemap; sourceTree = ""; }; + DC420F976245C2E3022F83DC7B4D3881 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; + DC7563FB49B3B7F0E4710216BC923FE3 /* DDAttributedString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAttributedString.swift; path = DDControlsKit_Private/Classes/DDAttributedString/DDAttributedString.swift; sourceTree = ""; }; + DC9F01F7E77FC3F02CBD3605B590470A /* MAOfflineMapViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineMapViewController.h; path = AMapNaviKit.framework/Headers/MAOfflineMapViewController.h; sourceTree = ""; }; + DCB224F266E399DCEDEDC6891CABD5F2 /* UITextView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITextView+DDCategory/UITextView+DDCategory.h"; sourceTree = ""; }; + DCC0513B7BC3798F7F3017E3F5F1F884 /* Generate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Generate.swift; path = RxSwift/Observables/Generate.swift; sourceTree = ""; }; + DCD176F57B3E48F540E83B13C9D1C26E /* AMapNearbySearchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNearbySearchManager.h; path = AMapSearchKit.framework/Headers/AMapNearbySearchManager.h; sourceTree = ""; }; + DCD99B5E4240686B47300128D9897A3A /* ESTabBarController-swift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ESTabBarController-swift-umbrella.h"; sourceTree = ""; }; + DD0A4B773F3497967CA6047F3BBE64C8 /* Disposables.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposables.swift; path = RxSwift/Disposables/Disposables.swift; sourceTree = ""; }; + DD334EF9FD4B9B594B828B61097EF08F /* RequestModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModifier.swift; path = Sources/Networking/RequestModifier.swift; sourceTree = ""; }; + DD3B7CDE1ED4737841DC86337C34CB1A /* UITextField+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextField+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITextField+DDCategory/UITextField+DDCategory.h"; sourceTree = ""; }; + DD43A92F9FDDBA8FCF0D0F150900643C /* ZFPlayerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerController.m; sourceTree = ""; }; + DD6A00003DCF476B5B5C7CD84A4FF86D /* KVORepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KVORepresentable.swift; path = RxCocoa/Foundation/KVORepresentable.swift; sourceTree = ""; }; + DDA32CD6A5C753C2C1F36030926B731B /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; + DDA33FAEAD96DC6BD523DAE59DEA6E00 /* DDBaseButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseButton.m; path = DDBasicControlsKit_Private/Classes/DDBaseButton/DDBaseButton.m; sourceTree = ""; }; + DDA69305344998ECA41F4A63617370D5 /* SDWebImageMapKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageMapKit.h; path = DDWebImageKit_Private/Classes/SDWebImageMapKit/SDWebImageMapKit.h; sourceTree = ""; }; + DDDF3BEE0A9AA78EFB976893E987A6FB /* RxTabBarDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTabBarDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTabBarDelegateProxy.swift; sourceTree = ""; }; + DDE5A213E9E9BA7FD1BD441D0A1B69C6 /* UIScrollView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIScrollView+DDCategory/UIScrollView+DDCategory.m"; sourceTree = ""; }; + DE78ED761D06FDE3C6A57D02D09D5A7C /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = ""; }; + DE9F7B227F17F41307D3E31581F1072D /* Maybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Maybe.swift; path = RxSwift/Traits/PrimitiveSequence/Maybe.swift; sourceTree = ""; }; + DEC6A7481BCE4C6F897933E7486DFCE6 /* ZFReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFReachabilityManager.h; path = DDZFPlayerKit_Private/Classes/Core/ZFReachabilityManager.h; sourceTree = ""; }; + DEE9361B2BA7FAA41C595FC2582601D9 /* ControlEvent+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlEvent+Driver.swift"; path = "RxCocoa/Traits/Driver/ControlEvent+Driver.swift"; sourceTree = ""; }; + DEF51AE613081B188EDB8BAC4FBF7569 /* AMapLocationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapLocationKit.framework; sourceTree = ""; }; DF07F7B964C7E3CE99FEEC54FC37F050 /* DDUtilsSwiftKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDUtilsSwiftKit_Private; path = libDDUtilsSwiftKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - DF1F1BA51D352DA3324609CD1F94C48E /* JXCategoryIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorView.m; path = Sources/Indicator/JXCategoryIndicatorView.m; sourceTree = ""; }; - DFFB42422D64045DBBA512977E3A8B4E /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJRefresh.m"; path = "MJRefresh/UIScrollView+MJRefresh.m"; sourceTree = ""; }; - E00B7ADB216329D0D9A8F1ECE6CF21DD /* NSData+SHA.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+SHA.m"; path = "Source/NSData+SHA.m"; sourceTree = ""; }; - E02DC36E54D7319048DAB95A9C962E25 /* UIView+Shadow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Shadow.swift"; path = "Source/Extensions/UIView+Shadow.swift"; sourceTree = ""; }; - E072741348185C3BC294AF1F31AB4987 /* DDBaseImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseImageView.h; path = DDBasicControlsKit_Private/Classes/DDBaseImageView/DDBaseImageView.h; sourceTree = ""; }; - E07DFCD4DF16FD7A2487CB4D597BFAD7 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; - E0A40AE055DF5C3134B4C1A716808CE5 /* ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist"; sourceTree = ""; }; - E0E3C2428DDE22E0D42A4EDD8A65BE40 /* JXCategoryDotView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotView.h; path = Sources/Dot/JXCategoryDotView.h; sourceTree = ""; }; - E0F17526A977A87F4B4EB47D83CEAC53 /* ZLAdjustSlider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAdjustSlider.swift; path = Sources/Edit/ZLAdjustSlider.swift; sourceTree = ""; }; - E15E4EADCA685276B8A1AC900814D556 /* JXCategoryTitleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleView.m; path = Sources/Title/JXCategoryTitleView.m; sourceTree = ""; }; - E1806B7AE8E26CE08653BA97DD634BE2 /* UIImageView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIImageView+DDCategory/UIImageView+DDCategory.m"; sourceTree = ""; }; - E18A24FC1DBD78A3CD2CF26C5443197F /* UIScrollView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIScrollView+DDCategory/UIScrollView+DDCategory.h"; sourceTree = ""; }; - E1955AB9D511D422C71260183A1AC2D9 /* Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Rx.swift; path = RxSwift/Rx.swift; sourceTree = ""; }; - E1B8068A6C541BB6AFE6687238DB16E7 /* ZFLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLoadingView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLoadingView.h; sourceTree = ""; }; - E1C0DFBEB1656E5775769E9DD7592F4C /* EKAttributes+Validations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Validations.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Validations.swift"; sourceTree = ""; }; - E1CEA95B9BED7B8D95F564A7A96C6007 /* AMapNaviDriveManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviDriveManager.h; path = AMapNaviKit.framework/Headers/AMapNaviDriveManager.h; sourceTree = ""; }; - E1F0ECA1819BB892D033E84D2410085B /* ZLFilter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLFilter.swift; path = Sources/Edit/ZLFilter.swift; sourceTree = ""; }; - E20C93508493A2DCBC91469229422DDB /* RxRelay.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxRelay.modulemap; sourceTree = ""; }; - E26786300E7990BA147EAC57C853A1D8 /* ObserveOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserveOn.swift; path = RxSwift/Observables/ObserveOn.swift; sourceTree = ""; }; + DF26E990F49A258AB52A06D13796BBBD /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; + DF49A0B2DB663CA65EAF7EF8C4B01538 /* JXCategoryTitleVerticalZoomCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomCellModel.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCellModel.m; sourceTree = ""; }; + E00D2129BABFC3F6E0FF3F80917EBE36 /* DDUtilsSwiftKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDUtilsSwiftKit_Private.modulemap; sourceTree = ""; }; + E06781D7B5DE80C2713CA0D5AE9B60DF /* MABaseOverlay+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MABaseOverlay+DDCategory.h"; path = "DDMAMapKit_Private/Classes/DDMAMap/Overlay/MABaseOverlay+DDCategory.h"; sourceTree = ""; }; + E07FE5BB474F004DA115A4CBA2ADEDDD /* ObserveOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserveOn.swift; path = RxSwift/Observables/ObserveOn.swift; sourceTree = ""; }; + E08931E968870781ECD67D8DC25B85F4 /* DDPersistenceKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDPersistenceKit_Private-umbrella.h"; sourceTree = ""; }; + E098D99A76CC9954A6BE37F5635FC9A8 /* UITableViewCell+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableViewCell+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITableViewCell+DDCategory/UITableViewCell+DDCategory.h"; sourceTree = ""; }; + E0AF86A226EE7B78FAF8A1A18C44F469 /* DDColorKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDColorKit_Private-dummy.m"; sourceTree = ""; }; + E0B456A7535ADF8CD38B5EC1D33A1029 /* ConstraintView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintView.swift; path = Sources/ConstraintView.swift; sourceTree = ""; }; + E0C3110EBBBF54A09C476E88DFC53487 /* ZFFloatView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFFloatView.h; path = DDZFPlayerKit_Private/Classes/Core/ZFFloatView.h; sourceTree = ""; }; + E144C120ACC7EAE402C3CC12068D9163 /* ZLFetchImageOperation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLFetchImageOperation.swift; path = Sources/General/ZLFetchImageOperation.swift; sourceTree = ""; }; + E149949266077CA716C0F64C4A679EDC /* Observable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Observable.swift; path = RxSwift/Observable.swift; sourceTree = ""; }; + E17653FB4A421EDAD142B7FA280AD1EE /* RecursiveScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveScheduler.swift; path = RxSwift/Schedulers/RecursiveScheduler.swift; sourceTree = ""; }; + E1936F0C9B55EAD2F03BBAB6DA1A31AD /* IQKeyboardManager+UIKeyboardNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+UIKeyboardNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+UIKeyboardNotification.swift"; sourceTree = ""; }; + E20129BA89498DA454383EA31532A751 /* SerialDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDisposable.swift; path = RxSwift/Disposables/SerialDisposable.swift; sourceTree = ""; }; + E23690602F1F2488B74ED123C0F50923 /* UIScrollView+ZFPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+ZFPlayer.h"; path = "DDZFPlayerKit_Private/Classes/Core/UIScrollView+ZFPlayer.h"; sourceTree = ""; }; + E256C0DF76156201C11546716B92F885 /* ZLAnimationUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAnimationUtils.swift; path = Sources/General/ZLAnimationUtils.swift; sourceTree = ""; }; + E26C473C6BA89A685CE546EA10377C64 /* ZFLandscapeViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLandscapeViewController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeViewController.m; sourceTree = ""; }; E270ABDB05C1E6CDFF8AB4EB055CE66E /* DDDateKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDDateKit_Private; path = libDDDateKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E27684FB42170ECF7B074A5B07A6980A /* UIButton+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Rx.swift"; path = "RxCocoa/iOS/UIButton+Rx.swift"; sourceTree = ""; }; - E2984493084767F6E06C2285A66F30D2 /* CALayer+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+DDCategory.m"; path = "DDCategoryKit_Private/Classes/CALayer+DDCategory/CALayer+DDCategory.m"; sourceTree = ""; }; - E2AB9F8CE95BBDB9C1257ECA7BFBB6C4 /* MJRefreshStateTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.h; sourceTree = ""; }; - E2D4D8A25707C3D3EAADC58FA161B6C7 /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; - E2E34C598BC04EBD55FD660D8EB45049 /* MAMapKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapKit.h; path = AMapNaviKit.framework/Headers/MAMapKit.h; sourceTree = ""; }; - E31BDF49F2926FF02EF1A202926188F9 /* UIImageView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIImageView+DDCategory/UIImageView+DDCategory.h"; sourceTree = ""; }; - E3799549EC85A97791632BA5F556FF7B /* BRPickerView.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = BRPickerView.bundle; path = BRPickerView/Base/BRPickerView.bundle; sourceTree = ""; }; - E3A8D9246FDEB24724530F52E840D0D1 /* JXCategoryImageCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageCell.m; path = Sources/Image/JXCategoryImageCell.m; sourceTree = ""; }; - E3AAAD26A8FF316676A513010A48A759 /* ZLPhotoConfiguration+Chaining.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ZLPhotoConfiguration+Chaining.swift"; path = "Sources/General/ZLPhotoConfiguration+Chaining.swift"; sourceTree = ""; }; - E3B0DF9D2776D7B4DD1A3E407CC36E95 /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; - E3E93FB5BE1F82C73D2C995FA55AC7C4 /* DDTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTextView.swift; path = DDControlsKit_Private/Classes/DDTextView/DDTextView.swift; sourceTree = ""; }; - E401ECF7473809EDA233D3291AA24643 /* JXCategoryTitleCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleCell.h; path = Sources/Title/JXCategoryTitleCell.h; sourceTree = ""; }; - E4389A79A98D82D099859D31900A8A41 /* DDOCLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDOCLog.h; path = DDLogKit_Private/Classes/OCLog/DDOCLog.h; sourceTree = ""; }; + E28C0FA483BF86F8FCA82CECB4608B17 /* MJRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-umbrella.h"; sourceTree = ""; }; + E2EA1BC5C269D99913D34141456DB406 /* DDCategoryKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDCategoryKit_Private-umbrella.h"; sourceTree = ""; }; + E387B9595875534C9E33B3C0DF8D95C0 /* ImageTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageTransition.swift; path = Sources/Image/ImageTransition.swift; sourceTree = ""; }; + E46708345A721BE1D4235AB52C88B8B0 /* JXCategoryImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageView.h; path = Sources/Image/JXCategoryImageView.h; sourceTree = ""; }; + E47445009D064B225F8156AF7F347247 /* DriveRouteCustomAnnotationView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DriveRouteCustomAnnotationView.m; path = DDMAMapKit_Private/Classes/DDMAMap/AnnotationView/DriveRouteCustomAnnotationView.m; sourceTree = ""; }; E4863DBFE563EB129CD7414E7C378616 /* Pods-OrderSchedulingNotificationService-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-OrderSchedulingNotificationService-acknowledgements.markdown"; sourceTree = ""; }; - E48CC4D8CFE991113EDF2724EFFEDACF /* DDMAMapKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDMAMapKit_Private-dummy.m"; sourceTree = ""; }; + E48FBBBEB39CCD5157A99F3D40C4D4BC /* MAOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAOverlayRenderer.h; sourceTree = ""; }; E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = MJRefresh; path = libMJRefresh.a; sourceTree = BUILT_PRODUCTS_DIR; }; - E4DB94A4A958913F4DEAAC5961BB80B9 /* ZFIJKPlayerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFIJKPlayerManager.m; path = DDZFPlayerKit_Private/Classes/ijkplayer/ZFIJKPlayerManager.m; sourceTree = ""; }; - E4F0E4655E139103A4394964C824F558 /* ZFPersentInteractiveTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPersentInteractiveTransition.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPersentInteractiveTransition.h; sourceTree = ""; }; - E566FFBE1E891077F13982FFBEEC0E06 /* AnonymousDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousDisposable.swift; path = RxSwift/Disposables/AnonymousDisposable.swift; sourceTree = ""; }; - E5A842AC03240159C2D7A373C53EEDD3 /* SDWebImageMapKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageMapKit.h; path = DDWebImageKit_Private/Classes/SDWebImageMapKit/SDWebImageMapKit.h; sourceTree = ""; }; - E5E4A96A72027ADC8D7A969D1D99B6BB /* ZFLandscapeWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLandscapeWindow.h; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeWindow.h; sourceTree = ""; }; - E6024DCFBB4524B1AC53A2B94C3B5AFF /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = ""; }; - E60A2DAA7D2B91800BF97AF92F413AD2 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = ""; }; - E6145F6A2251DBFA7404007919F8188C /* ZFOrientationObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFOrientationObserver.m; path = DDZFPlayerKit_Private/Classes/Core/ZFOrientationObserver.m; sourceTree = ""; }; - E664F038D254411C91A99DAE329C0DD3 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; - E66AB1C2B3436690F8611175FFBE62D2 /* AMapNaviEleBikeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviEleBikeManager.h; path = AMapNaviKit.framework/Headers/AMapNaviEleBikeManager.h; sourceTree = ""; }; - E67F6D36E52E1896344836A05973FBDB /* RxCocoa.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxCocoa.debug.xcconfig; sourceTree = ""; }; - E6DCB8EF1110CFA75F9F7EBD8CDF9414 /* MATraceReplayOverlayRender.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MATraceReplayOverlayRender.m; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlayRender.m; sourceTree = ""; }; - E70CE3782A5F0EA3093963B09A8F7BA0 /* JXCategoryIndicatorImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorImageView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorImageView.h; sourceTree = ""; }; - E7BD47B6911577F6147241C333B965BF /* UICollectionViewLayout+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewLayout+MJRefresh.h"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.h"; sourceTree = ""; }; + E4A0682B73EADA16C42403C4E10F2A12 /* SchedulerType+SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SchedulerType+SharedSequence.swift"; path = "RxCocoa/Traits/SharedSequence/SchedulerType+SharedSequence.swift"; sourceTree = ""; }; + E4B5FB4FFF8AB9062376769BD3575F4F /* AMapLocationCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationCommonObj.h; path = AMapLocationKit.framework/Headers/AMapLocationCommonObj.h; sourceTree = ""; }; + E4BC9C0979D185B4718E845A86B47B85 /* AMapNaviDriveManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviDriveManager.h; path = AMapNaviKit.framework/Headers/AMapNaviDriveManager.h; sourceTree = ""; }; + E5233EFC1A112982D0425B4F7C643498 /* JXCategoryIndicatorDotLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorDotLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorDotLineView.m; sourceTree = ""; }; + E5291D5DC0B71BA4EF26AE0CC1C6BBE6 /* MAOfflineItemNationWide.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemNationWide.h; path = AMapNaviKit.framework/Headers/MAOfflineItemNationWide.h; sourceTree = ""; }; + E547F94527C61B623B7692BFFA58A7A7 /* UIButton+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIButton+DDCategory/UIButton+DDCategory.m"; sourceTree = ""; }; + E5730C59C24A6564E9896A7A187C1700 /* ZFPlayerMediaPlayback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerMediaPlayback.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerMediaPlayback.h; sourceTree = ""; }; + E59D5E323294187BA97F9DCCCA2CAB03 /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoStateFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m; sourceTree = ""; }; + E5AD2886EEC92A41102AFA180454BE80 /* ESTabBarItemContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemContainer.swift; path = Sources/ESTabBarItemContainer.swift; sourceTree = ""; }; + E5F0C2764A264E37BD41416288A31CEE /* IQKeyboardManagerConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstants.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstants.swift; sourceTree = ""; }; + E5F93560FC2C7A8AA71FC772667FF1A3 /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; + E63087B438B9A22D416CE6A32C3067F9 /* AMapCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapCommonObj.h; path = AMapSearchKit.framework/Headers/AMapCommonObj.h; sourceTree = ""; }; + E632E45183A44A8818C53E4D8F08F8F6 /* AMapSearchError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchError.h; path = AMapSearchKit.framework/Headers/AMapSearchError.h; sourceTree = ""; }; + E65AF53697F3F9D9D6DA4F80E94A0D48 /* ConstraintInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsets.swift; path = Sources/ConstraintInsets.swift; sourceTree = ""; }; + E6719601EF8326A4633467C30A16DD2D /* AMapTrackKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackKit.h; path = AMapTrackKit.framework/Headers/AMapTrackKit.h; sourceTree = ""; }; + E6F567E3A23DAE059A22DCD80A987D20 /* JXCategoryListContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryListContainerView.h; path = Sources/Common/JXCategoryListContainerView.h; sourceTree = ""; }; + E6FFE4D860DE4D742D3E569CF4076BDF /* DDButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDButton.swift; path = DDControlsKit_Private/Classes/DDButton/DDButton.swift; sourceTree = ""; }; + E7057C8A31DD87EA63F4B205A5826082 /* DDNavigationControllerDelegateReceiver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDNavigationControllerDelegateReceiver.m; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDNavigationControllerDelegateReceiver.m; sourceTree = ""; }; + E734E813B60F46993A6A3BDB5218CEEE /* Infallible+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Concurrency.swift"; path = "RxSwift/Traits/Infallible/Infallible+Concurrency.swift"; sourceTree = ""; }; + E73CE92DD4FE7D7478F6FBDF487927F2 /* ZFPresentTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPresentTransition.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPresentTransition.h; sourceTree = ""; }; + E77812B7E317F3982249BCDB641B27D1 /* Bundle+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bundle+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Bundle+ZLPhotoBrowser.swift"; sourceTree = ""; }; E7C9437E4E7340A6BDC7C73BE8A3B117 /* Pods-OrderSchedulingNotificationService */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-OrderSchedulingNotificationService"; path = "libPods-OrderSchedulingNotificationService.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - E7F10E0F399B6E7EFBFC9E4FC80F6522 /* MACircleRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACircleRenderer.h; path = AMapNaviKit.framework/Headers/MACircleRenderer.h; sourceTree = ""; }; - E8457101209DE2B5A13D5BEC8EDDB323 /* DDBaseNavigationController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseNavigationController.h; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDBaseNavigationController.h; sourceTree = ""; }; - E851E4ACF01D343915A6C5122ADD167B /* ZFKVOController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFKVOController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFKVOController.m; sourceTree = ""; }; - E869B0563FDF2FB5DD1C70CBD23F1386 /* DDBasicControlsKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDBasicControlsKit_Private.modulemap; sourceTree = ""; }; - E8992DFC4BAC285FC6B2750477970437 /* Disposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposable.swift; path = RxSwift/Disposable.swift; sourceTree = ""; }; - E8C49867A1B7DD27C702C0A687DCCE55 /* BehaviorRelay+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "BehaviorRelay+Driver.swift"; path = "RxCocoa/Traits/Driver/BehaviorRelay+Driver.swift"; sourceTree = ""; }; - E8EB4A092DAE7D80BD90779E0EBD0FCD /* DDToastKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDToastKit_Private.modulemap; sourceTree = ""; }; - E906A74469F9048F0A7BBC39B81E4306 /* ZLAnimationUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAnimationUtils.swift; path = Sources/General/ZLAnimationUtils.swift; sourceTree = ""; }; - E9283C71BE8EF6C41A438AB4079E1644 /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; - E976394F1E27CF9995D498FA1D7640EF /* JXCategoryImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageView.m; path = Sources/Image/JXCategoryImageView.m; sourceTree = ""; }; - E9BE2588B2DE054B0B95BDFE6BC57D8B /* MAParticleOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlay.h; path = AMapNaviKit.framework/Headers/MAParticleOverlay.h; sourceTree = ""; }; - E9E8E1D6FA76DAD512B88D9AE9C856FD /* HistoricalScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalScheduler.swift; path = RxSwift/Schedulers/HistoricalScheduler.swift; sourceTree = ""; }; - E9F6AF13B95E0C683BB1310CF0F01E71 /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; - EA00C2EF2C8729C7835C0FBBD468E5EB /* HTTPHeaders.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPHeaders.swift; path = Source/HTTPHeaders.swift; sourceTree = ""; }; - EA6B9B12BF83DDD3D3B9BA9257F95C3D /* DDWebImageKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDWebImageKit_Private.modulemap; sourceTree = ""; }; - EA7EA92099A8DE663BC19340D4CA9694 /* AMapNaviRoute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRoute.h; path = AMapNaviKit.framework/Headers/AMapNaviRoute.h; sourceTree = ""; }; - EACD991BB8E241D3FDD0B4E17F7C7D35 /* UIColor+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+Utils.swift"; path = "Source/Extensions/UIColor+Utils.swift"; sourceTree = ""; }; - EAD1AD83369B604327F955FBA37553C6 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; - EAD74672A0CFFCF3755E1D4EB5216767 /* Bundle+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bundle+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Bundle+ZLPhotoBrowser.swift"; sourceTree = ""; }; - EB309216660748833C0D73A9BFEE9325 /* RxTableViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDelegateProxy.swift; sourceTree = ""; }; - EB6DD9CCDEAE8345E77F307ACE94A2C3 /* NSObject+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSObject+DDCategory/NSObject+DDCategory.h"; sourceTree = ""; }; - EB7F24947F4EFB11CCB19E5596531B14 /* JXCategoryNumberView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberView.m; path = Sources/Number/JXCategoryNumberView.m; sourceTree = ""; }; - EB904B920A37349D37017E816F5C1D99 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; - EB9F950077FA14FEE9802FB20BC2E686 /* JXCategoryListContainerRTLCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryListContainerRTLCell.m; path = Sources/Common/JXCategoryListContainerRTLCell.m; sourceTree = ""; }; - EBBB11792460CBC6551C2718F353D0AD /* ConstraintLayoutGuide+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintLayoutGuide+Extensions.swift"; path = "Sources/ConstraintLayoutGuide+Extensions.swift"; sourceTree = ""; }; - EBBE521080A95E316C04B0F2E4939996 /* KingfisherManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherManager.swift; path = Sources/General/KingfisherManager.swift; sourceTree = ""; }; + E7DB509EC577AF23023320DFBABB4DAA /* CompositeDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositeDisposable.swift; path = RxSwift/Disposables/CompositeDisposable.swift; sourceTree = ""; }; + E82C182B3D851259E53CBC4E304D5314 /* DDPersistenceKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDPersistenceKit_Private-dummy.m"; sourceTree = ""; }; + E83D1F19C92D0CB67F6F840E12CB9DAB /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackGifFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h; sourceTree = ""; }; + E8B3DD439BC3748B0A4B65C42D2854B4 /* Single.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Single.swift; path = RxSwift/Traits/PrimitiveSequence/Single.swift; sourceTree = ""; }; + E8C25B177A2D21BBC6095F9C9455DA74 /* ESTabBarItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItem.swift; path = Sources/ESTabBarItem.swift; sourceTree = ""; }; + E8CFEAF0FFA89ADD774F1AC90DDAC0E8 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; + E93DCFE2E5C22480B870D1301A1DC422 /* AMapNaviRideManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRideManager.h; path = AMapNaviKit.framework/Headers/AMapNaviRideManager.h; sourceTree = ""; }; + E972F07E22D9205AFB655E75709F394A /* DDTimerSwiftKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDTimerSwiftKit_Private-dummy.m"; sourceTree = ""; }; + E9842D31A9EEFEFA22232D83EC96D6C9 /* AMapNaviManagerConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviManagerConfig.h; path = AMapNaviKit.framework/Headers/AMapNaviManagerConfig.h; sourceTree = ""; }; + E991797B63F375369191C4F81C359A0D /* DriveRouteCustomAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DriveRouteCustomAnnotationView.h; path = DDMAMapKit_Private/Classes/DDMAMap/AnnotationView/DriveRouteCustomAnnotationView.h; sourceTree = ""; }; + E9AF80B6D211BA142F5B96DFD2F4D4E9 /* SwiftyRSA.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftyRSA.swift; path = Source/SwiftyRSA.swift; sourceTree = ""; }; + EA06349BE41A269BCA57E429E2D65D32 /* JXCategoryViewAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryViewAnimator.h; path = Sources/Common/JXCategoryViewAnimator.h; sourceTree = ""; }; + EA1C69EF18EA03567A5AB5856EA13A3E /* Just.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Just.swift; path = RxSwift/Observables/Just.swift; sourceTree = ""; }; + EAF6FE31F0268D1B31CCEE94DC8CE3FC /* DDToastKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDToastKit_Private.debug.xcconfig; sourceTree = ""; }; + EB422058BCE7D4C81274BB6CDBF11004 /* KingfisherOptionsInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherOptionsInfo.swift; path = Sources/General/KingfisherOptionsInfo.swift; sourceTree = ""; }; + EBD33BE475D8487B542491727DBBD29B /* ConstraintRelatableTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelatableTarget.swift; path = Sources/ConstraintRelatableTarget.swift; sourceTree = ""; }; + EBDCF9C9311B3503A80E8A638EC25A58 /* DDZFPlayerKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDZFPlayerKit_Private.release.xcconfig; sourceTree = ""; }; EC46C56D3F58BDA592A93730A005EF26 /* DDCategoryKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDCategoryKit_Private; path = libDDCategoryKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - EC4A58C1118B56503E83B36C7EB9C869 /* AMapSearch-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapSearch-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; - EC53D7B46DBDAB7832BF075AED295D1B /* MAPointAnnotation+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MAPointAnnotation+DDCategory.h"; path = "DDMAMapKit_Private/Classes/DDMAMap/Annotation/MAPointAnnotation+DDCategory.h"; sourceTree = ""; }; - EC71C2E012859A7028256A577D0D4256 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; - EC87D7530DB76143050FD101A281B8B3 /* TextInput.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextInput.swift; path = RxCocoa/Common/TextInput.swift; sourceTree = ""; }; - ECF1923C17ACC43F03AC28982A84D44A /* IQKeyboardReturnKeyHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardReturnKeyHandler.swift; path = IQKeyboardManagerSwift/IQKeyboardReturnKeyHandler.swift; sourceTree = ""; }; - ED812C5DAFE92E0FE4A1E67B683840C5 /* Delegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delegate.swift; path = Sources/Utility/Delegate.swift; sourceTree = ""; }; - ED944B712524B9218887B7B2A4E4C80D /* UISearchController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISearchController+Rx.swift"; path = "RxCocoa/iOS/UISearchController+Rx.swift"; sourceTree = ""; }; - EDAEE2D7D51698FCC869FC8D93A7B686 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; - EDCA3E72F9B597E30F679F49F75C1248 /* RxCollectionViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDataSourceProxy.swift; sourceTree = ""; }; - EDF5720A320880B0D51D92B4E3903737 /* RxRelay-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxRelay-umbrella.h"; sourceTree = ""; }; - EE32E345CCB48B3C34363F8452AC2BA3 /* DDFontKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDFontKit_Private.debug.xcconfig; sourceTree = ""; }; - EE62199AFF21BE479CA842B08CC5E7CC /* DDMAGeometry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMAGeometry.h; path = DDMAMapKit_Private/Classes/DDMAUtil/DDMAGeometry.h; sourceTree = ""; }; - EEE82F387DA67624669B5EB02B280EEE /* DDNetworkingOfAlamofireKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDNetworkingOfAlamofireKit_Private-prefix.pch"; sourceTree = ""; }; - EF0FF53539B0A7C97B5B8D5936D3350E /* DDImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDImageView.swift; path = DDControlsKit_Private/Classes/DDImageView/DDImageView.swift; sourceTree = ""; }; - EF3D182C900BFDABDC1B8997FAF5738F /* DDWebImageKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDWebImageKit_Private-dummy.m"; sourceTree = ""; }; - F05B281F45E83926119676D408BE289B /* Kingfisher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Kingfisher.modulemap; sourceTree = ""; }; - F0F051B64889D28211277748AFC99FE0 /* MAOfflineItemNationWide.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemNationWide.h; path = AMapNaviKit.framework/Headers/MAOfflineItemNationWide.h; sourceTree = ""; }; - F0F071F1E2FBCFBA49D70A753B2D495C /* Kingfisher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.debug.xcconfig; sourceTree = ""; }; + EC57DF96897E5A30C3C47648AC341138 /* MJRefresh.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.debug.xcconfig; sourceTree = ""; }; + ECB168F76E634E9E8D7B8D5744FD68DE /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; + ECF55172DABBA580348BAC9B753BD5AC /* JXCategoryListContainerRTLCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryListContainerRTLCell.m; path = Sources/Common/JXCategoryListContainerRTLCell.m; sourceTree = ""; }; + ED39E4E52F3FC602FFBCC85FF5C9F1E1 /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Sources/Utility/Result.swift; sourceTree = ""; }; + ED4392B292DE2A7314D9E2A1246F479C /* ZLBaseStickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLBaseStickerView.swift; path = Sources/Edit/ZLBaseStickerView.swift; sourceTree = ""; }; + EDA62D90A6EF18A3A06FB0047BB4FBC2 /* Binder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Binder.swift; path = RxSwift/Binder.swift; sourceTree = ""; }; + EDDA5F4711874E111FF9BC56716D4961 /* ConstraintDirectionalInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsetTarget.swift; path = Sources/ConstraintDirectionalInsetTarget.swift; sourceTree = ""; }; + EE6B37DF478434B7B1119B8F64FE2DE2 /* EKMessageContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKMessageContentView.swift; path = Source/MessageViews/EKMessageContentView.swift; sourceTree = ""; }; + EEB935E2D962998DC8976D0C90B14258 /* NSMutableParagraphStyle+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableParagraphStyle+DDCategory.h"; path = "DDCategoryKit_Private/Classes/NSAttributedString+DDCategory/NSMutableParagraphStyle+DDCategory.h"; sourceTree = ""; }; + EEEE057AEC3F23421B6EA9039FDB2856 /* JXCategoryDotCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotCell.m; path = Sources/Dot/JXCategoryDotCell.m; sourceTree = ""; }; + EF022014DE530474C24326BAC5A6DB79 /* DDControlsKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDControlsKit_Private-umbrella.h"; sourceTree = ""; }; + EF3571AB946075130C467D7B52E57B27 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; + F0003A02B2F8BE1997210982CB46721C /* EKAttributes+Precedence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Precedence.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Precedence.swift"; sourceTree = ""; }; + F012A7A07E08614806BFED33E367673C /* MATraceReplayOverlayRender.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MATraceReplayOverlayRender.m; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlayRender.m; sourceTree = ""; }; + F0228724F2A8AB4A8F8561106985D58F /* EKRatingMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingMessage.swift; path = Source/Model/EKRatingMessage.swift; sourceTree = ""; }; + F044BC1978FC2262022D2676743B4136 /* ZFLandscapeWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLandscapeWindow.m; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeWindow.m; sourceTree = ""; }; + F0B7922BC30B7BF1ED70AE760EAE9B8F /* ConstraintInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsetTarget.swift; path = Sources/ConstraintInsetTarget.swift; sourceTree = ""; }; + F0D12838E134791FD8B8C121DC53207B /* AMapNaviDriveDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviDriveDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviDriveDataRepresentable.h; sourceTree = ""; }; + F0E88E1804BD36C799E5D7F8E7468B13 /* RxTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTarget.swift; path = RxCocoa/Common/RxTarget.swift; sourceTree = ""; }; + F0F237E167C347BB69215017CFE30122 /* RxPickerViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxPickerViewDataSourceProxy.swift; sourceTree = ""; }; F11C5D34D44394CFB2C5ADD740509CC9 /* DDPersistenceKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDPersistenceKit_Private; path = libDDPersistenceKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F1281EA034B52824FA67E9223ACF40B1 /* MAMapVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapVersion.h; path = AMapNaviKit.framework/Headers/MAMapVersion.h; sourceTree = ""; }; - F16536DAA77ED0535ACF08A801C3752F /* KVORepresentable+Swift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KVORepresentable+Swift.swift"; path = "RxCocoa/Foundation/KVORepresentable+Swift.swift"; sourceTree = ""; }; - F1756D58B22DE7E2697E4B004A427D3F /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = ""; }; - F1941DC9F9DA94904A2E255C4CC5D230 /* DelegateProxyType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelegateProxyType.swift; path = RxCocoa/Common/DelegateProxyType.swift; sourceTree = ""; }; - F207B5B35A3847675CDD8706D42407A6 /* IQKeyboardManagerSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-prefix.pch"; sourceTree = ""; }; - F222BA6E4D09D7FB5E244FFC860E95B7 /* DDFontKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDFontKit_Private-dummy.m"; sourceTree = ""; }; - F2350383A51553838E2F9C6F287D4094 /* ZFSmallFloatControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFSmallFloatControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSmallFloatControlView.m; sourceTree = ""; }; - F289594E61B9C3547D5D9FB34C5C1409 /* ImageTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageTransition.swift; path = Sources/Image/ImageTransition.swift; sourceTree = ""; }; - F2B053146B0F965492679960B447D107 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; - F2DF3DCF280CB7F0988EA498ABEB5C73 /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = ""; }; - F2F54B572E0B69402185F8ADBFCAB9BD /* SharedSequence+Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Operators.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Operators.swift"; sourceTree = ""; }; - F31EFDE70D0EBCBD2BE3D0CCF09DEA93 /* DDMutableAttributedString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDMutableAttributedString.swift; path = DDControlsKit_Private/Classes/DDAttributedString/DDMutableAttributedString.swift; sourceTree = ""; }; - F35C25DD77F8295C48EFB3A121510443 /* IQUITextFieldView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUITextFieldView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUITextFieldView+Additions.swift"; sourceTree = ""; }; - F36C76D4D0F0555D8A573700E284AB46 /* DDDateKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDDateKit_Private.debug.xcconfig; sourceTree = ""; }; + F12FC247A6868A9906DB8E68E99A0CD9 /* DDBaseScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseScrollView.m; path = DDBasicControlsKit_Private/Classes/DDBaseScrollView/DDBaseScrollView.m; sourceTree = ""; }; + F152A8D92F8C71DD5186AC3D836B0091 /* SizeExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SizeExtensions.swift; path = Sources/Utility/SizeExtensions.swift; sourceTree = ""; }; + F19F5369A2C30CBEB436D563F27A627D /* JCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JCore.release.xcconfig; sourceTree = ""; }; + F1DA3E0CFEC46A80560A01E5382DDD5A /* jpush-extension-ios-2.0.1.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = "jpush-extension-ios-2.0.1.xcframework"; sourceTree = ""; }; + F1EAFDB8E6858275DFAF08E51C168093 /* MBProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MBProgressHUD.m; path = DDProgressHUDKit_Private/Classes/MBProgressHUD.m; sourceTree = ""; }; + F21E017221B2B6C71172CC54E7859837 /* SwiftyRSA.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftyRSA.modulemap; sourceTree = ""; }; + F253094D312A5F09A2756F822CA0631E /* UINavigationItem+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationItem+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UINavigationItem+DDCategory/UINavigationItem+DDCategory.m"; sourceTree = ""; }; + F25983DDAD74C7CA9273F2941DCC832D /* ZLPhotoPreviewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewController.swift; path = Sources/General/ZLPhotoPreviewController.swift; sourceTree = ""; }; + F351DA757BE07CE570A716607D354353 /* CallbackQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CallbackQueue.swift; path = Sources/Utility/CallbackQueue.swift; sourceTree = ""; }; + F36B19F3BB62251835321071E1D44A0A /* Delay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delay.swift; path = RxSwift/Observables/Delay.swift; sourceTree = ""; }; F375C7DA720F6C0C81573E458E9A4020 /* Pods-OrderScheduling.prerelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OrderScheduling.prerelease.xcconfig"; sourceTree = ""; }; - F3BE690DD541CEA0596F424B3DB5AA11 /* DDLogKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDLogKit_Private-umbrella.h"; sourceTree = ""; }; - F3DACF596760B3927F2A87F4525E869F /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; - F3E9AC28C939292F9B719B3915E2DBD4 /* ESTabBarController-swift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ESTabBarController-swift-prefix.pch"; sourceTree = ""; }; - F44E54229C2F1F0ECF8A252B99B4591C /* ZFPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayer.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayer.h; sourceTree = ""; }; - F4605AB20E780CEEBAB5915C8ABAFFE4 /* GradientView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientView.swift; path = Source/Utils/GradientView.swift; sourceTree = ""; }; - F48B31330181A6CEA6285D68D1930D47 /* DDKeychain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDKeychain.swift; path = DDPersistenceKit_Private/Classes/DDKeychain.swift; sourceTree = ""; }; - F4A9A9C6F6984BEB9944D2A5B90DC0D1 /* EKFormMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKFormMessageView.swift; path = Source/MessageViews/EKFormMessageView.swift; sourceTree = ""; }; - F4E1C8200F59C5EEE5B199D3C14112F3 /* AMapFoundation-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapFoundation-NO-IDFA.release.xcconfig"; sourceTree = ""; }; - F4F3D95BE4918D33AFFEBFCC96BF3F08 /* UICollectionView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UICollectionView+DDCategory/UICollectionView+DDCategory.m"; sourceTree = ""; }; - F55C2E002D6A9DFD619C3356B154FB28 /* ImageDataProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProcessor.swift; path = Sources/Networking/ImageDataProcessor.swift; sourceTree = ""; }; - F58365E918C34F581D961AA3E86AF63D /* EKEntryView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKEntryView.swift; path = Source/Infra/EKEntryView.swift; sourceTree = ""; }; - F58D86E6745A5AB6737569C4B03F99FD /* DDAutoUIKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDAutoUIKit_Private-umbrella.h"; sourceTree = ""; }; - F5BBC4067CA81BBAA4EBFEDA598AC2D9 /* Array+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Array+ZLPhotoBrowser.swift"; sourceTree = ""; }; - F5CCA099FED76C4F267BD2DF3644DFEA /* EKColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKColor.swift; path = Source/Model/EKColor.swift; sourceTree = ""; }; - F6269AED9249114A702BD7E9049593F8 /* UICollectionView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UICollectionView+DDCategory/UICollectionView+DDCategory.h"; sourceTree = ""; }; - F645953944D89350C832A21884D4D04E /* MAMultiPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPoint.h; path = AMapNaviKit.framework/Headers/MAMultiPoint.h; sourceTree = ""; }; - F668E05FF8F24AE2FF3CD2A54441289E /* MAGltfOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGltfOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAGltfOverlayRenderer.h; sourceTree = ""; }; - F68DC04F51D533FE7335CE9CAEE6402E /* EKNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKNoteMessageView.swift; path = Source/MessageViews/Notes/EKNoteMessageView.swift; sourceTree = ""; }; - F6BA70E7A77F1435FA4EE77F92141727 /* JXCategoryIndicatorTriangleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorTriangleView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorTriangleView.h; sourceTree = ""; }; - F6CCD4C2D194D0F35697C8664EFA7E56 /* UIButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Kingfisher.swift"; path = "Sources/Extensions/UIButton+Kingfisher.swift"; sourceTree = ""; }; + F379EEDC35F567BD0DA26EDDEDFD137A /* DDZFPlayerKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDZFPlayerKit_Private-prefix.pch"; sourceTree = ""; }; + F380C5D34907A0E2146FBEDD873DE75D /* CombineLatest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombineLatest.swift; path = RxSwift/Observables/CombineLatest.swift; sourceTree = ""; }; + F39C7DC5C8AEA909746794BE8A37DCF9 /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; + F3B77B658E96012D96CA4E10ED05ABF2 /* EKSimpleMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKSimpleMessageView.swift; path = Source/MessageViews/EKSimpleMessageView.swift; sourceTree = ""; }; + F3C48B96FDEB3E7BE6187C7AD82154D6 /* URLEncodedFormEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLEncodedFormEncoder.swift; path = Source/URLEncodedFormEncoder.swift; sourceTree = ""; }; + F3DD7B37D9361E1A1F0624333F4892D6 /* KVORepresentable+Swift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KVORepresentable+Swift.swift"; path = "RxCocoa/Foundation/KVORepresentable+Swift.swift"; sourceTree = ""; }; + F4B239218EC15B23D1256268605F2D5A /* KingfisherManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherManager.swift; path = Sources/General/KingfisherManager.swift; sourceTree = ""; }; + F4BC744570A21D7B0C7586688083259C /* JXCategoryIndicatorRainbowLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorRainbowLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorRainbowLineView.h; sourceTree = ""; }; + F5496498F906246971438B7605E35C37 /* Reactive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reactive.swift; path = RxSwift/Reactive.swift; sourceTree = ""; }; + F58E4C3FDF308B6C5E1472A27C83EE9C /* ZFSmallFloatControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFSmallFloatControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSmallFloatControlView.m; sourceTree = ""; }; + F5CA91EB50F50DF3E3FEF0793030CFEF /* RxCocoa.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxCocoa.debug.xcconfig; sourceTree = ""; }; + F5D86760EC70ED805F2906BBA726B480 /* ZLPhotoBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ZLPhotoBrowser-dummy.m"; sourceTree = ""; }; + F61E032198739A4870C53D72D9AD0BE7 /* NSDate+BRPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDate+BRPickerView.h"; path = "BRPickerView/DatePickerView/NSDate+BRPickerView.h"; sourceTree = ""; }; + F642166314CD6308CA3D4F6BA47E2F1E /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = ""; }; + F64E1B390C0BFA057ACB5BB56E9C6EBF /* UIImageView+ZFCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+ZFCache.h"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIImageView+ZFCache.h"; sourceTree = ""; }; + F65966031F0AE0AF112AAA5B1829ED64 /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = ""; }; + F65C8C0533DCFF9A8AF83591B1C66855 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = ""; }; + F6796221B9F31EDE911E1B94FC451EBE /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = ""; }; F6D00CA03F52F8332AAD8FEEC4AFD406 /* ESTabBarController-swift */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "ESTabBarController-swift"; path = "libESTabBarController-swift.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F6D1B0AD2B5DA0E9E88BEAE91F9EF13D /* UICollectionViewCell+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewCell+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UICollectionViewCell+DDCategory/UICollectionViewCell+DDCategory.h"; sourceTree = ""; }; - F6D675079940CFE6C6B1495B5312FEF0 /* Scan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Scan.swift; path = RxSwift/Observables/Scan.swift; sourceTree = ""; }; - F6ED0EF3CAC4FA857384CB73579D87F0 /* DDTimerSwiftKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDTimerSwiftKit_Private.debug.xcconfig; sourceTree = ""; }; - F72E68825DA49D12F442AC4EF0859F0F /* PublishSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublishSubject.swift; path = RxSwift/Subjects/PublishSubject.swift; sourceTree = ""; }; - F730F619AB07DFE1487C5CB691EC6969 /* RxRelay.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxRelay.release.xcconfig; sourceTree = ""; }; - F73A64E4521EDBD1AAE1CC1963BEEE5F /* ZLWeakProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLWeakProxy.swift; path = Sources/General/ZLWeakProxy.swift; sourceTree = ""; }; - F7596FA4A53EE264922BF4A75414E32F /* UIDatePicker+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIDatePicker+Rx.swift"; path = "RxCocoa/iOS/UIDatePicker+Rx.swift"; sourceTree = ""; }; - F7AC5C76FD8E79C265D907673EAB9F00 /* RxRelay.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxRelay.debug.xcconfig; sourceTree = ""; }; - F7B78F698810A0591022F198B0486335 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = ""; }; - F8670F6A3BB697C3A2217A3C2C82C1F0 /* SwiftToast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftToast.swift; path = DDToastKit_Private/Classes/SwiftToast.swift; sourceTree = ""; }; - F87F28A1356F030F69EC94B4847BE7C4 /* QLCompatibility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QLCompatibility.swift; path = Source/Extensions/QuickLayout/QLCompatibility.swift; sourceTree = ""; }; - F89DB792BF01C3EED008EB246E7776F8 /* Throttle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Throttle.swift; path = RxSwift/Observables/Throttle.swift; sourceTree = ""; }; - F8EB1F9A1D977048FF7DD52FB2C33779 /* BRPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRPickerView.h; path = BRPickerView/BRPickerView.h; sourceTree = ""; }; - F90289338102C1712A8CE1AE5B0CB534 /* UIFont+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIFont+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIFont+DDCategory/UIFont+DDCategory.m"; sourceTree = ""; }; - F913AEF4BC19217524BA7CE744FAAB90 /* Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Session.swift; path = Source/Session.swift; sourceTree = ""; }; - F91A7A89EE1DD219751D3FD315064E4B /* MJRefresh.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.release.xcconfig; sourceTree = ""; }; - F91CB345D47A1CBC63EFA5827EAAD079 /* ZFPortraitControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPortraitControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPortraitControlView.h; sourceTree = ""; }; - F98A98BA8772BAC3D6526E7E5789E268 /* AMapSearchAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchAPI.h; path = AMapSearchKit.framework/Headers/AMapSearchAPI.h; sourceTree = ""; }; - F98CF6CFC81151AD968106D9247DF7FD /* UIView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UIView+DDCategory/UIView+DDCategory.h"; sourceTree = ""; }; - F9A4E64DDD778A0078227DB2C2AB4EFB /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; - F9B671CABEF0BE423F6CC28764C0D86A /* DDNetworkingOfAlamofireKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDNetworkingOfAlamofireKit_Private.debug.xcconfig; sourceTree = ""; }; - F9D0A1C3717C19D580A5795B7F06D8B2 /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackGifFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h; sourceTree = ""; }; - F9DC6C2DECE5FEEDE060B2B87E9CEA03 /* DDAutoUIKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDAutoUIKit_Private-prefix.pch"; sourceTree = ""; }; - F9E0B0BE0D9CD1ADF71FD9BA9AE55704 /* JXCategoryImageCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageCellModel.m; path = Sources/Image/JXCategoryImageCellModel.m; sourceTree = ""; }; - FA25B0C2F60DF29FA4C9113178755654 /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = ""; }; - FA661C9D61E242955EAA24C5E55475B1 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; - FAD04027EA1BF1B8E53A56CC177F01A7 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - FAD78060012C94DCD51ECE7DFEDE1E8D /* MAAnnotationMoveAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotationMoveAnimation.h; path = AMapNaviKit.framework/Headers/MAAnnotationMoveAnimation.h; sourceTree = ""; }; - FB064C8064492D58BA1BE26DA697E302 /* Bugly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Bugly.release.xcconfig; sourceTree = ""; }; - FB3A1F44A8776F9A707EDE298439737B /* JCore-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "JCore-xcframeworks.sh"; sourceTree = ""; }; - FB48A633C15265654DAC3B807921794D /* JXCategoryTitleVerticalZoomCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomCellModel.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCellModel.h; sourceTree = ""; }; - FB804492911B7D0F2826748AF43D21E7 /* DDTimerSwiftKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDTimerSwiftKit_Private-dummy.m"; sourceTree = ""; }; - FB8513A8DE688E94B560FFA2BD70FEB4 /* UITabBarController+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITabBarController+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UITabBarController+DDCategory/UITabBarController+DDCategory.m"; sourceTree = ""; }; - FB8B286BE1DB87F3BA9D2EC9ED194D2A /* Observable+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Bind.swift"; path = "RxRelay/Observable+Bind.swift"; sourceTree = ""; }; + F6D8C297B18F3C8BA6376EBBC8438357 /* IQTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextView.swift; path = IQKeyboardManagerSwift/IQTextView/IQTextView.swift; sourceTree = ""; }; + F73CEE099F6DB5631A42D93B9C41CD3A /* NSBundle+BRPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+BRPickerView.m"; path = "BRPickerView/Base/NSBundle+BRPickerView.m"; sourceTree = ""; }; + F78C1CC1793BC4D0195103A4600830E1 /* DDBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseView.h; path = DDBasicControlsKit_Private/Classes/DDBaseView/DDBaseView.h; sourceTree = ""; }; + F7A93B417FB7A04FFD0F23F003EBBAF2 /* Kingfisher-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-prefix.pch"; sourceTree = ""; }; + F7D2D112EE9A2BD1D293927FC373343D /* EncryptedMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EncryptedMessage.swift; path = Source/EncryptedMessage.swift; sourceTree = ""; }; + F89F07C931C3F3BA8DAC00E945A7A5BE /* ZLCustomCamera.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCustomCamera.swift; path = Sources/Camera/ZLCustomCamera.swift; sourceTree = ""; }; + F8A98015C90C034E9C04D6E0F1ABD1FC /* IQKeyboardManagerConstantsInternal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstantsInternal.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstantsInternal.swift; sourceTree = ""; }; + F90CC454C0F2A8E82FC1C8D5EDD95EA2 /* TextInput.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextInput.swift; path = RxCocoa/Common/TextInput.swift; sourceTree = ""; }; + F9257AB7E37A2115907120E5B17A1EED /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "DDWebImageKit_Private/Classes/SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; + F92DAF49F4F56C344C9D459A7E93A47F /* NSObject+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx.swift"; path = "RxCocoa/Foundation/NSObject+Rx.swift"; sourceTree = ""; }; + F92DC3831B43F4503392BB08C47EEC31 /* DDBaseTextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTextField.m; path = DDBasicControlsKit_Private/Classes/DDBaseTextField/DDBaseTextField.m; sourceTree = ""; }; + F938C730261FE19535211FACD553C164 /* EKWindow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKWindow.swift; path = Source/Infra/EKWindow.swift; sourceTree = ""; }; + F952889F3F23D8E918EA06EEB05E9E53 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = RxSwift/Observables/Filter.swift; sourceTree = ""; }; + F976AC5EA889B0439B7DDAB2F6813A00 /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefresh/Base/MJRefreshHeader.h; sourceTree = ""; }; + F9E1E301798563B619C73A5CAFDBCC3E /* ZFPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayer.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayer.h; sourceTree = ""; }; + FA1586A3E00388E9C70823796DACC14A /* SnapKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.debug.xcconfig; sourceTree = ""; }; + FA2025431831AD62BB4AC05FCA005431 /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+MJExtension.m"; path = "MJRefresh/UIView+MJExtension.m"; sourceTree = ""; }; + FA8D42323BA231450F57A9C8F53795CE /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalHeader.h; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.h; sourceTree = ""; }; + FA94C2A2A118659F66527DC1D594A44D /* Bool+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bool+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Bool+ZLPhotoBrowser.swift"; sourceTree = ""; }; + FAAA4A6D4A5E73151C7CE5B52BA51F89 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; + FAAFE1127015814792CD62384937C84E /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; + FAB77DBD2EAA9186B4C583AE22CF34A3 /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+MJRefresh.m"; path = "MJRefresh/NSBundle+MJRefresh.m"; sourceTree = ""; }; + FAEB70F7E89629819E6352D65B72E37F /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; + FB4414A9248D03B8B7104D1E67CBC979 /* MAPointAnnotation+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "MAPointAnnotation+DDCategory.m"; path = "DDMAMapKit_Private/Classes/DDMAMap/Annotation/MAPointAnnotation+DDCategory.m"; sourceTree = ""; }; FB908FBF9F755AFB285A27A674140F71 /* DDMAMapKit_Private-DDMAMapKit_Private */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "DDMAMapKit_Private-DDMAMapKit_Private"; path = DDMAMapKit_Private.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - FBD72F348F05E6D36DDAA1DE1A20856D /* MAMultiPointOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPointOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAMultiPointOverlayRenderer.h; sourceTree = ""; }; - FC02A1B23677EB9F0258396FA312264D /* DDBaseScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseScrollView.h; path = DDBasicControlsKit_Private/Classes/DDBaseScrollView/DDBaseScrollView.h; sourceTree = ""; }; - FC0EEB14DE1EDCA76ADF706C778C095C /* UILayoutSupport+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UILayoutSupport+Extensions.swift"; path = "Sources/UILayoutSupport+Extensions.swift"; sourceTree = ""; }; - FC971A3A9EDA097ABE98F185983DB4CA /* UITextView+DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextView+DDCategory.h"; path = "DDCategoryKit_Private/Classes/UITextView+DDCategory/UITextView+DDCategory.h"; sourceTree = ""; }; - FCAB0AA2CD7584C71B227EFE07A72652 /* JXCategoryFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryFactory.h; path = Sources/Common/JXCategoryFactory.h; sourceTree = ""; }; - FCF3BF8314160B0D0A97BA7AFD00B9E5 /* ImageCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageCache.swift; path = Sources/Cache/ImageCache.swift; sourceTree = ""; }; - FD5E1F42668AD531E8DA5CF07A8262F8 /* JPushExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPushExtension.debug.xcconfig; sourceTree = ""; }; - FD6ACCDFDFB40B51E0A7536360185958 /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = ""; }; - FD7AD4C562A08C6A2483BF35A7988CA7 /* JXCategoryTitleVerticalZoomCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomCellModel.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCellModel.m; sourceTree = ""; }; - FDFFAA0F525073C9A515588E54DBDDB4 /* Kingfisher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.release.xcconfig; sourceTree = ""; }; - FE60A6156D03AE9D1899CC6F69CF7591 /* ZLVideoManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLVideoManager.swift; path = Sources/General/ZLVideoManager.swift; sourceTree = ""; }; - FEF61169EFB951016571C2CC1E329D47 /* ConstraintInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsets.swift; path = Sources/ConstraintInsets.swift; sourceTree = ""; }; - FF5C841B7C33D8103A0A0F9FF3BA67B0 /* KFImageOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageOptions.swift; path = Sources/SwiftUI/KFImageOptions.swift; sourceTree = ""; }; - FF6A0846BAF94C70B4F299449B47C645 /* ZLPhotoBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ZLPhotoBrowser-dummy.m"; sourceTree = ""; }; + FBD2A9F38E80A5B854035F6E481BA91C /* DDBaseViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseViewController.m; path = DDBasicControlsKit_Private/Classes/DDBaseViewController/DDBaseViewController.m; sourceTree = ""; }; + FBE9BB952D4ECCE48077BB3240E04B16 /* BRPickerStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRPickerStyle.m; path = BRPickerView/Base/BRPickerStyle.m; sourceTree = ""; }; + FC174CD732D55828ED525F77700397CD /* AMapTrackTrackObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackTrackObj.h; path = AMapTrackKit.framework/Headers/AMapTrackTrackObj.h; sourceTree = ""; }; + FC1B3C2C9696D13CE6131CFBD6B2FAFB /* IQKeyboardManagerSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-prefix.pch"; sourceTree = ""; }; + FC78F66723760DF2E1A85287196BA8BB /* MAPolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolylineRenderer.h; path = AMapNaviKit.framework/Headers/MAPolylineRenderer.h; sourceTree = ""; }; + FCC5DC18D8B6ACAF7102214971196A2B /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; + FCEE53B07BD954B681873FBB74FC12CB /* Completable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Completable.swift; path = RxSwift/Traits/PrimitiveSequence/Completable.swift; sourceTree = ""; }; + FD011CA76BBA19162FB843AD9DD94A45 /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = ""; }; + FD16DB6C2CC6EB9E78110FFBDC017BD7 /* JXCategoryIndicatorCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorCellModel.h; path = Sources/Indicator/JXCategoryIndicatorCellModel.h; sourceTree = ""; }; + FDA997DA217CC6F8EF3B72BAF6720725 /* Observable+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Bind.swift"; path = "RxRelay/Observable+Bind.swift"; sourceTree = ""; }; + FE0E0216760A95C6486BF69B22EB7321 /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = ""; }; + FE13D1D1E9D13E5DBC54FD150771D5E5 /* ZLPhotoConfiguration+Chaining.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ZLPhotoConfiguration+Chaining.swift"; path = "Sources/General/ZLPhotoConfiguration+Chaining.swift"; sourceTree = ""; }; + FE368C984EA9F1C0E750A90989284556 /* Kingfisher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.release.xcconfig; sourceTree = ""; }; + FE5DE668F50BE4095450E30672792B55 /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; + FEEECA72C1BB5566120AF0EA7AEC1BC3 /* ZFPlayerLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerLogManager.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerLogManager.m; sourceTree = ""; }; + FF6E8F7D25ECF33B09FA952CE6EEDE59 /* Cancelable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Cancelable.swift; path = RxSwift/Cancelable.swift; sourceTree = ""; }; FF8B264DFE802855D5D67E7CDDABFC3C /* RxRelay */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RxRelay; path = libRxRelay.a; sourceTree = BUILT_PRODUCTS_DIR; }; - FFCC805403C8886D7DE1892B7355F3A4 /* DDBaseMutableAttributedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseMutableAttributedString.h; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseMutableAttributedString.h; sourceTree = ""; }; - FFD9E84FEB3AF8AEB7EB3E96772C1160 /* JXCategoryView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXCategoryView-prefix.pch"; sourceTree = ""; }; - FFE0B4B0AFE7D95A1FA935DCA780F2E6 /* ControlProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlProperty.swift; path = RxCocoa/Traits/ControlProperty.swift; sourceTree = ""; }; + FF92EACA368FAB1532C0EC79209A48A7 /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; + FFB8875C560BB590860F8E9E253B6F82 /* ImageModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageModifier.swift; path = Sources/Networking/ImageModifier.swift; sourceTree = ""; }; + FFD2DD6C44BEEFE07B7C888B111ADB65 /* UIImageView+DDCategory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+DDCategory.m"; path = "DDCategoryKit_Private/Classes/UIImageView+DDCategory/UIImageView+DDCategory.m"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -3301,6 +3315,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 185163A4AB41406448BCA36CF8C44CE1 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 1B1B2ABAC864873782928E419562C8E5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3315,13 +3336,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 28F9A693798DF53CBEFD287EF99A47C4 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 2A677EBF9871ADA41FDE3D0BAA2FBF04 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3329,7 +3343,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 422C1CC0228953C2AF0131805280C74B /* Frameworks */ = { + 352FF9D4A3004647CAC02F26852580F2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3343,13 +3357,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4A0A4A290EBED704470793351C854798 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 55CD4B4AE879E5B05ADA877BEC57855A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3371,6 +3378,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 5AD59E74E28630690A6DB1FA86604EFB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 61C4C73E476D1535B2604229BAA1DE06 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3420,13 +3434,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 8F8B497C1C9C0E017ECA50B0D4D9C384 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 91C28E5F4B5678B51CA36C84DAAC2351 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3434,14 +3441,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 96458AF18D00E7BB5940873E79844C92 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9A4603E98A024055EA89426B2A9A5DBD /* Frameworks */ = { + 9F55DEE06F31302485599F36FF5B115D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3462,6 +3462,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + A7C3BFA7240E8DB2F1CFEBF5A1CE9AD9 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BB9D512D2B1640871D2EB3064F23ACBC /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; C23690D2E28990F2C02177E957655DD8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3469,7 +3483,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C76095DF760CCADD6353FBA34CAC82C6 /* Frameworks */ = { + CEAF7311D291BCC70F1EEB17DCD7A22B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3525,7 +3539,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - FC4065FE4C0D5CD99B0F38B028886964 /* Frameworks */ = { + EBDC5C6ED69F08B5CBAA7127560BD0C4 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3542,639 +3556,476 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 006B5A6007462E5472F8E35892DDB73F /* Resources */ = { + 00BC6D491191AB503276877DB8BCDDEF /* UICollectionView+DDCategory */ = { isa = PBXGroup; children = ( - 1CCC32A15E2D7DF8024C4214D3BEB275 /* ZLPhotoBrowser.bundle */, + 172C51BE1DD73A6B9E6FBCDF85F07222 /* UICollectionView+DDCategory.h */, + C6370465DE051DC741FEEC5C865F2540 /* UICollectionView+DDCategory.m */, ); - name = Resources; + name = "UICollectionView+DDCategory"; sourceTree = ""; }; - 00FA8688E0052FC90A3B9AC7AFC812F2 /* Support Files */ = { + 01AC19621C479575C896ABEC5BCA9F87 /* DDToastKit_Private */ = { isa = PBXGroup; children = ( - AD2ACFF1DFA41266B9306E32661D9DBF /* DDCategoryKit_Private.modulemap */, - A0C8CD78464DDFAC6AAB40D06B87B19C /* DDCategoryKit_Private-dummy.m */, - D3F3C29F79517D4BE19D48E89B13B336 /* DDCategoryKit_Private-prefix.pch */, - 5B4BC63919A3E72038260D326E124013 /* DDCategoryKit_Private-umbrella.h */, - 7543597AE632D6723F32384B9D094639 /* DDCategoryKit_Private.debug.xcconfig */, - CE78DE063032C13CA169F0D4E35D0C06 /* DDCategoryKit_Private.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/DDCategoryKit_Private"; - sourceTree = ""; - }; - 0100EAF5D13E984F13B77CEC114396CF /* UIFont+DDCategory */ = { - isa = PBXGroup; - children = ( - D884C54D48E41C3591EA6C12160AFD84 /* UIFont+DDCategory.h */, - F90289338102C1712A8CE1AE5B0CB534 /* UIFont+DDCategory.m */, - ); - name = "UIFont+DDCategory"; - sourceTree = ""; - }; - 019D529A56B45AD8A1CDB539C2E1C444 /* DDBaseCollectionViewCell */ = { - isa = PBXGroup; - children = ( - 7FE5238A67605D1950E755054FB81B7E /* DDBaseCollectionViewCell.h */, - 9A61BD7C718085152A2E0DBA8BD12B5E /* DDBaseCollectionViewCell.m */, - ); - name = DDBaseCollectionViewCell; - sourceTree = ""; - }; - 07903E7B5627A9479C7623ED8F34D2EF /* DDBaseViewController */ = { - isa = PBXGroup; - children = ( - A502205308EE0FC9C10E22A31CE6F71E /* DDBaseViewController.h */, - B2ACA13B00E5467166618284A6D4BCC0 /* DDBaseViewController.m */, - 1E410062BB39B5CDA41091DB3E1B30B3 /* Resources */, - ); - name = DDBaseViewController; - sourceTree = ""; - }; - 083103732FC4FFA9B162E838A6CFBEEE /* DDToastKit_Private */ = { - isa = PBXGroup; - children = ( - F8670F6A3BB697C3A2217A3C2C82C1F0 /* SwiftToast.swift */, - D7397272192155E4857A772EBD8C46EE /* Toast.swift */, - 8DD942FEAA98B1E8F8D36C8BBA5A7707 /* Support Files */, + 99F16FAC67F968BECFBC0427D7ADC2D6 /* SwiftToast.swift */, + 80F6990D25520C9527311757E4DFE886 /* Toast.swift */, + 8CD0303A9784EE502B75A1357BD6DD6A /* Support Files */, ); name = DDToastKit_Private; path = DDToastKit_Private; sourceTree = ""; }; - 0870BF026127C20EB80E7E62EADB34DE /* Support Files */ = { + 029407C736CC65F51F7533479228E894 /* Support Files */ = { isa = PBXGroup; children = ( - D1981AB4E6095FE67A531C3C89E89D1A /* DDColorKit_Private.modulemap */, - 7126C236B3D3ED1FE9DA844C3F8BA19E /* DDColorKit_Private-dummy.m */, - 948228553BAEAFE7515BF59B6D431AAC /* DDColorKit_Private-prefix.pch */, - AF102BB030DB51979C8828A4CCFB60C6 /* DDColorKit_Private-umbrella.h */, - 91434C469D5871EB47A06BB1F20E11BA /* DDColorKit_Private.debug.xcconfig */, - BB72A1810FDD4CCC3BE72F8F8789ACE8 /* DDColorKit_Private.release.xcconfig */, + 0A55B4C27BC6F39FDDC74AD8A0E87382 /* AMapSearch-NO-IDFA.debug.xcconfig */, + 60C12B20AA097F6B962ECE262990F404 /* AMapSearch-NO-IDFA.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/DDColorKit_Private"; + path = "../Target Support Files/AMapSearch-NO-IDFA"; sourceTree = ""; }; - 09593F5D60070A7E6233FD3C04D96B08 /* DDTableViewCell */ = { + 02C8F2881AE4733C5C3B90484111DA1D /* Support Files */ = { isa = PBXGroup; children = ( - 29A451DB1577B4AA8431FE05F486FAAB /* DDTableViewCell.swift */, - ); - name = DDTableViewCell; - sourceTree = ""; - }; - 095D99567183BC8C8461D876FFE46400 /* Support Files */ = { - isa = PBXGroup; - children = ( - B02516E9B4BC3E2BA10A7E08EA083BAC /* DDZFPlayerKit_Private.modulemap */, - 39747070E76BCD6148E337EFB621459A /* DDZFPlayerKit_Private-dummy.m */, - 281A8CB84D21A4F9EB382BAE155A0A60 /* DDZFPlayerKit_Private-prefix.pch */, - B4D418578C68AF7C0F160C69F6D719A2 /* DDZFPlayerKit_Private-umbrella.h */, - 95A0AA7C1BDCC650BEE58F0BEEC83F3C /* DDZFPlayerKit_Private.debug.xcconfig */, - 53527B1AD2355D7D1879A8794C57BBE8 /* DDZFPlayerKit_Private.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/DDZFPlayerKit_Private"; - sourceTree = ""; - }; - 09ADF5BA2FF82FE29326ABA6E6FED62D /* DDBaseImageView */ = { - isa = PBXGroup; - children = ( - E072741348185C3BC294AF1F31AB4987 /* DDBaseImageView.h */, - 57C36663553EE3FC62867CC6565A39B3 /* DDBaseImageView.m */, - ); - name = DDBaseImageView; - sourceTree = ""; - }; - 0A48A165A8452757B3201705D386DAA7 /* DDTableView */ = { - isa = PBXGroup; - children = ( - DE9CABB0B007DC5E6F3D70E33F52F4F7 /* DDTableView.swift */, - ); - name = DDTableView; - sourceTree = ""; - }; - 0A9A27BA8E0CC5712A62968578C3486B /* Resources */ = { - isa = PBXGroup; - children = ( - 19A1A393BBB8C3687E353285CE7CB828 /* BRAddressPickerView.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - 0B9F10971D16EB2C39DBEA39B7F5EC17 /* UIButton+DDCategory */ = { - isa = PBXGroup; - children = ( - A9E35A855C73220ADD2A2008219BD61F /* UIButton+DDCategory.h */, - 155DD87F7F232F6CE6A79AE12B725191 /* UIButton+DDCategory.m */, - ); - name = "UIButton+DDCategory"; - sourceTree = ""; - }; - 0BC73D79404F1F157BADCAB9B83CBDDE /* Frameworks */ = { - isa = PBXGroup; - children = ( - A6305B0A7669981BF0E69BB1D66D6266 /* jpush-ios-5.0.1.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 0E2571EF18DA0E6D6C33BE6B38E2E689 /* BRPickerView */ = { - isa = PBXGroup; - children = ( - F8EB1F9A1D977048FF7DD52FB2C33779 /* BRPickerView.h */, - 3268F42963CE9BEB414F6C44E9C5D433 /* AddressPickerView */, - DC706FF1390D89B8C3C352C9193120D8 /* Base */, - 3DB570AF29646540C44E82D91592EF68 /* DatePickerView */, - ADA244F1F697B835425EAFD8DE5A9AD1 /* StringPickerView */, - FBC988B1AE83920229C2A6BA796E15B8 /* Support Files */, - ); - name = BRPickerView; - path = BRPickerView; - sourceTree = ""; - }; - 0E917225EAC1F41CB510C24FDE36705D /* DDImage */ = { - isa = PBXGroup; - children = ( - 79C4E2407E2CED7DC8E6149454EEA006 /* DDImage.swift */, - ); - name = DDImage; - sourceTree = ""; - }; - 0F2DAF956E90A7A1AD494470E0996F45 /* CALayer+DDCategory */ = { - isa = PBXGroup; - children = ( - 0C1B0962ACB69DFB81C49FCBFAB49D70 /* CALayer+DDCategory.h */, - E2984493084767F6E06C2285A66F30D2 /* CALayer+DDCategory.m */, - ); - name = "CALayer+DDCategory"; - sourceTree = ""; - }; - 0F88E5A767E56B490E063084536C7444 /* DDControlsKit_Private */ = { - isa = PBXGroup; - children = ( - 24A6D15C4C3094E707EDC9542511130A /* DDAttributedString */, - ED8489C3806B871F349EC0CC3DADE11A /* DDButton */, - 56805E6B4ED804D134AB9C28083A303C /* DDCollectionView */, - 0F8A7C0E561816849EEED1E20BFC1DFC /* DDCollectionViewCell */, - 0E917225EAC1F41CB510C24FDE36705D /* DDImage */, - 58535D3BBEFC460E2995D2EC6F59578A /* DDImageView */, - 48BEFE7F48443F6B1A85A42725ABE2A4 /* DDLabel */, - 2F0281EF4CA6DD20C194AE4A8AA3A56E /* DDNavigationController */, - BD7EC8BD7EE2A10662B316FE07C8C3EE /* DDScrollView */, - ADF776B1852338F2B3E20510D6065079 /* DDSwitch */, - 0A48A165A8452757B3201705D386DAA7 /* DDTableView */, - 09593F5D60070A7E6233FD3C04D96B08 /* DDTableViewCell */, - 74F06EA5CCC9A71D1E83558FA810FEFE /* DDTextField */, - 96618015A9C9171B5C554EF3D9807686 /* DDTextView */, - 9398699120F628A6DC6F9CBD55A3620A /* DDView */, - C7A05CAD7A35CF98EF961A76D1C1BD64 /* DDViewController */, - F98694A00944B661A6B97E800585A51C /* Support Files */, - ); - name = DDControlsKit_Private; - path = DDControlsKit_Private; - sourceTree = ""; - }; - 0F8A7C0E561816849EEED1E20BFC1DFC /* DDCollectionViewCell */ = { - isa = PBXGroup; - children = ( - D850DE1D050D92936B3504ADF141E91B /* DDCollectionViewCell.swift */, - ); - name = DDCollectionViewCell; - sourceTree = ""; - }; - 109FA7686C14170F05EB7D0EFDB67099 /* SwiftEntryKit */ = { - isa = PBXGroup; - children = ( - 9064B229A0C9BBF7710203F345112E0F /* EKAccessoryNoteMessageView.swift */, - DE321EDB4DA518EA0C92146DAEA98721 /* EKAlertMessage.swift */, - 766332A5D5F2206BC1B60B631765F5CD /* EKAlertMessageView.swift */, - 4D81551FCEB78DB3AB62B0BE049F6F97 /* EKAttributes.swift */, - D319C5607ED9AC195CC83D1F272DA64C /* EKAttributes+Animation.swift */, - 1C89DDCB6B76E6E74991155BDD7417BF /* EKAttributes+BackgroundStyle.swift */, - 859B9DA928AEBE087766D1267554DDB0 /* EKAttributes+DisplayMode.swift */, - C8C1BD92F4FFFE77CBCF4697A475E103 /* EKAttributes+Duration.swift */, - 6C3233B033C5A5969D7505E3C7C5A08A /* EKAttributes+FrameStyle.swift */, - B4E84B6EA2A74FDEC8600BE08CD2B986 /* EKAttributes+HapticFeedback.swift */, - D92891C0EEF85D2B5497707BDE9F95BC /* EKAttributes+LifecycleActions.swift */, - 67AC14DD412A9434D1CC90519DBE1DEF /* EKAttributes+PopBehavior.swift */, - 7231A1CEC3FD30E18906AFFBE289E2F6 /* EKAttributes+Position.swift */, - 95BCC80DF87FC784EB4B5758A674FBE7 /* EKAttributes+PositionConstraints.swift */, - A5C27657E9CED84E123DEA6B82612948 /* EKAttributes+Precedence.swift */, - 9F4F6F9D8F1ADBBAB50B845421B78553 /* EKAttributes+Presets.swift */, - 5C054DD196A7A71E03C60687CF594E64 /* EKAttributes+Scroll.swift */, - 3B25C17A130C7D0803E27E8E5E9F32A2 /* EKAttributes+Shadow.swift */, - DB8259E65C7342319A9322E5E3A86C5B /* EKAttributes+StatusBar.swift */, - 669B5C29CF525051C1EB773ADD8D186C /* EKAttributes+UserInteraction.swift */, - E1C0DFBEB1656E5775769E9DD7592F4C /* EKAttributes+Validations.swift */, - 7B0589635BD25BF46D13DA3F74A2322A /* EKAttributes+WindowLevel.swift */, - 7D6F73E591DEFE4B35BC78F81117823D /* EKBackgroundView.swift */, - 1A41DF6CD1AD6889E66B8CA963800B7F /* EKButtonBarView.swift */, - D383DA1391C54C646431F49F02AD4CB3 /* EKButtonView.swift */, - F5CCA099FED76C4F267BD2DF3644DFEA /* EKColor.swift */, - 0F7E2EFC10113572603ACEDC0104B9DB /* EKContentView.swift */, - F58365E918C34F581D961AA3E86AF63D /* EKEntryView.swift */, - F4A9A9C6F6984BEB9944D2A5B90DC0D1 /* EKFormMessageView.swift */, - 25D5B0EC7853FA1611F5ECF6F9051834 /* EKImageNoteMessageView.swift */, - 66DC558EE0EFA1B9CF47F2C5FAAB9FB1 /* EKMessageContentView.swift */, - F68DC04F51D533FE7335CE9CAEE6402E /* EKNoteMessageView.swift */, - 1C6E0CE6E040E868C4B0B105196EE7D4 /* EKNotificationMessage.swift */, - 37D3D04490451704B11D7D43D18068B4 /* EKNotificationMessageView.swift */, - 26C10877BAE09CF271CA0D8362D7A023 /* EKPopUpMessage.swift */, - 668B4A4AB1A2C83E682019C403BEA3EC /* EKPopUpMessageView.swift */, - C5D2643257262C300B029ED4BF866DAA /* EKProcessingNoteMessageView.swift */, - 27E2F9777D905718F97C32C42E876362 /* EKProperty.swift */, - 32873B078B8FB04C3E580A3AEED3F4BF /* EKRatingMessage.swift */, - 518D33F31F8D21142313CF1C22FDE058 /* EKRatingMessageView.swift */, - C4654F192727322A5B6B3618A117EC3E /* EKRatingSymbolsContainerView.swift */, - 1CCDEC305D8C287F103BFB6BBF51CBB3 /* EKRatingSymbolView.swift */, - 8F9BCBB578AC64837E4C65D41B98530D /* EKRootViewController.swift */, - 9B9B6DEEBF041C124622D3692A52E655 /* EKSimpleMessage.swift */, - 55B582D91E35E4C6AED1B4FCCB977C20 /* EKSimpleMessageView.swift */, - D123B4BE07B72930183427DA4699782C /* EKStyleView.swift */, - D603E61638C5D8B6B4577880F43440FD /* EKTextField.swift */, - 809A942811E904E5AB37C4F1A042F7C7 /* EKWindow.swift */, - 7C5D15D33491C746363CB0AA1240F94C /* EKWindowProvider.swift */, - 626B37D6DBBAFD585FD1D4209C8733B4 /* EKWrapperView.swift */, - 694F5DB4268D75FC1DBA4B4FE8E58961 /* EKXStatusBarMessageView.swift */, - 781B7F0FA16637E1AC33A6D46469B943 /* EntryAppearanceDescriptor.swift */, - D93DC5FA6C8CE42E9948BD0360B325CB /* EntryCachingHeuristic.swift */, - F4605AB20E780CEEBAB5915C8ABAFFE4 /* GradientView.swift */, - 3BF5D3C8E5F8607DB7612921FDEE0AFD /* HapticFeedbackGenerator.swift */, - F87F28A1356F030F69EC94B4847BE7C4 /* QLCompatibility.swift */, - 0D58BECCF834BC7C0F2CAD00747A9431 /* QLUtils.swift */, - 975DCF119919FD799B4096722F0FC6A0 /* SwiftEntryKit.swift */, - B0BEA9C6D6413A703B39402E3A52891A /* UIApplication+EKAppearance.swift */, - EACD991BB8E241D3FDD0B4E17F7C7D35 /* UIColor+Utils.swift */, - BA1421B2932619A7D54A922FC19764AE /* UIEdgeInsets+Utils.swift */, - 0B9C8E56726505D59BB4B6125A16D941 /* UIRectCorner+Short.swift */, - BC0F31D20DAA777B08D7F0A70FBF0456 /* UIView+QLContentWrap.swift */, - 2F731D3A2045EA7A0F28A26D17305C70 /* UIView+QuickLayout.swift */, - 0EE30168F12596011B0BB7565F9C67C2 /* UIView+Responder.swift */, - E02DC36E54D7319048DAB95A9C962E25 /* UIView+Shadow.swift */, - 83C73AD16B130938F86D5F21B5A4CC3E /* UIView+Utils.swift */, - 021840F3237EF92607CF6AFD69AA02CB /* UIViewArray+QuickLayout.swift */, - 3F8B959FD062B3A13D9AD56993CE7251 /* Support Files */, - ); - name = SwiftEntryKit; - path = SwiftEntryKit; - sourceTree = ""; - }; - 110C5907BDA4A7ECF902E1E6DA5026F3 /* Support Files */ = { - isa = PBXGroup; - children = ( - 6B6784F5C6162F59169E329C1791CCFB /* ESTabBarController-swift.modulemap */, - 24DB28A9C633662C130D493AC963ACBA /* ESTabBarController-swift-dummy.m */, - F3E9AC28C939292F9B719B3915E2DBD4 /* ESTabBarController-swift-prefix.pch */, - DC38CD6E458446493D8DFD6140262228 /* ESTabBarController-swift-umbrella.h */, - 36882266D56742AF3E97A83FB24DCAEA /* ESTabBarController-swift.debug.xcconfig */, - 6E5DE0EBD0ABA86A5FA7C634811DE1C0 /* ESTabBarController-swift.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/ESTabBarController-swift"; - sourceTree = ""; - }; - 122129E57FD844996C32C0386085C046 /* Support Files */ = { - isa = PBXGroup; - children = ( - E869B0563FDF2FB5DD1C70CBD23F1386 /* DDBasicControlsKit_Private.modulemap */, - 45B0433A65006C9585B4DDDF463F1C62 /* DDBasicControlsKit_Private-dummy.m */, - A07D151B5D8E9E674A370F429FFD441E /* DDBasicControlsKit_Private-prefix.pch */, - BB93A49E9634BBCEFDD4A96DB107C288 /* DDBasicControlsKit_Private-umbrella.h */, - BBC4A1F24EDA3263F4284B89F47B913D /* DDBasicControlsKit_Private.debug.xcconfig */, - D872D7C3EF24EA7A12661B82ACF37064 /* DDBasicControlsKit_Private.release.xcconfig */, - E0A40AE055DF5C3134B4C1A716808CE5 /* ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/DDBasicControlsKit_Private"; - sourceTree = ""; - }; - 14D24B03BAC8D432219F174674254E86 /* Support Files */ = { - isa = PBXGroup; - children = ( - E20C93508493A2DCBC91469229422DDB /* RxRelay.modulemap */, - 283576C304850D61EA0ED1A252988D7B /* RxRelay-dummy.m */, - 07A4D50E178A36E1C1AD78E6EE7344CE /* RxRelay-prefix.pch */, - EDF5720A320880B0D51D92B4E3903737 /* RxRelay-umbrella.h */, - F7AC5C76FD8E79C265D907673EAB9F00 /* RxRelay.debug.xcconfig */, - F730F619AB07DFE1487C5CB691EC6969 /* RxRelay.release.xcconfig */, + 0786DA9CD174F13D7BC2C6587FAF4C3F /* RxRelay.modulemap */, + 36BC95E1B7FB0EB339BF33169EA412F1 /* RxRelay-dummy.m */, + B3F3FDCE964A52521401B5CDDAE320C6 /* RxRelay-prefix.pch */, + 81A5E3DEB4B9DE59D53FE036690BD6DD /* RxRelay-umbrella.h */, + 913C65E726ED99076CBDD7252B369B09 /* RxRelay.debug.xcconfig */, + 5C511C6AA2E322E60CF12039EF9A4C89 /* RxRelay.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/RxRelay"; sourceTree = ""; }; - 150CF28FFB6BE1F3A18CE1226470418D /* Support Files */ = { + 03B94AF85725BB6A0060941703112BDF /* DDLabel */ = { isa = PBXGroup; children = ( - 30E10978E25A8EAB4EE7F0EA8C1BD658 /* DDAudioPlayerKit_Private.modulemap */, - 7F66B1DB098C3DA48026D74A3F43CA39 /* DDAudioPlayerKit_Private-dummy.m */, - C2D65E4D24B7B4384EE846067ACC29B2 /* DDAudioPlayerKit_Private-prefix.pch */, - 5E797CB6A02E277912BB83563B59F28F /* DDAudioPlayerKit_Private-umbrella.h */, - 795909B64F353467B960AC23DF82236F /* DDAudioPlayerKit_Private.debug.xcconfig */, - D46A02AA3FEB386950BAB6DA32E6F726 /* DDAudioPlayerKit_Private.release.xcconfig */, + 03A02BAA630E73118EF5478DDF1BF1CB /* DDLabel.swift */, + ); + name = DDLabel; + sourceTree = ""; + }; + 04AC567D76E5B188C122A858B54C067B /* Support Files */ = { + isa = PBXGroup; + children = ( + B787F5B42EF32084ED0FFF45762F71D9 /* RxCocoa.modulemap */, + 318C619A33D0896D66A964DC0D9550F5 /* RxCocoa-dummy.m */, + 4CEF7479D278AA799477DFD1530AE408 /* RxCocoa-prefix.pch */, + 0613FE7A99BDEDD322F3D8DE00061E1B /* RxCocoa-umbrella.h */, + F5CA91EB50F50DF3E3FEF0793030CFEF /* RxCocoa.debug.xcconfig */, + 53F3B2B135B8687A86273C6C8B7268CC /* RxCocoa.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/DDAudioPlayerKit_Private"; + path = "../Target Support Files/RxCocoa"; sourceTree = ""; }; - 15B2FE66CF99D9386A9166E12C29C7ED /* ControlView */ = { + 04B681A05575B19A6B1594DC3F286772 /* DDBaseScrollView */ = { isa = PBXGroup; children = ( - D6DA38D57A840333E73BC2B72B5CD934 /* UIImageView+ZFCache.h */, - 5C7EF984EF3EFD2C897952681BC7E4BB /* UIImageView+ZFCache.m */, - D9A36C09A669F8D3ADAAB8C0846A6E42 /* UIView+ZFFrame.h */, - D30DF5A4E8DEB9FCDC93770CFEDA7938 /* UIView+ZFFrame.m */, - 0603369D29C08BBD4B780229EB57C5F2 /* ZFLandScapeControlView.h */, - A7722501FB9792273EAA04FCB5F51740 /* ZFLandScapeControlView.m */, - E1B8068A6C541BB6AFE6687238DB16E7 /* ZFLoadingView.h */, - 683E843CD70E529C09C24CB3C1A1879A /* ZFLoadingView.m */, - 3FFFE787FDE9FF77F02B01967B7C7A35 /* ZFNetworkSpeedMonitor.h */, - 45312A1792518423AAA4BF2D2477900F /* ZFNetworkSpeedMonitor.m */, - C1DD28DA6F2BDBEE79793A9713DD757B /* ZFPlayerControlView.h */, - 9A0A702C5246C362CAA1536756F82DF8 /* ZFPlayerControlView.m */, - F91CB345D47A1CBC63EFA5827EAAD079 /* ZFPortraitControlView.h */, - B57AC1DD2D20C0444F00D97E064EA74C /* ZFPortraitControlView.m */, - 63484568EA3DB677F902354665DA16C4 /* ZFSliderView.h */, - AF157A60B23BCC2CFA7431BE130D3402 /* ZFSliderView.m */, - 8779ABA3A994868A90793E850955CAE1 /* ZFSmallFloatControlView.h */, - F2350383A51553838E2F9C6F287D4094 /* ZFSmallFloatControlView.m */, - 79E20F9E0E7419F7218D8D1BEAC8BE00 /* ZFSpeedLoadingView.h */, - 39885DFE53079DA33C3AF6C34E8644EA /* ZFSpeedLoadingView.m */, - 759491B4FF8FB9E9A878BC209BFD4F7B /* ZFUtilities.h */, - B6E95CB0B4172465AE85C68B8F650249 /* ZFUtilities.m */, - 7893697D299A72F8BA75B67B7CE2F89E /* ZFVolumeBrightnessView.h */, - 259A4B15C93543FAE7C4573300F2A1C8 /* ZFVolumeBrightnessView.m */, - 6F1EB5B64017FE19963E19DFFBFE6CBF /* Resources */, + 1D3FDEBB3AEBC446882DCBE9DA2B10A3 /* DDBaseScrollView.h */, + F12FC247A6868A9906DB8E68E99A0CD9 /* DDBaseScrollView.m */, ); - name = ControlView; + name = DDBaseScrollView; sourceTree = ""; }; - 16C549B10DCB5D00C05F8A9008807DB9 /* Frameworks */ = { + 050A5F93F7590C46ED98EF9583E134A6 /* DDMANaviManager */ = { isa = PBXGroup; children = ( - 753F09D3A6589B87B04B3FB45DF916A9 /* AMapNaviKit.framework */, + B4579EEEE8A2EC43D53BC2BF8C1FF0F9 /* DDMANaviManager.h */, + 8134BB2AA5305F578302AA8091E2FA82 /* DDMANaviManager.m */, ); - name = Frameworks; + name = DDMANaviManager; sourceTree = ""; }; - 175E915D23021779148CFF601FC005CC /* DDBaseTextField */ = { + 0708B793A2267D813D1E6D415F492D4F /* Support Files */ = { isa = PBXGroup; children = ( - 9211CB328D8071AD8EE91F959D93E3BF /* DDBaseTextField.h */, - BE7829D49288BB4A2B1C3428C611EBD3 /* DDBaseTextField.m */, + 01EBE524E1748F7C27B8739BEABEFDDB /* DDLogKit_Private.modulemap */, + ADA9C4F15A3ACF6BD93A95B4E72343BA /* DDLogKit_Private-dummy.m */, + 497DD6B7E183F163DB4BDFCCAAB79AD6 /* DDLogKit_Private-prefix.pch */, + 69258AC6907046152701DAD3AEBC9D62 /* DDLogKit_Private-umbrella.h */, + D20EB1D60F5FA950B1D88F62FE24CBA3 /* DDLogKit_Private.debug.xcconfig */, + 1EC2252F82D266AE7F938DE967080413 /* DDLogKit_Private.release.xcconfig */, ); - name = DDBaseTextField; + name = "Support Files"; + path = "../Target Support Files/DDLogKit_Private"; sourceTree = ""; }; - 1921E78AEFBB15A4BFED707C6A244D99 /* UILabel+DDCategory */ = { + 0838BDA2D420D0467F50163FFC8DD2A9 /* JPush */ = { isa = PBXGroup; children = ( - 0B1E8288ADDE2F4142A6C7152BB42C76 /* UILabel+DDCategory.h */, - 6001BB31587184982411055EA990B701 /* UILabel+DDCategory.m */, - ); - name = "UILabel+DDCategory"; - sourceTree = ""; - }; - 1941C1BAC969491C3376283061E72D06 /* Core */ = { - isa = PBXGroup; - children = ( - F5BBC4067CA81BBAA4EBFEDA598AC2D9 /* Array+ZLPhotoBrowser.swift */, - 770D8D4C1F57C04DA1AA61A58FB419A9 /* Bool+ZLPhotoBrowser.swift */, - EAD74672A0CFFCF3755E1D4EB5216767 /* Bundle+ZLPhotoBrowser.swift */, - 4E3116B641BD896DCE20A1EF136462F7 /* Cell+ZLPhotoBrowser.swift */, - 25B7C49E434F0FD6481719D7A1CAF359 /* CGFloat+ZLPhotoBrowser.swift */, - 170BBE76A34DB894858F4A1C6CBF9FB2 /* NSError+ZLPhotoBrowser.swift */, - 84522570DAD672D58AA4E389329D7CEA /* PHAsset+ZLPhotoBrowser.swift */, - 57E3EC0AC5EB309AA5BC47F89954B444 /* String+ZLPhotoBrowser.swift */, - C360CBF6B0E6AD7F01957675C510BE89 /* UIColor+ZLPhotoBrowser.swift */, - CABD0292800696BF629AE9D17BEF0C66 /* UIFont+ZLPhotoBrowser.swift */, - 050B017433C17B15A5712EE1BECB5E53 /* UIImage+ZLPhotoBrowser.swift */, - 2D9C4E6F91B5E65465DDF67DD6BCFDB0 /* UIView+ZLPhotoBrowser.swift */, - BD47C7E094CE4B7D5DE6B3AC6B090994 /* UIViewController+ZLPhotoBrowser.swift */, - 8BEF0FB9A270BAA05728B6F2EFA50FBC /* ZLAddPhotoCell.swift */, - E0F17526A977A87F4B4EB47D83CEAC53 /* ZLAdjustSlider.swift */, - 84AD6E8A433AE28682F339252C2EB98E /* ZLAlbumListCell.swift */, - AEBCD8C84670C83A94FB9262C56E66F5 /* ZLAlbumListController.swift */, - D901979501F432235C64E6AC4AB82EDB /* ZLAlbumListModel.swift */, - E906A74469F9048F0A7BBC39B81E4306 /* ZLAnimationUtils.swift */, - 1D859E0B839D8C5D9A193A0ADCD27C54 /* ZLBaseStickerView.swift */, - AE9F9011F9E47F13A557D1479BABE384 /* ZLCameraCell.swift */, - 6DFC25C5487E83F0CB3C599E076DAE3D /* ZLCameraConfiguration.swift */, - 6783AB064D437BD7A412067C99B4DF37 /* ZLClipImageDismissAnimatedTransition.swift */, - CCBEFE7EFDBF5BA4C9D550781394D569 /* ZLClipImageViewController.swift */, - A1187BDB18A7BCD373D82B768A9D8811 /* ZLCollectionViewFlowLayout.swift */, - 823464E00AF14E1C827C3774E038EFC2 /* ZLCustomAlertProtocol.swift */, - 920F25B4E7A48C42C4BD05D8820CD675 /* ZLCustomCamera.swift */, - 9AA8E757CC4DCDE407198A52DFB4BE86 /* ZLEditImageConfiguration.swift */, - 070B86A959C60844EB59723B8B506DC7 /* ZLEditImageViewController.swift */, - 8837B693936861F78E22A144F7CE9245 /* ZLEditToolCells.swift */, - 7CDED5A04FDA512C3BF415649C8A1822 /* ZLEditVideoViewController.swift */, - BDACE794855D907CD5A4811E72866CAB /* ZLEmbedAlbumListView.swift */, - 0ED51AB88BD31A962749880147DDCC94 /* ZLEnlargeButton.swift */, - 68B600BC7AC1EFF4E70A36A0A7CE2118 /* ZLFetchImageOperation.swift */, - E1F0ECA1819BB892D033E84D2410085B /* ZLFilter.swift */, - 1BD51C9DAF8DF4365E17BA2C13CCA14F /* ZLGeneralDefine.swift */, - 0D7BBFB7922A0612AEC12DA177C7AB4B /* ZLImageNavController.swift */, - 9750FDDE1AE9FFF16C8C0803092041F8 /* ZLImagePreviewController.swift */, - 48148195B330B6991BF7FE0A2BAE6F0B /* ZLImageStickerView.swift */, - 12518713B31AC6922131E90E7B9777E0 /* ZLInputTextViewController.swift */, - 2128C02D27F0F82C309D006D82574219 /* ZLLanguageDefine.swift */, - 5D734A5F0B36242991448F3409A0D567 /* ZLPhotoBrowser.h */, - 35450C3C90041047307AFA530B4FB58B /* ZLPhotoBrowser.swift */, - B1BD622ADB420FE6BCCB6A1E11CC3C4A /* ZLPhotoConfiguration.swift */, - E3AAAD26A8FF316676A513010A48A759 /* ZLPhotoConfiguration+Chaining.swift */, - 80CFC41A2AFB3AB5866D6E4DCB91387C /* ZLPhotoManager.swift */, - 2CAEAE92A90918D389D7CCD82333E57F /* ZLPhotoModel.swift */, - 11F1FB07A7985B49D4B2287D27B5E3DE /* ZLPhotoPreviewAnimatedTransition.swift */, - 43BCDBABD77CC7F5297BD82BB819F04D /* ZLPhotoPreviewCell.swift */, - 231CC4A3A4CF964F93469DDAE4FE160D /* ZLPhotoPreviewController.swift */, - AD3A281E792BDA50C5E416A95F141BF7 /* ZLPhotoPreviewPopInteractiveTransition.swift */, - CA25A894AF5692143BA3754D55BAE255 /* ZLPhotoPreviewSheet.swift */, - BEE633116376F346AF7F8F6CA982F22D /* ZLPhotoUIConfiguration.swift */, - 30D2EC85BE224E4817DB8095561AC045 /* ZLPhotoUIConfiguration+Chaining.swift */, - A363A011B34262196863671FE274C8DD /* ZLProgressHUD.swift */, - B4BDF4B29CDA5E515E318FC460748C6F /* ZLProgressView.swift */, - BBB2811E9DC264F1849B265F6BD4C005 /* ZLResultModel.swift */, - BE5C3DED1065C379F19BC07715696400 /* ZLTextStickerView.swift */, - 2215CA305EB28F8BC752F56AC206D861 /* ZLThumbnailPhotoCell.swift */, - 01122F2913AAEB4DE71A78D263C4FA14 /* ZLThumbnailViewController.swift */, - FE60A6156D03AE9D1899CC6F69CF7591 /* ZLVideoManager.swift */, - F73A64E4521EDBD1AAE1CC1963BEEE5F /* ZLWeakProxy.swift */, - ); - name = Core; - sourceTree = ""; - }; - 1A9A98D78FC36F97BDF46D8BAC119372 /* RxRelay */ = { - isa = PBXGroup; - children = ( - D5CC3401DDE8788C49A2FB401C236B39 /* BehaviorRelay.swift */, - FB8B286BE1DB87F3BA9D2EC9ED194D2A /* Observable+Bind.swift */, - 9E59E3429A485C2A5503F84B98CA1316 /* PublishRelay.swift */, - 2D5BCD92C44C72931F824CC5A99B1E0A /* ReplayRelay.swift */, - 5B306F2855C17CE14E0C6F81357746E9 /* Utils.swift */, - 14D24B03BAC8D432219F174674254E86 /* Support Files */, - ); - name = RxRelay; - path = RxRelay; - sourceTree = ""; - }; - 1E410062BB39B5CDA41091DB3E1B30B3 /* Resources */ = { - isa = PBXGroup; - children = ( - C0CC88DEAD39E5F951966CC66C8E0D87 /* DDBaseViewController.xcassets */, - ); - name = Resources; - sourceTree = ""; - }; - 1E7E19D8B4137125852F3F5BD4CAB8C9 /* Alamofire */ = { - isa = PBXGroup; - children = ( - DE60DBE6D5F359EB495C77110B2618A1 /* AFError.swift */, - 1BD1740FB29D1A3807461CA2C01462D7 /* Alamofire.swift */, - DDF68F83FA73BDDF45C3B02E3B3DBD0C /* AlamofireExtended.swift */, - D1DE7891489E9D59D79DCE22AF66F9D9 /* AuthenticationInterceptor.swift */, - BE5DD252BA69434899C678B2483C0DD9 /* CachedResponseHandler.swift */, - 452399CF8D0225CB3D278F7746158C03 /* Combine.swift */, - 4501AB0D576E6AE3E09907423AD2BB24 /* Concurrency.swift */, - C4FB019431EDA44040E819530DFEC690 /* DispatchQueue+Alamofire.swift */, - 51FCF11C1D9AF01314CAC5DFDD70C064 /* EventMonitor.swift */, - EA00C2EF2C8729C7835C0FBBD468E5EB /* HTTPHeaders.swift */, - 4542046C28F3D70E296E394B873C6719 /* HTTPMethod.swift */, - 8AC70FFE362EF3AB3FF0ACD35A4CE3E6 /* MultipartFormData.swift */, - 1A822AFE2F2931497A0367242C37EBE0 /* MultipartUpload.swift */, - E60A2DAA7D2B91800BF97AF92F413AD2 /* NetworkReachabilityManager.swift */, - 7E8EB4D9D80DED315FCCCD54A22BFF90 /* Notifications.swift */, - 2DE360277EB2A96E676EC9DE5ACB5BD2 /* OperationQueue+Alamofire.swift */, - 172DC173929CF37802A7EE6F1D8DB741 /* ParameterEncoder.swift */, - CEE53DC88755CA53BD5211B8C2D625CD /* ParameterEncoding.swift */, - 49BC6C5577BF8216BBB56CC43A0F28ED /* Protected.swift */, - 1E0E4BEDFFDAE8979598322B432BFA24 /* RedirectHandler.swift */, - 23F812061A0FADB75F57187E35DD1A70 /* Request.swift */, - CA0A74178538170BF7A45834883DDEF7 /* RequestCompression.swift */, - B6D75EF1453E751B4B4F4DFE4FB6CBAA /* RequestInterceptor.swift */, - BAAEE5266B24A1F47CF5D571FDDF99F6 /* RequestTaskMap.swift */, - 806B3B0C554073E0DB8B0668D9DDE96A /* Response.swift */, - 801E554458FA935FE0EAB7E76939D9E3 /* ResponseSerialization.swift */, - 756071B94EA9B9D34DCD2BEE85E39996 /* Result+Alamofire.swift */, - 08232915BE097677A51DB6928DFF4C8B /* RetryPolicy.swift */, - 961AE890FBEFCD5604AC60F804211247 /* ServerTrustEvaluation.swift */, - F913AEF4BC19217524BA7CE744FAAB90 /* Session.swift */, - 9BBF6D50AA0248F251212A85BDF83338 /* SessionDelegate.swift */, - D7FC978BC1E8EF7BC06878A073EAEB09 /* StringEncoding+Alamofire.swift */, - AA30A55FDF8DFDDBC812D62BD202C59A /* URLConvertible+URLRequestConvertible.swift */, - 3C8A4DFD485152B53E1EEFEA1C8B36D7 /* URLEncodedFormEncoder.swift */, - 4DAA2B2D5E9074D6A807CBD2587D6A12 /* URLRequest+Alamofire.swift */, - 6F00AFF32E79768049030605B652BE4E /* URLSessionConfiguration+Alamofire.swift */, - 926D0D7F98DDC85FA76727518C025EC0 /* Validation.swift */, - AA460C7315A7D6DEB907C48EAC55A975 /* Support Files */, - ); - name = Alamofire; - path = Alamofire; - sourceTree = ""; - }; - 205CD2CF11EAAC33763FF31D922D14CF /* JPush */ = { - isa = PBXGroup; - children = ( - 0BC73D79404F1F157BADCAB9B83CBDDE /* Frameworks */, - E2A469D7F93DF4B96A7E9804E6E9FC21 /* Support Files */, + 4DDF4A8AC24BC2AB4F21F0B8C0E99C2E /* Frameworks */, + F4484797CF04107EF44BC59E034E402A /* Support Files */, ); name = JPush; path = JPush; sourceTree = ""; }; - 22336FA881364DCB0CC6A2598102E61A /* Annotation */ = { + 084313FD3E896B9030531908D44D8CD4 /* Support Files */ = { isa = PBXGroup; children = ( - 4AE70648B4DA4312BD9465EEA78E5683 /* DriveRouteCustomAnnotation.h */, - 0BE13097EC2D93EF260C8A3AF9799E10 /* DriveRouteCustomAnnotation.m */, - EC53D7B46DBDAB7832BF075AED295D1B /* MAPointAnnotation+DDCategory.h */, - 892F3F4CD250BF18FADDFC9726FD9963 /* MAPointAnnotation+DDCategory.m */, + 677587EE25462C6BA51FE8328B51A87D /* DDFontKit_Private.modulemap */, + 68330B3B59229F935EB0700BFDAB1B97 /* DDFontKit_Private-dummy.m */, + 645EDF250D98A99D5CCD3C1B430A89FC /* DDFontKit_Private-prefix.pch */, + DBD21FD126437077D0B354EDE7FE2318 /* DDFontKit_Private-umbrella.h */, + 09C0EE387BC54891D09ED7F95D00203C /* DDFontKit_Private.debug.xcconfig */, + C08648DEED9804F089D41B684A7D1BCD /* DDFontKit_Private.release.xcconfig */, ); - name = Annotation; + name = "Support Files"; + path = "../Target Support Files/DDFontKit_Private"; sourceTree = ""; }; - 24991D3357B53576E6362A22AC451691 /* OCLog */ = { + 0847E2A82F32DE2D60E9924E90D5B592 /* DDBaseAttributedString */ = { isa = PBXGroup; children = ( - E4389A79A98D82D099859D31900A8A41 /* DDOCLog.h */, + A2611215DA2487C56F63E5ECC7F5E761 /* DDBaseAttributedString.h */, + 5501A87BC8511F2B9E203B0E5146C52D /* DDBaseAttributedString.m */, + 6BC0D31C149E12F94631266A6C7FB16A /* DDBaseMutableAttributedString.h */, + 8F659E622FF5611F55167C9B569ABE18 /* DDBaseMutableAttributedString.m */, ); - name = OCLog; + name = DDBaseAttributedString; sourceTree = ""; }; - 24A6D15C4C3094E707EDC9542511130A /* DDAttributedString */ = { + 0947097DB036F200446803A32647BB58 /* DDProgressHUDKit_Private */ = { isa = PBXGroup; children = ( - 95B5C791F3B2A408B2E8C5912A3FD12A /* DDAttributedString.swift */, - F31EFDE70D0EBCBD2BE3D0CCF09DEA93 /* DDMutableAttributedString.swift */, + 5E3AEBC7766316577BC25AD601AA4282 /* DDProgressHUD.swift */, + 22A3E590F18A1E4CC779908BF80B0078 /* MBProgressHUD.h */, + F1EAFDB8E6858275DFAF08E51C168093 /* MBProgressHUD.m */, + BFAAE6BCAE55FD78F1B336043AC66A35 /* Support Files */, + ); + name = DDProgressHUDKit_Private; + path = DDProgressHUDKit_Private; + sourceTree = ""; + }; + 0A4A80A67C7B05B8DB4A6C7BC1D585FF /* Frameworks */ = { + isa = PBXGroup; + children = ( + B315DC4595306B5F2D11ED169E1D4B89 /* IJKMediaFramework.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 0AE0D5212AC3B6E2AE2CD02CAD2385B4 /* DDWebImageKit_Private */ = { + isa = PBXGroup; + children = ( + 2A916BE1BB800047F0978F756DE15F57 /* DDWebImage */, + 731C367827E5EF8885AB06F7F46D0FCE /* SDWebImage */, + 11BB95FC18B21EF5AED1F98E10756776 /* Support Files */, + ); + name = DDWebImageKit_Private; + path = DDWebImageKit_Private; + sourceTree = ""; + }; + 0C4E32B77016849213546C481C22E7A5 /* JPushExtension */ = { + isa = PBXGroup; + children = ( + E647F7D9F13CC8BA89FD098784CC6C72 /* Frameworks */, + 5849CAEF87217C7E5C9B841545E187F9 /* Support Files */, + ); + name = JPushExtension; + path = JPushExtension; + sourceTree = ""; + }; + 0E28E0E40632DE3E1E3764A70F4EB939 /* DDCollectionView */ = { + isa = PBXGroup; + children = ( + 8DC20CADB7641A0A73E23084922704E2 /* DDCollectionView.swift */, + ); + name = DDCollectionView; + sourceTree = ""; + }; + 0E746896DD2E226B38C6C257198FB124 /* StringPickerView */ = { + isa = PBXGroup; + children = ( + C3F06F4E5B677529EA469005518F6F78 /* BRResultModel.h */, + 29F460B5E3AEFB6C7975B90E4F750ED4 /* BRResultModel.m */, + 02782A46E1E62D1A0ECBA5FEBD511E0C /* BRStringPickerView.h */, + 8CCD328B4C27B227EF583E8D9CCF4783 /* BRStringPickerView.m */, + ); + name = StringPickerView; + sourceTree = ""; + }; + 0F25017F0D3981808CBB44578FAEA82F /* DDMALocation */ = { + isa = PBXGroup; + children = ( + 729ABB23BD1AA8F9CA4D81E5FAEF8E05 /* DDMALocationManager.h */, + 727A6C8BEB00BD2EACEC9F18CC10B9A1 /* DDMALocationManager.m */, + ); + name = DDMALocation; + sourceTree = ""; + }; + 11BB95FC18B21EF5AED1F98E10756776 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2FA941672D04EEFDD5A25A4A3B555643 /* DDWebImageKit_Private.modulemap */, + 17A99E15DB682AFB974C54B55AC66AB0 /* DDWebImageKit_Private-dummy.m */, + 6314C8FD9DB6474E11789F940B1B7D38 /* DDWebImageKit_Private-prefix.pch */, + 275FD406E006154083E0BB8AA7257F93 /* DDWebImageKit_Private-umbrella.h */, + 6EAF9EBB0A0F6E1197989EBC8704D23F /* DDWebImageKit_Private.debug.xcconfig */, + 87A9B783169EBC87CFDC1AF5E4A5F5BB /* DDWebImageKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDWebImageKit_Private"; + sourceTree = ""; + }; + 12588927513404BE3F2B9470774DBBB2 /* UITableView+DDCategory */ = { + isa = PBXGroup; + children = ( + 5E648E0BF82BC0F4613380C69E43346B /* UITableView+DDCategory.h */, + 8409E2B8BBA225FA53243A31057F10DF /* UITableView+DDCategory.m */, + ); + name = "UITableView+DDCategory"; + sourceTree = ""; + }; + 13756B7648FD4BC69686647E820A49CC /* RxRelay */ = { + isa = PBXGroup; + children = ( + 314B021694CE8545DE6A4314F037B601 /* BehaviorRelay.swift */, + FDA997DA217CC6F8EF3B72BAF6720725 /* Observable+Bind.swift */, + BA54A3F1CE6E705C6D6B771F178C2C1B /* PublishRelay.swift */, + 9DB545FA70E55DCB2EEA485007A5B046 /* ReplayRelay.swift */, + 2C528017A7AB37E2EC46C8AF82F85321 /* Utils.swift */, + 02C8F2881AE4733C5C3B90484111DA1D /* Support Files */, + ); + name = RxRelay; + path = RxRelay; + sourceTree = ""; + }; + 13E294D05F4F6878624AD14386D1B233 /* DDAttributedString */ = { + isa = PBXGroup; + children = ( + DC7563FB49B3B7F0E4710216BC923FE3 /* DDAttributedString.swift */, + 45599187E0E306D492961BB44A1110D3 /* DDMutableAttributedString.swift */, ); name = DDAttributedString; sourceTree = ""; }; - 263C1B918A254B9F9A15122C57C20AF4 /* DDCategoryKit_Private */ = { + 143655BA548569B19B37D05498D1D559 /* DDColorKit_Private */ = { isa = PBXGroup; children = ( - 5155500DB4A4AAC9D6124FDC80CC351A /* DDCategory.h */, - 0F2DAF956E90A7A1AD494470E0996F45 /* CALayer+DDCategory */, - 46640FD81E278B2C7F2983A751FC6822 /* NSAttributedString+DDCategory */, - C89D5AC0B6EF728423180D415B26E5D4 /* NSBundle+DDCategory */, - 324FC8504359A6CD51E50ABF82429F92 /* NSObject+DDCategory */, - 3F7DE281E27E7A6EA93CB30A8296265A /* NSThread+DDCategory */, - 389311C4B4FFE1B58DABA04BE616F3D1 /* NSURL+DDCategory */, - 00FA8688E0052FC90A3B9AC7AFC812F2 /* Support Files */, - B66A1B2FE793460F17C0E1E7816FCF31 /* UIApplication+DDCategory */, - 8B5A5D2C40D3EC25D0748FAA9E7DBF1E /* UIBarButtonItem+DDCategory */, - 0B9F10971D16EB2C39DBEA39B7F5EC17 /* UIButton+DDCategory */, - 829AD36EBEC70576291498BABDFF182D /* UICollectionView+DDCategory */, - 6FAF191D411651E4FDA906301B60DD3F /* UICollectionViewCell+DDCategory */, - 0100EAF5D13E984F13B77CEC114396CF /* UIFont+DDCategory */, - E95FEAC7FA583ACD4ADE9DC241F86A20 /* UIImage+DDCategory */, - 9938FD6E0FCBFDEC75022CBD8CD9E9D2 /* UIImageView+DDCategory */, - 1921E78AEFBB15A4BFED707C6A244D99 /* UILabel+DDCategory */, - 6B7BF72857469ECBF3D8D9F3C4233E41 /* UINavigationBar+DDCategory */, - 6EC036259BBD442579CDEACD055C90CE /* UINavigationController+DDCategory */, - BEB106B16043CF1E0112974522D3FBD4 /* UINavigationItem+DDCategory */, - 5050C991869C2749EC88FD6434BB9874 /* UIScreen+DDCategory */, - 3C9F6A11887672481ACE1AFBD6531CBC /* UIScrollView+DDCategory */, - B122FEB050ADDD088992504CBBE8FC0E /* UISwitch+DDCategory */, - C27E793D3C96FD760A8C3E40A2705A5B /* UITabBarController+DDCategory */, - D231A48FBEAF02C2007C9590DE93D9FC /* UITableView+DDCategory */, - E1370C83C058469F1FB3103F9CAC2F11 /* UITableViewCell+DDCategory */, - E16DDBF280AAE7D418BC191B91ABA8C1 /* UITextField+DDCategory */, - 3917310CC917B2C168E3B146D1F0F4EF /* UITextView+DDCategory */, - 348F2832A8BD854B595B5BE43B64B66C /* UIView+DDCategory */, - F1894C69CC4156313AD79ED52418C39C /* UIViewController+DDCategory */, - 9A33E73D3F49EAA3B3B9CC934141A10B /* UIWindow+DDCategory */, + 2387FD481EB9A586057BBA4A9B5CD802 /* ColorUtil.swift */, + BE65C9E6950662503F0751D9A21A4A82 /* UIColor+Hue.swift */, + CF29F7476FF5E386DDCB4875CCEFB453 /* Support Files */, ); - name = DDCategoryKit_Private; - path = DDCategoryKit_Private; + name = DDColorKit_Private; + path = DDColorKit_Private; sourceTree = ""; }; - 273917F5E5C7E32A224BB72546426A44 /* Support Files */ = { + 1477FD7666025C236073B784C68E2E20 /* Frameworks */ = { isa = PBXGroup; children = ( - DDA96801534455763CE25F6009227C16 /* DDNetworkingOfAlamofireKit_Private.modulemap */, - 5B3A5FA72E662456696B4A1EA5856BC6 /* DDNetworkingOfAlamofireKit_Private-dummy.m */, - EEE82F387DA67624669B5EB02B280EEE /* DDNetworkingOfAlamofireKit_Private-prefix.pch */, - D4370EB0527F8951315CFCDF2B136F01 /* DDNetworkingOfAlamofireKit_Private-umbrella.h */, - F9B671CABEF0BE423F6CC28764C0D86A /* DDNetworkingOfAlamofireKit_Private.debug.xcconfig */, - CBE79F1DEB908F14820EA89EAEEA020D /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */, + 79EAD67EEA5838C829D0C8A482F71F1B /* AMapSearchKit.framework */, ); - name = "Support Files"; - path = "../Target Support Files/DDNetworkingOfAlamofireKit_Private"; + name = Frameworks; sourceTree = ""; }; - 2764950B9CA6A50F48478C704093ADD2 /* JCore */ = { + 16C90B456D9BCB53DCB8C6D2075C8976 /* DDBaseView */ = { isa = PBXGroup; children = ( - 92DC8E56B4E6938D7F5E0A414C2BA94D /* Frameworks */, - 29D1CE0DA72E2FA1C7BAAD349FBCD993 /* Support Files */, + F78C1CC1793BC4D0195103A4600830E1 /* DDBaseView.h */, + 813B31DDD073B067BC6D0DC097A0072C /* DDBaseView.m */, + ); + name = DDBaseView; + sourceTree = ""; + }; + 17439836FE961EE5BF1EAA3ECB42AF1E /* DDMAMapKit_Private */ = { + isa = PBXGroup; + children = ( + 0F25017F0D3981808CBB44578FAEA82F /* DDMALocation */, + 5BCF511EA483ACA131DBD6DB254E95A7 /* DDMAMap */, + 050A5F93F7590C46ED98EF9583E134A6 /* DDMANaviManager */, + F1FB5340A84CAAD6B52B2585C5F0356A /* DDMASearch */, + CB4B95282027AF56CC4432D5681843DD /* DDMATrackManager */, + 7FDDE604734C633ADFDE6A4121B3DEAD /* DDMAUtil */, + B7C44A8BD6655A418A2B19F03740AA50 /* Support Files */, + ); + name = DDMAMapKit_Private; + path = DDMAMapKit_Private; + sourceTree = ""; + }; + 1781DE8AC5D09FF587939819B3B6FD21 /* DDBaseTabBarController */ = { + isa = PBXGroup; + children = ( + DBAEA48C4CC4D29FAD44A328E071566A /* DDBaseTabBarController.h */, + A267D8D0FA052374EA48C1A73BAA325D /* DDBaseTabBarController.m */, + ); + name = DDBaseTabBarController; + sourceTree = ""; + }; + 17832D50336800A5F706C9C9F89A1726 /* JCore */ = { + isa = PBXGroup; + children = ( + C951AF0E8D951E9EBA23C6979C2BB944 /* Frameworks */, + EF4A61E433EEADD3E0CDB4100FA65852 /* Support Files */, ); name = JCore; path = JCore; sourceTree = ""; }; + 197E7E1D6355F8F64E947C000C523F17 /* Support Files */ = { + isa = PBXGroup; + children = ( + AC52AD5FE916BDD17BEE8C7941452EE7 /* DDZFPlayerKit_Private.modulemap */, + 31FCBAD90AAC22C4F1029ED36E1071EA /* DDZFPlayerKit_Private-dummy.m */, + F379EEDC35F567BD0DA26EDDEDFD137A /* DDZFPlayerKit_Private-prefix.pch */, + 7ECEE0571C90DC8C4C480210DE1824E8 /* DDZFPlayerKit_Private-umbrella.h */, + 868F987DB35D5AF7FC49A6482780B71E /* DDZFPlayerKit_Private.debug.xcconfig */, + EBDCF9C9311B3503A80E8A638EC25A58 /* DDZFPlayerKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDZFPlayerKit_Private"; + sourceTree = ""; + }; + 1980C9F0AA182F49F1E2B46D1AE56425 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 9DAF90C1775CBBE41F0E654E0DE73D6B /* AMapTrackKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 1A7640C9354BEFFF72193B6F6A72AF5D /* DDSwitch */ = { + isa = PBXGroup; + children = ( + 1D0FC67721BD9964D43BF569D58461A2 /* DDSwitch.swift */, + ); + name = DDSwitch; + sourceTree = ""; + }; + 1AB118D6FBC75D998FB46787F92146B3 /* UICollectionViewCell+DDCategory */ = { + isa = PBXGroup; + children = ( + 431E1D05FC37D52831B2B63F11611B8C /* UICollectionViewCell+DDCategory.h */, + ABE7E82F6A637D933B9A7E37477281B7 /* UICollectionViewCell+DDCategory.m */, + ); + name = "UICollectionViewCell+DDCategory"; + sourceTree = ""; + }; + 1B9CD14CDCDB410C594B9FA50994F3FA /* CALayer+DDCategory */ = { + isa = PBXGroup; + children = ( + B0FBB8CED66D2D0C449A59D458746A67 /* CALayer+DDCategory.h */, + 4F223836A638414EEE091A54C5A888F2 /* CALayer+DDCategory.m */, + ); + name = "CALayer+DDCategory"; + sourceTree = ""; + }; + 1CA6DD88C26EC8BC6032AE7D46AA9FD1 /* AMapLocation-NO-IDFA */ = { + isa = PBXGroup; + children = ( + 3D8B6DD0FA2A6289D2344172BEC79FFD /* AMapGeoFenceError.h */, + 04680C30179DB334D62404E12DED62B4 /* AMapGeoFenceManager.h */, + 1DF9F2AADF58D671D0B90DF444BB06C0 /* AMapGeoFenceRegionObj.h */, + E4B5FB4FFF8AB9062376769BD3575F4F /* AMapLocationCommonObj.h */, + CC60699842D35C2352504CA8FDA577D0 /* AMapLocationKit.h */, + 45910739C3D9BFFE0F43D440BB45973D /* AMapLocationManager.h */, + AEF6FCC993FA0BC30EA9498B76B0B8A2 /* AMapLocationRegionObj.h */, + 710F5997B08498C5D22C5B06E39516F2 /* AMapLocationVersion.h */, + E33643C235CF09E3A9488A2900E7C0F2 /* Frameworks */, + 23838BADEA127D240A8C12959CB7E42B /* Support Files */, + ); + name = "AMapLocation-NO-IDFA"; + path = "AMapLocation-NO-IDFA"; + sourceTree = ""; + }; + 1E255FF1AEA9BC90E6CC8F6EB498E949 /* UINavigationItem+DDCategory */ = { + isa = PBXGroup; + children = ( + 7D42EB94319CCB58A1A442711C58125B /* UINavigationItem+DDCategory.h */, + F253094D312A5F09A2756F822CA0631E /* UINavigationItem+DDCategory.m */, + ); + name = "UINavigationItem+DDCategory"; + sourceTree = ""; + }; + 1FEBE8141CD16384466B9F831969D2D3 /* DDTableView */ = { + isa = PBXGroup; + children = ( + 32758B14C4EA1965F4718EEEA3DC0B5F /* DDTableView.swift */, + ); + name = DDTableView; + sourceTree = ""; + }; + 20913A7302F88465CF8A32249A5DF6A1 /* DDPersistenceKit_Private */ = { + isa = PBXGroup; + children = ( + 7782214C4958E9B77AA6CAF2D430F2ED /* DDKeychain.swift */, + 2A594B4C7B963FD332AA1956A8C4FB29 /* Support Files */, + ); + name = DDPersistenceKit_Private; + path = DDPersistenceKit_Private; + sourceTree = ""; + }; + 23838BADEA127D240A8C12959CB7E42B /* Support Files */ = { + isa = PBXGroup; + children = ( + 06297B3403F1501663AFC128A815A060 /* AMapLocation-NO-IDFA.debug.xcconfig */, + D3033ED13E860307AC3657C99F0F019F /* AMapLocation-NO-IDFA.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/AMapLocation-NO-IDFA"; + sourceTree = ""; + }; + 2414A7D7CB098F23DEFA58839825E6CB /* IQKeyboardManagerSwift */ = { + isa = PBXGroup; + children = ( + 44A0675187A0F57C3A2ECD0D4EBA682D /* IQBarButtonItem.swift */, + 8E1391D520465478F73A4158A48FCE25 /* IQInvocation.swift */, + 872A76A47CBF6D3B5F2613C8A2B20DB3 /* IQKeyboardManager.swift */, + 90B66BB5F4AA694B89A8CD59D21A1D5E /* IQKeyboardManager+Debug.swift */, + 95B7D58E61129EFE9A4FD903A4056967 /* IQKeyboardManager+Internal.swift */, + 44D19B06332287C07BA06568BD4D7EF6 /* IQKeyboardManager+OrientationNotification.swift */, + C5E1D11043291F9B266581EBA47576CF /* IQKeyboardManager+Position.swift */, + ABA8F3597F6131F7CD0471C852D1D176 /* IQKeyboardManager+Toolbar.swift */, + E1936F0C9B55EAD2F03BBAB6DA1A31AD /* IQKeyboardManager+UIKeyboardNotification.swift */, + 05C288F5773FAA8DC4E25B88D7FB406C /* IQKeyboardManager+UITextFieldViewNotification.swift */, + E5F0C2764A264E37BD41416288A31CEE /* IQKeyboardManagerConstants.swift */, + F8A98015C90C034E9C04D6E0F1ABD1FC /* IQKeyboardManagerConstantsInternal.swift */, + 2AFBA4821317DD2FFE3A0D4390AF1848 /* IQKeyboardReturnKeyHandler.swift */, + 091DBEDBDEDF1ED2890ACDE092228429 /* IQNSArray+Sort.swift */, + A789DB64B15EBE6C180F3F4A0CB33C14 /* IQPreviousNextView.swift */, + F6D8C297B18F3C8BA6376EBBC8438357 /* IQTextView.swift */, + 22EE85281F54BFC5F4671A79A568D09B /* IQTitleBarButtonItem.swift */, + 4D9D4682AF261209380FE4393488D114 /* IQToolbar.swift */, + 14ED87EA32575BCF5C15E9871F5DE178 /* IQUIScrollView+Additions.swift */, + 8C0D52FFA4662E72AE3483658BCA04A5 /* IQUITextFieldView+Additions.swift */, + C9B0FCB9F422D0D1CC931B29ADC21625 /* IQUIView+Hierarchy.swift */, + 8A88A3A058CCB1D9FC2588C790D4CE4D /* IQUIView+IQKeyboardToolbar.swift */, + 54A6F2F469E7F9BE9ADF804BCAEACDFD /* IQUIViewController+Additions.swift */, + 84083B5F17EE238AF0E368999F82AC4D /* Support Files */, + ); + name = IQKeyboardManagerSwift; + path = IQKeyboardManagerSwift; + sourceTree = ""; + }; + 268B4A761AA82C696809DE6C785262BF /* DDNavigationController */ = { + isa = PBXGroup; + children = ( + BE8155B9BA8C237438676C3367DBA8BD /* DDNavigationController.swift */, + ); + name = DDNavigationController; + sourceTree = ""; + }; + 26B0BA1D8087381185CC577EC28A3A5B /* UIImage+DDCategory */ = { + isa = PBXGroup; + children = ( + 0E6EAE5322A539E53BFFE55A0BD6C44D /* UIImage+DDCategory.h */, + B63FC9B6DA49EF325814122062E72D8F /* UIImage+DDCategory.m */, + ); + name = "UIImage+DDCategory"; + sourceTree = ""; + }; + 276189D638B459BB92ABE6FD2C9E1FB5 /* ObjC */ = { + isa = PBXGroup; + children = ( + CEFB7C567B170E54023DD9E3C7C9E6EB /* SwiftyRSA+ObjC.swift */, + ); + name = ObjC; + sourceTree = ""; + }; 27CDD0DD5E92BE6144CB082499A69238 /* Products */ = { isa = PBXGroup; children = ( @@ -4218,292 +4069,255 @@ name = Products; sourceTree = ""; }; - 29D1CE0DA72E2FA1C7BAAD349FBCD993 /* Support Files */ = { + 29D12AB3CCB7B68112D4C37BF25E7FBD /* Support Files */ = { isa = PBXGroup; children = ( - FB3A1F44A8776F9A707EDE298439737B /* JCore-xcframeworks.sh */, - 0F95AD77B334DC3AC2477F1A3AC313F7 /* JCore.debug.xcconfig */, - 6DE62048AAF1140C9846AAD0A96580C3 /* JCore.release.xcconfig */, + C6ECB131B239110E605B70CEA74056DC /* Alamofire.modulemap */, + FD011CA76BBA19162FB843AD9DD94A45 /* Alamofire-dummy.m */, + 81780C956D086766F6C3125DB1A37A50 /* Alamofire-prefix.pch */, + 04A51F1AAC8D966A3CF17F3552628174 /* Alamofire-umbrella.h */, + D43F9DFE294B601576D924D8D14689E0 /* Alamofire.debug.xcconfig */, + 1EA80EA9DCB270302DAC7F65AFE579B0 /* Alamofire.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/JCore"; + path = "../Target Support Files/Alamofire"; sourceTree = ""; }; - 2B13C7B0960D03C25AACDFCFF80FC818 /* FileManager */ = { + 2A594B4C7B963FD332AA1956A8C4FB29 /* Support Files */ = { isa = PBXGroup; children = ( - D98B3D2F58132F743364A7A04A7B5CB5 /* DDFileManager.swift */, - ); - name = FileManager; - sourceTree = ""; - }; - 2C72F922BCB625B84C82446DF967B2B1 /* DDMAUtil */ = { - isa = PBXGroup; - children = ( - EE62199AFF21BE479CA842B08CC5E7CC /* DDMAGeometry.h */, - 53BE306314A462A24FE69A85B8A9749F /* DDMAGeometry.m */, - ); - name = DDMAUtil; - sourceTree = ""; - }; - 2C8BA2365F71159E8F1E5D2DA4108AA9 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 1948244474DF58002D4014BB5950A23D /* AMapLocationKit.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 2CFD960BDFDEADB01A29536A3ECB5841 /* DDBasicControlsKit_Private */ = { - isa = PBXGroup; - children = ( - ED1015A4A506B5A6A5CBF928F5DD5769 /* DDBaseAnimation */, - 876EA9F98FC81DCF3D1161B80695CB9A /* DDBaseAttributedString */, - 4A7064474006F982BB3C43A0CA8D4473 /* DDBaseButton */, - 6988B4D0E8B9B999D9D9CB4964ED8C5F /* DDBaseCollectionView */, - 019D529A56B45AD8A1CDB539C2E1C444 /* DDBaseCollectionViewCell */, - 8FB9F458B4AEFF16FB1A9D1617D86BBB /* DDBaseImage */, - 09ADF5BA2FF82FE29326ABA6E6FED62D /* DDBaseImageView */, - BC15E5096172B530B40DEF6739CD2338 /* DDBaseLabel */, - EA5910B39F49AE056CE60E14BD99EF9D /* DDBaseNavigationController */, - BBE3524402D6D574D965E639B0013616 /* DDBaseScrollView */, - 81F99A79A73A0F9EC41F1D9EF305BCA3 /* DDBaseSwitch */, - C5B3023A59070F5FE84D969BA3D2A8BF /* DDBaseTableView */, - 644D975B64DB9162C91F173C3C3DAFA3 /* DDBaseTableViewCell */, - 175E915D23021779148CFF601FC005CC /* DDBaseTextField */, - CC68D5B083BF956025DEC577A826789E /* DDBaseTextView */, - 7BC4F1853861D60953E61C37CF8E840D /* DDBaseView */, - 07903E7B5627A9479C7623ED8F34D2EF /* DDBaseViewController */, - 122129E57FD844996C32C0386085C046 /* Support Files */, - ); - name = DDBasicControlsKit_Private; - path = DDBasicControlsKit_Private; - sourceTree = ""; - }; - 2DA2AF601892847036682F8667EFB299 /* Support Files */ = { - isa = PBXGroup; - children = ( - EC4A58C1118B56503E83B36C7EB9C869 /* AMapSearch-NO-IDFA.debug.xcconfig */, - 574CCA857D81E896F9A67CFC32B15A32 /* AMapSearch-NO-IDFA.release.xcconfig */, + 54595933B6A087BEEF46349D8149BBA1 /* DDPersistenceKit_Private.modulemap */, + E82C182B3D851259E53CBC4E304D5314 /* DDPersistenceKit_Private-dummy.m */, + 9AC35EA03A6FDB1436120F65D30A12EC /* DDPersistenceKit_Private-prefix.pch */, + E08931E968870781ECD67D8DC25B85F4 /* DDPersistenceKit_Private-umbrella.h */, + 46FAFFF77DD6AA42BD28E82106E3DD28 /* DDPersistenceKit_Private.debug.xcconfig */, + 7E6DD7EB75072604E5832BA5E6C83DDE /* DDPersistenceKit_Private.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/AMapSearch-NO-IDFA"; + path = "../Target Support Files/DDPersistenceKit_Private"; sourceTree = ""; }; - 2F0281EF4CA6DD20C194AE4A8AA3A56E /* DDNavigationController */ = { + 2A89B1850EA0D24F88E40C6D39AD4956 /* NSThread+DDCategory */ = { isa = PBXGroup; children = ( - CA85C09EA5AF001F5FF14B93BBC14082 /* DDNavigationController.swift */, - ); - name = DDNavigationController; - sourceTree = ""; - }; - 317933731EFE78AE34108F990E5979FC /* DDMAMap */ = { - isa = PBXGroup; - children = ( - 22336FA881364DCB0CC6A2598102E61A /* Annotation */, - 377F1FD2208EB1D082C95F20D610D28C /* AnnotationView */, - 7210A378F8DEE46DCC325F8F38A788B3 /* MapView */, - C2E45A7D23B64C6B55F60F2C057E8D9E /* Overlay */, - F1B4B9575A5A9B53CC7ED9666E54F47C /* Sources */, - 6FF0DC864114921742096FA90E31179B /* Trace */, - ); - name = DDMAMap; - sourceTree = ""; - }; - 324FC8504359A6CD51E50ABF82429F92 /* NSObject+DDCategory */ = { - isa = PBXGroup; - children = ( - EB6DD9CCDEAE8345E77F307ACE94A2C3 /* NSObject+DDCategory.h */, - 76C08DAB6DEE753696AB2BC4C281A99B /* NSObject+DDCategory.m */, - ); - name = "NSObject+DDCategory"; - sourceTree = ""; - }; - 3268F42963CE9BEB414F6C44E9C5D433 /* AddressPickerView */ = { - isa = PBXGroup; - children = ( - BF6C0E62E3204699D57A676102058BEC /* BRAddressModel.h */, - 3EC0CFDA55763B0AAA7A9D848A94D804 /* BRAddressModel.m */, - 944900CC6A20A98E00C529ED78251891 /* BRAddressPickerView.h */, - 44FF7ADECB2E95216184CEC65C7538F6 /* BRAddressPickerView.m */, - 0A9A27BA8E0CC5712A62968578C3486B /* Resources */, - ); - name = AddressPickerView; - sourceTree = ""; - }; - 348F2832A8BD854B595B5BE43B64B66C /* UIView+DDCategory */ = { - isa = PBXGroup; - children = ( - F98CF6CFC81151AD968106D9247DF7FD /* UIView+DDCategory.h */, - 333FF0F744DCCC8F8DC31833B4ADA3BE /* UIView+DDCategory.m */, - ); - name = "UIView+DDCategory"; - sourceTree = ""; - }; - 35250B664011F4D7706E6B4567A2FDE9 /* Resources */ = { - isa = PBXGroup; - children = ( - 5E29AABAB926446E4DAB7DBD350F35C7 /* AMap.bundle */, - 5215A1A6D8D1B1C32F9506B37543281B /* AMapNavi.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - 377F1FD2208EB1D082C95F20D610D28C /* AnnotationView */ = { - isa = PBXGroup; - children = ( - 373622AAF0D5DB4A6E1B048BD51DCB54 /* DriveRouteCustomAnnotationView.h */, - 8B248BB25D78BD36E1A612EE1BFAFC7C /* DriveRouteCustomAnnotationView.m */, - ); - name = AnnotationView; - sourceTree = ""; - }; - 38305D9218E5F933286E55910BC9869B /* Support Files */ = { - isa = PBXGroup; - children = ( - 5A8EE84EE70728089D4790EF21A47B08 /* RxSwift.modulemap */, - D72AF06664C2C1A387B4A2702072A8AF /* RxSwift-dummy.m */, - 9D5B6AE6028A23A9B89AB98E3BA0F237 /* RxSwift-prefix.pch */, - 80E26B07204EE4590E6D6A284FAE9971 /* RxSwift-umbrella.h */, - 6E7E04CDEFC8DCA6FF61DE50B9A2013B /* RxSwift.debug.xcconfig */, - ABAB9CE2BEC6AED9950849447DED31E3 /* RxSwift.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/RxSwift"; - sourceTree = ""; - }; - 389311C4B4FFE1B58DABA04BE616F3D1 /* NSURL+DDCategory */ = { - isa = PBXGroup; - children = ( - 8B9827D464C6FB1671A09AE5299CE50D /* NSURL+DDCategory.h */, - 4B588A780D34490594CE6B22B5237702 /* NSURL+DDCategory.m */, - ); - name = "NSURL+DDCategory"; - sourceTree = ""; - }; - 3917310CC917B2C168E3B146D1F0F4EF /* UITextView+DDCategory */ = { - isa = PBXGroup; - children = ( - FC971A3A9EDA097ABE98F185983DB4CA /* UITextView+DDCategory.h */, - 3EE9CEF2C2F5BCD9EFE90ABC09A789C6 /* UITextView+DDCategory.m */, - ); - name = "UITextView+DDCategory"; - sourceTree = ""; - }; - 3B0A12A0B1A9678125E959C26F1BCB20 /* Support Files */ = { - isa = PBXGroup; - children = ( - 3326B8E894952633ABD4D8A111550A6C /* SwiftyRSA.modulemap */, - 0CAFC967A9D7EA0E7F13E290D08BCA82 /* SwiftyRSA-dummy.m */, - 90ED87E9C00E1CE19B832FC004FA2D59 /* SwiftyRSA-prefix.pch */, - D59A3B53B13AAA33732833486B7E5780 /* SwiftyRSA-umbrella.h */, - 6C133D104E3B971D8853093D2A0A32B4 /* SwiftyRSA.debug.xcconfig */, - 15D6BA666326C03F80A85BFEDF295B13 /* SwiftyRSA.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/SwiftyRSA"; - sourceTree = ""; - }; - 3C1E8A524CBBBCF9C1594A27443229D9 /* Core */ = { - isa = PBXGroup; - children = ( - 3A821BEBE1EAF20B2D22D0B87ADE6CA4 /* UIScrollView+ZFPlayer.h */, - 883D0D7B956CCB8AEACB177E034415AC /* UIScrollView+ZFPlayer.m */, - B79DF7DF2251EF8A9A4DD8BBDB32B5D9 /* UIViewController+ZFPlayerRotation.m */, - 35C47EE90EB8C0E8B997E7D10C024B1A /* ZFFloatView.h */, - 7F96937CC3868B34FA491E26FB66A620 /* ZFFloatView.m */, - 6F67A3F6383872630B0AE5225DBEE2FE /* ZFKVOController.h */, - E851E4ACF01D343915A6C5122ADD167B /* ZFKVOController.m */, - 484ED9278AFBB03768FC180C42EF6D50 /* ZFLandscapeViewController.h */, - 5B8DE2F25DFD6D28B2B1A4E5A91CA4D7 /* ZFLandscapeViewController.m */, - E5E4A96A72027ADC8D7A969D1D99B6BB /* ZFLandscapeWindow.h */, - BB0810EA23F98BB396B250D2DC45F9F6 /* ZFLandscapeWindow.m */, - AC1D2CC1B5DCDB8318B494F34D130A4B /* ZFOrientationObserver.h */, - E6145F6A2251DBFA7404007919F8188C /* ZFOrientationObserver.m */, - E4F0E4655E139103A4394964C824F558 /* ZFPersentInteractiveTransition.h */, - 5E0907190CC9C4233E019988DFAD5A53 /* ZFPersentInteractiveTransition.m */, - F44E54229C2F1F0ECF8A252B99B4591C /* ZFPlayer.h */, - 9A191F40A63AD4FA76C8A1EABA01E054 /* ZFPlayerConst.h */, - D59C0C03644CD9FEB9AE0D8C65741CB3 /* ZFPlayerController.h */, - B709F1F1BA29FAD095CAAA02FCF5611D /* ZFPlayerController.m */, - 0595A2C45A2C807F199AE3CE85C23090 /* ZFPlayerGestureControl.h */, - 635099AFDEE684DE3CF6FD640325795F /* ZFPlayerGestureControl.m */, - 96C64AAD044B46A920CAE6AA6E68CE02 /* ZFPlayerLogManager.h */, - C11C30399545FCCDA38C3426C95032C5 /* ZFPlayerLogManager.m */, - DE28F6C8920734CB78C861B48749CF7D /* ZFPlayerMediaControl.h */, - D78ED7FF50379F1FE6D24BA5A1A6A5DF /* ZFPlayerMediaPlayback.h */, - D1C95840DC145B6A5D3F749B2141FD5F /* ZFPlayerNotification.h */, - A334299C71CD0E02377132049A793348 /* ZFPlayerNotification.m */, - 843613D9700997543D0459D76E84B20C /* ZFPlayerView.h */, - C5E6E3CA4A8E52A62926BBB0C348C335 /* ZFPlayerView.m */, - 0436294A00804FAE3E7C9243FB523E7D /* ZFPortraitViewController.h */, - AE99DD9E33CE8E9C5FAF0FAF7FE9DF25 /* ZFPortraitViewController.m */, - 99A12B850606BE38C96C6F5269E2817D /* ZFPresentTransition.h */, - 450EDB90DA887F1591A7E3715563CE5F /* ZFPresentTransition.m */, - CD0710BE17B7076DE0C5064A4556B118 /* ZFReachabilityManager.h */, - DE4B3B27625A65A6880C056D8B39690A /* ZFReachabilityManager.m */, - ); - name = Core; - sourceTree = ""; - }; - 3C9F6A11887672481ACE1AFBD6531CBC /* UIScrollView+DDCategory */ = { - isa = PBXGroup; - children = ( - E18A24FC1DBD78A3CD2CF26C5443197F /* UIScrollView+DDCategory.h */, - C80B46B81E9F8AD4793199E559EA439E /* UIScrollView+DDCategory.m */, - ); - name = "UIScrollView+DDCategory"; - sourceTree = ""; - }; - 3D4169D4C5E080AF7111CD0DFE3DC096 /* Support Files */ = { - isa = PBXGroup; - children = ( - 649C21CD06D198F52447FCD339D2D5F0 /* JXCategoryView.modulemap */, - 124EB9CE1EBA4FD11BC091A4994501C8 /* JXCategoryView-dummy.m */, - FFD9E84FEB3AF8AEB7EB3E96772C1160 /* JXCategoryView-prefix.pch */, - A2DAB0E486C16636AB9638A94C2C7537 /* JXCategoryView-umbrella.h */, - 3DEF2C80E3775C1069BA968CD0083DDE /* JXCategoryView.debug.xcconfig */, - 29BE9E31903DAE10D2A89D3008DFA912 /* JXCategoryView.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/JXCategoryView"; - sourceTree = ""; - }; - 3DB570AF29646540C44E82D91592EF68 /* DatePickerView */ = { - isa = PBXGroup; - children = ( - 6BC55BC0261A7D48665DE67AA1945699 /* BRDatePickerView.h */, - 1F7572392C42E5FF330B624CEA619EEB /* BRDatePickerView.m */, - A45AEB2DFFCE8057206B2DE8ECBE25D4 /* BRDatePickerView+BR.h */, - AE073D46601660CA896FC55F0616725F /* BRDatePickerView+BR.m */, - 9D52CF39101110368F7621562A7D254D /* NSDate+BRPickerView.h */, - 10DC75BD948DEA4ED79A527B33D05B8E /* NSDate+BRPickerView.m */, - ); - name = DatePickerView; - sourceTree = ""; - }; - 3F7DE281E27E7A6EA93CB30A8296265A /* NSThread+DDCategory */ = { - isa = PBXGroup; - children = ( - D7AA1041950AA3B048BA78D87D0FF176 /* NSThread+DDCategory.h */, - 9BF902A56BF760BDD12158187207FBAB /* NSThread+DDCategory.m */, + 4ECBE6D55B860A623894EE89ECA6D497 /* NSThread+DDCategory.h */, + C9589DB5D2D94EE3C30777E55FE0137D /* NSThread+DDCategory.m */, ); name = "NSThread+DDCategory"; sourceTree = ""; }; - 3F8B959FD062B3A13D9AD56993CE7251 /* Support Files */ = { + 2A916BE1BB800047F0978F756DE15F57 /* DDWebImage */ = { isa = PBXGroup; children = ( - 481B85FAFC922757DA4C90024EAA2AD6 /* SwiftEntryKit.modulemap */, - D2D99684924B37D6D10017B50BCCF47E /* SwiftEntryKit-dummy.m */, - 5D4D4A45DEF07F41BE33DDAC0AE6AC68 /* SwiftEntryKit-prefix.pch */, - 383AE731664CE428798D9444028D70FC /* SwiftEntryKit-umbrella.h */, - 622BF90602E3605129149406EE02294A /* SwiftEntryKit.debug.xcconfig */, - 03BDCBB30B6BF9E9B16313E806FE3E2B /* SwiftEntryKit.release.xcconfig */, + 483A4CB2F18EC1491DF4C332D1029C6E /* UIImageView+DDWebCache.h */, + 957B458B27963A1B20D990D8A7C547A8 /* UIImageView+DDWebCache.m */, + ); + name = DDWebImage; + sourceTree = ""; + }; + 2ADBC6ECC7119AAEE4B94D64499544C4 /* ijkplayer */ = { + isa = PBXGroup; + children = ( + A7DE48F6E46001C36233AC81BC7F59C4 /* ZFIJKPlayerManager.h */, + A9817CFE8A4527BF9CC4CEA07E9BF38E /* ZFIJKPlayerManager.m */, + 0A4A80A67C7B05B8DB4A6C7BC1D585FF /* Frameworks */, + ); + name = ijkplayer; + sourceTree = ""; + }; + 2D239BACC0EEFEC70EB05E4F5FAB13DA /* DDBaseViewModel */ = { + isa = PBXGroup; + children = ( + 817CE321BA9B96C442CFBD690CBD8636 /* DDBaseViewModel.h */, + 9FF5754CB4007BA551AA19CE66D63905 /* DDBaseViewModel.m */, + ); + name = DDBaseViewModel; + sourceTree = ""; + }; + 2D81C357744E13F25EF03B53A7BEABEA /* Annotation */ = { + isa = PBXGroup; + children = ( + CDA2C01C5C9E53D268788C255E2BC642 /* DriveRouteCustomAnnotation.h */, + 370BE790B2678C2C7C8A43B2B8A9159D /* DriveRouteCustomAnnotation.m */, + 43626F977713AEAF0E58929CE8CDB3CA /* MAPointAnnotation+DDCategory.h */, + FB4414A9248D03B8B7104D1E67CBC979 /* MAPointAnnotation+DDCategory.m */, + ); + name = Annotation; + sourceTree = ""; + }; + 2E2979EEA526EF12EFF99342726E5CF7 /* OCLog */ = { + isa = PBXGroup; + children = ( + B4C0E6869F4D7E37A614613CCA52203C /* DDOCLog.h */, + ); + name = OCLog; + sourceTree = ""; + }; + 303BC295BFC2DCF293EC032BF0C68DE6 /* Frameworks */ = { + isa = PBXGroup; + children = ( + C207EA960C3E98E377D11BE272564828 /* AMapFoundationKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 30C88B9858B6711FE1F81C87ED95CF3F /* Support Files */ = { + isa = PBXGroup; + children = ( + 5798204446A72B8DDC8037E0E19A7D31 /* ZLPhotoBrowser.modulemap */, + F5D86760EC70ED805F2906BBA726B480 /* ZLPhotoBrowser-dummy.m */, + 32EC1C5CBEF89285AC6C31291332B527 /* ZLPhotoBrowser-prefix.pch */, + 5F2D87110AC2D64F74ECD8AC9CDEF0C1 /* ZLPhotoBrowser-umbrella.h */, + 90B9FF058E72ABE05F3B9B0DE1543FBD /* ZLPhotoBrowser.debug.xcconfig */, + 19F3DA811C0F7DCEA9A0881CACECA189 /* ZLPhotoBrowser.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/SwiftEntryKit"; + path = "../Target Support Files/ZLPhotoBrowser"; + sourceTree = ""; + }; + 31E450A8E529B8412FF8072F187E61C9 /* DDLogKit_Private */ = { + isa = PBXGroup; + children = ( + 2E2979EEA526EF12EFF99342726E5CF7 /* OCLog */, + 0708B793A2267D813D1E6D415F492D4F /* Support Files */, + 5E8E755390FF5EDAC5BBE9E19FC6AEA5 /* SwiftLog */, + ); + name = DDLogKit_Private; + path = DDLogKit_Private; + sourceTree = ""; + }; + 34256EF572335B9A42CFF4C3D8FE7D62 /* DDFontKit_Private */ = { + isa = PBXGroup; + children = ( + 0C9CAA5A5E610917C349EC6ED701550F /* FontUtil.swift */, + 084313FD3E896B9030531908D44D8CD4 /* Support Files */, + ); + name = DDFontKit_Private; + path = DDFontKit_Private; + sourceTree = ""; + }; + 34B78B29C53CA6C3626F4E1D7564F248 /* Support Files */ = { + isa = PBXGroup; + children = ( + E00D2129BABFC3F6E0FF3F80917EBE36 /* DDUtilsSwiftKit_Private.modulemap */, + 9EC0AE154353695419564ABE9F48F459 /* DDUtilsSwiftKit_Private-dummy.m */, + D3465B75044DE317BA11741C09EFF375 /* DDUtilsSwiftKit_Private-prefix.pch */, + 908CFBC3F536D248F9C1F62F8C021EFC /* DDUtilsSwiftKit_Private-umbrella.h */, + 4F88101538EE2A77224B3C1F7C32934E /* DDUtilsSwiftKit_Private.debug.xcconfig */, + CA5DAAA25AE8EDD19A8969327550AD00 /* DDUtilsSwiftKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDUtilsSwiftKit_Private"; + sourceTree = ""; + }; + 36DA8BC40F0E15557BA0A8B13228A0C3 /* UITextView+DDCategory */ = { + isa = PBXGroup; + children = ( + DCB224F266E399DCEDEDC6891CABD5F2 /* UITextView+DDCategory.h */, + B97764B5C39055E3EC18E9F7FFB4EA4E /* UITextView+DDCategory.m */, + ); + name = "UITextView+DDCategory"; + sourceTree = ""; + }; + 374149E961192372CF7EA5A93377DB10 /* DDBaseTableView */ = { + isa = PBXGroup; + children = ( + 9828823C2BF2418D550CDBB193C104EA /* DDBaseTableView.h */, + 5B774242E6BB5C48ACAA705B03F995A7 /* DDBaseTableView.m */, + ); + name = DDBaseTableView; + sourceTree = ""; + }; + 399BB633B7383834D10E19FF3D4A2756 /* AMapTrack-NO-IDFA */ = { + isa = PBXGroup; + children = ( + 86E3A0E601A3090A3DE50302075D8ECD /* AMapTrackCommonObj.h */, + 2A3C0274768B12039B1D8F80F51CC5DC /* AMapTrackError.h */, + AC4983AFC294D041448180476D26CAFA /* AMapTrackHistoryObj.h */, + E6719601EF8326A4633467C30A16DD2D /* AMapTrackKit.h */, + 0AA020CDC58FE075FCE7F605D7C71C36 /* AMapTrackManager.h */, + 3A32C5ED700D85A465A27E07FAD94176 /* AMapTrackManagerOptions.h */, + 4F1E052E2CCD85C0178C114EED4EBE28 /* AMapTrackTerminalObj.h */, + FC174CD732D55828ED525F77700397CD /* AMapTrackTrackObj.h */, + 051C5739886E46AEF20E44D2E243D885 /* AMapTrackVersion.h */, + 1980C9F0AA182F49F1E2B46D1AE56425 /* Frameworks */, + 54D997D1D87D451DFBD999802EDC76D6 /* Support Files */, + ); + name = "AMapTrack-NO-IDFA"; + path = "AMapTrack-NO-IDFA"; + sourceTree = ""; + }; + 3A3618731A5D1C6F986DB3BABFF93C60 /* Support Files */ = { + isa = PBXGroup; + children = ( + 3433DB6885A6D5358FE7F8A29CC19A8A /* DDControlsKit_Private.modulemap */, + B9C2ACD62F530BEE464FCF63376EEEFE /* DDControlsKit_Private-dummy.m */, + C8F85005C6DF90570A1583DDB15CA994 /* DDControlsKit_Private-prefix.pch */, + EF022014DE530474C24326BAC5A6DB79 /* DDControlsKit_Private-umbrella.h */, + 77D6363B15E7FD81D43C1F894B278CC5 /* DDControlsKit_Private.debug.xcconfig */, + 9D0F6B63ED009DCB443935C2CE7C3EAB /* DDControlsKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDControlsKit_Private"; + sourceTree = ""; + }; + 3A97B349C3724BB5B59D671051025718 /* UIWindow+DDCategory */ = { + isa = PBXGroup; + children = ( + 0E637AD0363C979CEAEC2DDEDD522239 /* UIWindow+DDCategory.h */, + ABB63A522A7029CFC415E409AC947BC4 /* UIWindow+DDCategory.m */, + ); + name = "UIWindow+DDCategory"; + sourceTree = ""; + }; + 3B4DBD5B8272873665B43187100BE1E4 /* UITableViewCell+DDCategory */ = { + isa = PBXGroup; + children = ( + E098D99A76CC9954A6BE37F5635FC9A8 /* UITableViewCell+DDCategory.h */, + B3A3678CD7310132EA271C69596E9969 /* UITableViewCell+DDCategory.m */, + ); + name = "UITableViewCell+DDCategory"; + sourceTree = ""; + }; + 3DC02175E7B946FE8F57F2A5B8D105E7 /* DDImage */ = { + isa = PBXGroup; + children = ( + 5A33F6DDDB760DDFEE2DC0D52793034E /* DDImage.swift */, + ); + name = DDImage; + sourceTree = ""; + }; + 3E2A6630731FB53B1EDDC3FB07B137F0 /* DDControlsKit_Private */ = { + isa = PBXGroup; + children = ( + 13E294D05F4F6878624AD14386D1B233 /* DDAttributedString */, + 3EDC9EF8647C593D73B001DF30888C0A /* DDButton */, + 0E28E0E40632DE3E1E3764A70F4EB939 /* DDCollectionView */, + A25A9B9E3125D3C7DF818559B2A754C9 /* DDCollectionViewCell */, + 3DC02175E7B946FE8F57F2A5B8D105E7 /* DDImage */, + 90B6B2AE5216317BDDE1E8DA27FD6B8B /* DDImageView */, + 03B94AF85725BB6A0060941703112BDF /* DDLabel */, + 268B4A761AA82C696809DE6C785262BF /* DDNavigationController */, + 52D0B8C5ED7C4220E5ED5BA1CF431738 /* DDScrollView */, + 1A7640C9354BEFFF72193B6F6A72AF5D /* DDSwitch */, + 1FEBE8141CD16384466B9F831969D2D3 /* DDTableView */, + 9BF5B9CA075E5D492F341E0F171B51E5 /* DDTableViewCell */, + 61F4B6C161769672B8E16D6D6F7B61F9 /* DDTextField */, + BA968BED8A9226671ED5DE8B49052341 /* DDTextView */, + BEF1CA10A4093181D3F7CA841BF0E472 /* DDView */, + 803F1A06F7DA46D8AD5F70D07252BC39 /* DDViewController */, + 3A3618731A5D1C6F986DB3BABFF93C60 /* Support Files */, + ); + name = DDControlsKit_Private; + path = DDControlsKit_Private; + sourceTree = ""; + }; + 3EDC9EF8647C593D73B001DF30888C0A /* DDButton */ = { + isa = PBXGroup; + children = ( + E6FFE4D860DE4D742D3E569CF4076BDF /* DDButton.swift */, + ); + name = DDButton; sourceTree = ""; }; 40F107534C937BC69E9FBEA4420D7509 /* Pods-OrderScheduling */ = { @@ -4523,1556 +4337,1767 @@ path = "Target Support Files/Pods-OrderScheduling"; sourceTree = ""; }; - 42589D84FA1B25C8743D581C5E4F6F9B /* Frameworks */ = { + 43F133695D7273DDC875DF181F5768DA /* SnapKit */ = { isa = PBXGroup; children = ( - 8F6332625A3B042E25124829DA79EFFD /* Bugly.framework */, + D68BC02E3A18FAC545AD0942F8BD4C06 /* Constraint.swift */, + 5A32E70CB124358D5CECEE227AC887B2 /* ConstraintAttributes.swift */, + 0ECCEAE57EDDB8B2A3E8AC0E0F20AE1B /* ConstraintConfig.swift */, + 7F183400195575164CDEFA521081774A /* ConstraintConstantTarget.swift */, + AFB14E26932DD42ECE2B3DF40655D499 /* ConstraintDescription.swift */, + 45A7ADF680DF48084013C21660919A71 /* ConstraintDirectionalInsets.swift */, + EDDA5F4711874E111FF9BC56716D4961 /* ConstraintDirectionalInsetTarget.swift */, + 9C665BD596A5079363EB7617BE4EDDF3 /* ConstraintDSL.swift */, + E65AF53697F3F9D9D6DA4F80E94A0D48 /* ConstraintInsets.swift */, + F0B7922BC30B7BF1ED70AE760EAE9B8F /* ConstraintInsetTarget.swift */, + 4AB9909E45891C02CBD6A4A15CAFFED2 /* ConstraintItem.swift */, + 2C2DA1167FE33CA58E41E634B332A355 /* ConstraintLayoutGuide.swift */, + C6AD4B383AA40248F0A4DCFB58420DD4 /* ConstraintLayoutGuide+Extensions.swift */, + 95415F271C47020156F876B9F8DB738C /* ConstraintLayoutGuideDSL.swift */, + 8E7DDD5F13C6D43D6067B784F42EA5B8 /* ConstraintLayoutSupport.swift */, + 4041940F5DF4EA21CAA442DCF7056FE9 /* ConstraintLayoutSupportDSL.swift */, + 90F9FAA765F7B47D959C83CDBA64F581 /* ConstraintMaker.swift */, + A4886924F62ED6D39696DC7BA9F97A4A /* ConstraintMakerEditable.swift */, + 8FC7F1B055C62C605A0893A4B4286548 /* ConstraintMakerExtendable.swift */, + AB14354CA0CB3F670EF99A2295D90BC3 /* ConstraintMakerFinalizable.swift */, + AF57C2F96F08650971648691090F449E /* ConstraintMakerPrioritizable.swift */, + 2571F104F558D56AA1643BF2B7EEC96D /* ConstraintMakerRelatable.swift */, + C85ACE659AB892043964E240817ABE84 /* ConstraintMakerRelatable+Extensions.swift */, + 117F315C434C3863D42FD21EB781CA98 /* ConstraintMultiplierTarget.swift */, + BD9D667C94A007216D3FF3F2869CD15B /* ConstraintOffsetTarget.swift */, + A3423FA0A90F7A80595AC06FDB905ACA /* ConstraintPriority.swift */, + C7029C52AFA58A03BECCD586864EC830 /* ConstraintPriorityTarget.swift */, + EBD33BE475D8487B542491727DBBD29B /* ConstraintRelatableTarget.swift */, + C3A506D4AE4A293357B49D9AD000A532 /* ConstraintRelation.swift */, + E0B456A7535ADF8CD38B5EC1D33A1029 /* ConstraintView.swift */, + 67DCB1DB968582DA481C0778C3762179 /* ConstraintView+Extensions.swift */, + 275603A8F528E82EE55999D086F5CA34 /* ConstraintViewDSL.swift */, + 539024D7747DFC60ACCE3627871052CB /* Debugging.swift */, + 1B7C4C7E7DFC21015CF8FC51298CC504 /* LayoutConstraint.swift */, + 551315C765C362FE3E5FE52E04073406 /* LayoutConstraintItem.swift */, + 164362782043234383B02483B232185E /* Typealiases.swift */, + 67F029F4CB4AF2F94B400D0F42A414B3 /* UILayoutSupport+Extensions.swift */, + 8158BA22AE7CB7A69C379A9EDE03F3E3 /* Support Files */, ); - name = Frameworks; + name = SnapKit; + path = SnapKit; sourceTree = ""; }; - 4268D99C77EE83E0E2E23B8971BC718F /* DDAudioPlayerKit_Private */ = { + 4438D769CA2EE9D86C0FB5FA7B8CD640 /* Support Files */ = { isa = PBXGroup; children = ( - 94FCE695A228A5ABB6C7986DA2EC49EC /* DDAudioService.swift */, - 7820A44DC2B736F4FB0F8A86F4EC0E4A /* DDSpeechSynthesizer.swift */, - 150CF28FFB6BE1F3A18CE1226470418D /* Support Files */, - ); - name = DDAudioPlayerKit_Private; - path = DDAudioPlayerKit_Private; - sourceTree = ""; - }; - 42940486897EDA642112BEADACFEFF5D /* DDMANaviManager */ = { - isa = PBXGroup; - children = ( - 3EF2E47916B8F5D713ABA226E6EA4F2C /* DDMANaviManager.h */, - 6CEC4DCA63675BD6DB49032ED12D2426 /* DDMANaviManager.m */, - ); - name = DDMANaviManager; - sourceTree = ""; - }; - 42CBF97FCE28BD703950600CADE4D389 /* Support Files */ = { - isa = PBXGroup; - children = ( - 30056FBAD7F3AEC99E3F310D37F827BE /* DDFontKit_Private.modulemap */, - F222BA6E4D09D7FB5E244FFC860E95B7 /* DDFontKit_Private-dummy.m */, - D2B52B269ED8E8694CC4B8556F7460F6 /* DDFontKit_Private-prefix.pch */, - C77EAD8BE8D24538219A854747B554D8 /* DDFontKit_Private-umbrella.h */, - EE32E345CCB48B3C34363F8452AC2BA3 /* DDFontKit_Private.debug.xcconfig */, - 15A3D781D1A99E34FA083B4FB5E7662B /* DDFontKit_Private.release.xcconfig */, + 8724F9CDFBD302D5C7E90A1785F578BD /* ESTabBarController-swift.modulemap */, + 32401D1F033150760A66639F648D97DD /* ESTabBarController-swift-dummy.m */, + A8761FED098D9D393C2034FC6D0B44C9 /* ESTabBarController-swift-prefix.pch */, + DCD99B5E4240686B47300128D9897A3A /* ESTabBarController-swift-umbrella.h */, + 871F4538634B7C6510B6C6D3D01C0194 /* ESTabBarController-swift.debug.xcconfig */, + 57066B483B3C78049F0880AFFCE791C4 /* ESTabBarController-swift.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/DDFontKit_Private"; + path = "../Target Support Files/ESTabBarController-swift"; sourceTree = ""; }; - 43B8A48B7C417EFC18754D0F37463276 /* Support Files */ = { + 46AF96947BE9C91BAF049BCD2A7AD31B /* DDUtilsSwiftKit_Private */ = { isa = PBXGroup; children = ( - 5A46EFCBCE640C93E2FD41846752FB57 /* DDPersistenceKit_Private.modulemap */, - 56B65EA3C14DE5A8F995B9E16CDD2FCA /* DDPersistenceKit_Private-dummy.m */, - 4BAD9C27F9C3AD251EDA896CDF5581AB /* DDPersistenceKit_Private-prefix.pch */, - C1C63D3300052B1D92A1FBB7216FCC29 /* DDPersistenceKit_Private-umbrella.h */, - 78C9BC8534817A08C5EF932B9F5F6AAF /* DDPersistenceKit_Private.debug.xcconfig */, - D319BE64A44DF3EF7E975E3C7B5CB7E7 /* DDPersistenceKit_Private.release.xcconfig */, + CFCE8D4F13BCA42091BE611EC11C4F03 /* ApplicationInfo */, + 62279BF8C25723C9B1B17CA91B64847E /* DeviceInfo */, + B10B01FBF5C15CF6E889A332C4E034D5 /* FileManager */, + 34B78B29C53CA6C3626F4E1D7564F248 /* Support Files */, + 4D4C45084E9664856C2301405EFDDDCA /* UrlLinks */, ); - name = "Support Files"; - path = "../Target Support Files/DDPersistenceKit_Private"; + name = DDUtilsSwiftKit_Private; + path = DDUtilsSwiftKit_Private; sourceTree = ""; }; - 46640FD81E278B2C7F2983A751FC6822 /* NSAttributedString+DDCategory */ = { + 485DB07EEED3DC287FB821CFEE39F4D0 /* MapKit */ = { isa = PBXGroup; children = ( - 9089747D09C54D518BEC18FE8D514F09 /* NSAttributedString+DDCategory.h */, - 5DA7D1FCAA7DCF748209F19B062A9016 /* NSAttributedString+DDCategory.m */, - D161CC3876E5C0136B9B88CE4F5A805F /* NSMutableAttributedString+DDCategory.h */, - 0E9EE5CD60A63114E41152F3B4402920 /* NSMutableAttributedString+DDCategory.m */, - B80E897D71688C0FC11FEFB6C23A171D /* NSMutableParagraphStyle+DDCategory.h */, - 6956C1C13B6F483A31127FA1E738D13A /* NSMutableParagraphStyle+DDCategory.m */, + BD8C0BEA44A3F19AB254339CA52001DC /* MKAnnotationView+WebCache.h */, + 45BCDD8B42F08E3EA61EFB04D6E071A9 /* MKAnnotationView+WebCache.m */, + DDA69305344998ECA41F4A63617370D5 /* SDWebImageMapKit.h */, ); - name = "NSAttributedString+DDCategory"; + name = MapKit; sourceTree = ""; }; - 46E4D2945ED74548CDB8029A55B847E1 /* Support Files */ = { + 4AB74D237C6907FCDB95F638E6C388C7 /* MJRefresh */ = { isa = PBXGroup; children = ( - BBC83FFB7E5BAEDCC3A3C2CAD3967AF0 /* DDTimerSwiftKit_Private.modulemap */, - FB804492911B7D0F2826748AF43D21E7 /* DDTimerSwiftKit_Private-dummy.m */, - 25B1751F5E34DD87BCE7F7214B19DF6C /* DDTimerSwiftKit_Private-prefix.pch */, - 838C0533D1F076BA19A4E8FF6F2FEA5A /* DDTimerSwiftKit_Private-umbrella.h */, - F6ED0EF3CAC4FA857384CB73579D87F0 /* DDTimerSwiftKit_Private.debug.xcconfig */, - D60EA2F98FB9BE841A4547635AA91D7F /* DDTimerSwiftKit_Private.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/DDTimerSwiftKit_Private"; - sourceTree = ""; - }; - 48BEFE7F48443F6B1A85A42725ABE2A4 /* DDLabel */ = { - isa = PBXGroup; - children = ( - 84B5F1C4B61C044E30A27877BD9CDA0F /* DDLabel.swift */, - ); - name = DDLabel; - sourceTree = ""; - }; - 490F36408B831C2D3196C62985CC8651 /* Support Files */ = { - isa = PBXGroup; - children = ( - 6974A5798D9E106791F4E832722F0348 /* DDLogKit_Private.modulemap */, - 947D279463B5B17482D9DF2C59B091DB /* DDLogKit_Private-dummy.m */, - 53CE5DA7D71B3803C35DD2677AD6CC23 /* DDLogKit_Private-prefix.pch */, - F3BE690DD541CEA0596F424B3DB5AA11 /* DDLogKit_Private-umbrella.h */, - 47D89C6D2883B4D4256C5D157CDA57FC /* DDLogKit_Private.debug.xcconfig */, - BA0391BD18FA000ED45F11F7FC0C5941 /* DDLogKit_Private.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/DDLogKit_Private"; - sourceTree = ""; - }; - 4A7064474006F982BB3C43A0CA8D4473 /* DDBaseButton */ = { - isa = PBXGroup; - children = ( - 3E10BAD04178D8BC9A360ACB84AC6AAD /* DDBaseButton.h */, - D9985D5699F85E989561E3CC0F9777F5 /* DDBaseButton.m */, - ); - name = DDBaseButton; - sourceTree = ""; - }; - 4A775079D7D0CD2567D9A7CA252163E8 /* AMapLocation-NO-IDFA */ = { - isa = PBXGroup; - children = ( - 35BDCD95DEAEFFC45B03A2677FA44305 /* AMapGeoFenceError.h */, - 8FB71F741FAA5593A035F0AB89BBD0B2 /* AMapGeoFenceManager.h */, - CE9750A886819C0851AD8E9C9CB07B10 /* AMapGeoFenceRegionObj.h */, - 54685BD3F79257437A860480CF1A642B /* AMapLocationCommonObj.h */, - A5A7FEDE640ADB2E35F956F7A7C2450F /* AMapLocationKit.h */, - D453CD8AD12EF26AAC4327F4D9CD6063 /* AMapLocationManager.h */, - D5F38DDA0977761FE8D74EA774ADBEB3 /* AMapLocationRegionObj.h */, - AA341F7B5A96F286FE512894EDC79898 /* AMapLocationVersion.h */, - 2C8BA2365F71159E8F1E5D2DA4108AA9 /* Frameworks */, - 4B0198D06C6316DE1B2EBA712ADD528F /* Support Files */, - ); - name = "AMapLocation-NO-IDFA"; - path = "AMapLocation-NO-IDFA"; - sourceTree = ""; - }; - 4B0198D06C6316DE1B2EBA712ADD528F /* Support Files */ = { - isa = PBXGroup; - children = ( - 52F1573EB6D890E2BEA052DB689F3672 /* AMapLocation-NO-IDFA.debug.xcconfig */, - 2B21E4FEE4BE8BB22168C0E276B9E408 /* AMapLocation-NO-IDFA.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/AMapLocation-NO-IDFA"; - sourceTree = ""; - }; - 4B8D9436BA8CAC537131469340D90E5E /* RxSwift */ = { - isa = PBXGroup; - children = ( - 45852B116DAC5E9D5C836CB6D908A7CB /* AddRef.swift */, - 4FD2FCF8484F129C862C7733EF997F21 /* Amb.swift */, - E566FFBE1E891077F13982FFBEEC0E06 /* AnonymousDisposable.swift */, - 8AB231A7381C8AA9B00BC107A2E23B9C /* AnonymousObserver.swift */, - BD393D5805C510AC305C4D96DC6CA7ED /* AnyObserver.swift */, - 1956A59B6F641145AE9B88C7B729CDBB /* AsMaybe.swift */, - D1742FDCF0050E56F79D6F64221112F0 /* AsSingle.swift */, - 706D7A963DE9BAE212F00D54C63D795C /* AsyncLock.swift */, - C842FDBBDB7AC6BB51DD45499CB83DFD /* AsyncSubject.swift */, - 027E73ADA442942B942931E217508A38 /* AtomicInt.swift */, - 38F344FEA99B81836A0E8C25B2A98111 /* Bag.swift */, - 65A34A5314F1C2F5E39877CDD4C23111 /* Bag+Rx.swift */, - 586E2749D56A094136630B1170197D6B /* BehaviorSubject.swift */, - D07B045DEB70E217C83F4D2724D77EF0 /* BinaryDisposable.swift */, - 07292771F5B6BFDAEEF7BB781539B2C9 /* Binder.swift */, - 7BFEE202F51DE86820BBD9B0E7B60D2F /* BooleanDisposable.swift */, - 41F1115AC7B6E578068DBF01F1D2B305 /* Buffer.swift */, - 3340C67728F3719BEB95E3EB0E40AA68 /* Cancelable.swift */, - 848BA543148270E52815E8A9B9CAE339 /* Catch.swift */, - 29D4E98A792538E2D480C26BDC1FAD50 /* CombineLatest.swift */, - B0843ED4DF873D2CE831BC9352368804 /* CombineLatest+arity.swift */, - 065D268617DD88D760B9AE0ABFEC338F /* CombineLatest+Collection.swift */, - 4F6E6F5701A4F4670E0F79103B1E00FC /* CompactMap.swift */, - 13B84C97A0658E5BF9785ED3D7F2382B /* Completable.swift */, - D446283244E7CA1B1117F7A419DA6B22 /* Completable+AndThen.swift */, - AADD8A1FA51E934EFD39C3D1EA6C4B97 /* CompositeDisposable.swift */, - A9B379106427F4ABA14026A5C879745A /* Concat.swift */, - 5FAD79C41B45B523A59B0002355A9946 /* ConcurrentDispatchQueueScheduler.swift */, - 6FEC83C0B71DB4C7CD33043F11CA9B91 /* ConcurrentMainScheduler.swift */, - 4EF2D12CB1D3D8939B1F712960F69414 /* ConnectableObservableType.swift */, - 1ECD6B430CCCC5B4F68E166B0F782276 /* Create.swift */, - CE8C07FB0C9157E9EA4C65E1ADD0DA58 /* CurrentThreadScheduler.swift */, - 1462B6AC3BC1CA282AC70DAB36436FC5 /* Date+Dispatch.swift */, - 6872B0B64D619D409B987338BE83225C /* Debounce.swift */, - 193030B448D45A623A5D67C4437BD0E3 /* Debug.swift */, - 1D9DC55FA6FB4B58435F022F362C91DB /* Decode.swift */, - 242042ABEF57F226FFBE5440B5CF22C4 /* DefaultIfEmpty.swift */, - 1E091CB31E02C49432290E464888C472 /* Deferred.swift */, - B599060CE2C52BF65174D29738625943 /* Delay.swift */, - C17A699C03E45BB7F13E926A3DFAC928 /* DelaySubscription.swift */, - A169C4083A6FE0A0721678E2DEFFD9D8 /* Dematerialize.swift */, - F1756D58B22DE7E2697E4B004A427D3F /* DispatchQueue+Extensions.swift */, - 3C991CF2D3C6D6F087F1081D318A46D5 /* DispatchQueueConfiguration.swift */, - E8992DFC4BAC285FC6B2750477970437 /* Disposable.swift */, - 38C5E69575397A824ACC20EEE48A7C48 /* Disposables.swift */, - B7CD4F4F951D9C61A9AB7D1C7C9927D6 /* DisposeBag.swift */, - 3CAD3E3A21F8ADE24E4B8F7C2D348734 /* DisposeBase.swift */, - 75AB66F1387ADE34186211D2FA51C30C /* DistinctUntilChanged.swift */, - 057F7456D5D387EC14E07A6B1800E0E5 /* Do.swift */, - 7B64D8BD88674E87F4B8033172DD9E64 /* ElementAt.swift */, - 934DC177795CCC1CACFDCC5C151056C7 /* Empty.swift */, - A8DD808D7607AD343A0DCA81670E898E /* Enumerated.swift */, - 68910D4570412D613971BE54661ABCAA /* Error.swift */, - BE6A795BD6D757EA9E0FF2F23006ED62 /* Errors.swift */, - 5AB1E42E25ADFA86AFA66F2CAB3E7847 /* Event.swift */, - ABBFFD2D79C3133BB5D213184A66FBA1 /* Filter.swift */, - 152A805B7E968298AC27A46F277C1B8D /* First.swift */, - 9FA79894D6DDF3F2507D0CB7D0422651 /* Generate.swift */, - ABE8238EE5B140517E77DC887ED83389 /* GroupBy.swift */, - 7516546B31F35DBB7EA065BBF00BE1ED /* GroupedObservable.swift */, - E9E8E1D6FA76DAD512B88D9AE9C856FD /* HistoricalScheduler.swift */, - 81B9AEBD43CEE06721B54B6D2E40B3A3 /* HistoricalSchedulerTimeConverter.swift */, - D57763CCD643A0FB8242C8FF13B9D636 /* ImmediateSchedulerType.swift */, - 9E78EC5F257D62CF5EBF684320C1C0A5 /* Infallible.swift */, - 80D8B88FBBCBC51A9822653DD718DE16 /* Infallible+CombineLatest+arity.swift */, - 4B915A8B88EC16CA9453D450DA5E7665 /* Infallible+Concurrency.swift */, - 43F05E04C13FEA025791F0C90AF64A3A /* Infallible+Create.swift */, - B5BFBBEEDE76412C60C6A68B87FC9FAF /* Infallible+Operators.swift */, - 250899CFA9E35E2EDB9D0E6E2472E8F5 /* Infallible+Zip+arity.swift */, - FD6ACCDFDFB40B51E0A7536360185958 /* InfiniteSequence.swift */, - 649FBF53BF9B5ADD1F9DBF131DE3EED3 /* InvocableScheduledItem.swift */, - BE5E8C3CB6962907C20F39684AC6B5F2 /* InvocableType.swift */, - 74BB3D3F5C55C3FF6574478AD648B145 /* Just.swift */, - A1F8AAE3B07D060F242023977EAFF840 /* Lock.swift */, - 5C6A80B78774980C70F8CB643F437DA7 /* LockOwnerType.swift */, - 036CB30248C3E4844C34996061A14975 /* MainScheduler.swift */, - D69B86109108D36D6C03F6928633BA0A /* Map.swift */, - 4851D82A3D7915BCD7AB79F3C678EA66 /* Materialize.swift */, - 275B2489357F6B943066C4950DD73452 /* Maybe.swift */, - 4BCED856B5FE108236C228D98674A5B8 /* Merge.swift */, - 3C9F229151B8B259B893B17EAB1CECCF /* Multicast.swift */, - 9326477912E1585BCB8783A0BB58CEDD /* Never.swift */, - 993694870161950B7FDF6DC85649ECE0 /* NopDisposable.swift */, - 1D3379D26F54ACFD9C0723474C82A4B3 /* Observable.swift */, - 99EC91A075178B7FF5097610ED48DC20 /* Observable+Concurrency.swift */, - 8E281636A5A977262D61E9DB96F60A0A /* ObservableConvertibleType.swift */, - 04A4D8C22ADEBBFF6A7BB0745BF06E12 /* ObservableConvertibleType+Infallible.swift */, - 2128F15BA4C86E8ED3189D13DE1E8C27 /* ObservableType.swift */, - 4D3EE162F3792639946D2A530C5CBC39 /* ObservableType+Extensions.swift */, - 1882ECCFC89D22852AAA5A86111E8FC9 /* ObservableType+PrimitiveSequence.swift */, - E26786300E7990BA147EAC57C853A1D8 /* ObserveOn.swift */, - BC71308873FDE26EABD8F4629B5B9526 /* ObserverBase.swift */, - 16E2C1798806CF3C978D11648C8B0C0B /* ObserverType.swift */, - 1C144673DA81368C881E591519555C40 /* OperationQueueScheduler.swift */, - D533FADDA301CD753353068193F72777 /* Optional.swift */, - C53F82D0FD922169F23C0581E8431009 /* Platform.Darwin.swift */, - 30F546E8BCAFA33862B493120D44F9FF /* Platform.Linux.swift */, - 84F82C75247FE02020351864D416DE2D /* PrimitiveSequence.swift */, - DC504023A4CF8712E65954019EF54CC8 /* PrimitiveSequence+Concurrency.swift */, - 319A6DEF8780E66CED6DA98807DAF3D6 /* PrimitiveSequence+Zip+arity.swift */, - FA25B0C2F60DF29FA4C9113178755654 /* PriorityQueue.swift */, - 32C6983D879B23B0B91040F47B2AD467 /* Producer.swift */, - F72E68825DA49D12F442AC4EF0859F0F /* PublishSubject.swift */, - 464ADB2A55FAC4862428B1C0F3830314 /* Queue.swift */, - 8C1E2E66C8F47CC09FD29744360BDA5E /* Range.swift */, - 74C2FB48366D8FE74D6DA514ADF89EAF /* Reactive.swift */, - 70B581A0535C8AFE1471785F9A56355D /* RecursiveLock.swift */, - 3D01EE13B02828DBBBDF6CE75703D077 /* RecursiveScheduler.swift */, - 2B3217B6B8CBB512FA28BE40CFDC46B4 /* Reduce.swift */, - 9E54F1F80E988005D646796E532D54A5 /* RefCountDisposable.swift */, - B3FEB9B2D27F3E1688FE70C9828E6B66 /* Repeat.swift */, - 46C26B2CF6E92ECEEC8FFAB34A867546 /* ReplaySubject.swift */, - 898861D63F75FB1E1CBBF0126341CEE4 /* RetryWhen.swift */, - E1955AB9D511D422C71260183A1AC2D9 /* Rx.swift */, - 378E05D526BC6532FFE1FD5E4CC5DEDE /* RxMutableBox.swift */, - CF638130DB223CA073CCEFF8B7377E46 /* Sample.swift */, - F6D675079940CFE6C6B1495B5312FEF0 /* Scan.swift */, - 18650E478F40BBC9768C627BD7407442 /* ScheduledDisposable.swift */, - 1D422E0445C0E667A8DDCAB237B98C88 /* ScheduledItem.swift */, - 138086460796A09E7D9CEC5BAADC340A /* ScheduledItemType.swift */, - 19FBC541AA06F373125EE9F7B4D1203A /* SchedulerServices+Emulation.swift */, - A7D9E4872D97F4F73672291A1F44B6D0 /* SchedulerType.swift */, - D704D6A35DF4622B7398E732D6ED8E57 /* Sequence.swift */, - 0F0B3FA98291615813B74700D35BDBCB /* SerialDispatchQueueScheduler.swift */, - 86C39B9E1ED8091431E51484A8EC4847 /* SerialDisposable.swift */, - 70D91EEB7F91167D35E862FFE0649EC9 /* ShareReplayScope.swift */, - 9C7D57191F468BDA2B52987E7DF12195 /* Single.swift */, - 5684E68822F1D3E342ACBEE8770608F2 /* SingleAssignmentDisposable.swift */, - 864C4471A94EFD4C2B350ED4251170D9 /* SingleAsync.swift */, - 7C6180D3049C9C913A983028658C4854 /* Sink.swift */, - A10CD21A978B7213B50F82629974CBC7 /* Skip.swift */, - 378042B17205B4AF9E31C1411F3392E0 /* SkipUntil.swift */, - 249A441A40E84569CF5DBB1D09DCEDD3 /* SkipWhile.swift */, - 5B5C79740769FC13DE918AC35AD45E07 /* StartWith.swift */, - 84E85387348999D8B79FB268ECD4CF0D /* SubjectType.swift */, - 65C7DD4A867385D60261DB360F2009D9 /* SubscribeOn.swift */, - 7DD5ABD5BAE466CBBC22E69CA8F62ED6 /* SubscriptionDisposable.swift */, - 6D0F309CE1BDDDC0EA78E3E70432E00D /* SwiftSupport.swift */, - 2E9E083F0E2F9D06F39EE0F1D719CA9C /* Switch.swift */, - 19E76A4A9B93AC93EB19D6EE1B74BF22 /* SwitchIfEmpty.swift */, - 3FDBD918659A95261D4BFD1E57869778 /* SynchronizedDisposeType.swift */, - 5FBC1D9B2AD7A1EB1CFEA5A5897EEB8B /* SynchronizedOnType.swift */, - 488531DD11CF79657474262DEA09C8C6 /* SynchronizedUnsubscribeType.swift */, - 62CA17BE2901DB71E2E07C045BCF74D6 /* TailRecursiveSink.swift */, - BD22009E70BD6EADE5345601C6C73233 /* Take.swift */, - 866E3993D4D20D92AE6CA6566F505597 /* TakeLast.swift */, - BDD2A5B96EF08036A2BE14C8D6B54AAB /* TakeWithPredicate.swift */, - F89DB792BF01C3EED008EB246E7776F8 /* Throttle.swift */, - 28F61DE58C2CA5F8307902466CA8FADF /* Timeout.swift */, - 11E135200DF2568A9B210DBB3C1F2DEB /* Timer.swift */, - 5B4B3931D9C0DF301A195D99CA4C3D9D /* ToArray.swift */, - 66F47940405489608F4ADDD38EEE007F /* Using.swift */, - 803E944794202982B6BF71FA78D3E934 /* VirtualTimeConverterType.swift */, - 5107931B7E0FC729534E626863AC9BB2 /* VirtualTimeScheduler.swift */, - 2F13E0CF91EE62BAB0EC24793238658D /* Window.swift */, - 89EFA90518B49F91DB43C8735742B37D /* WithLatestFrom.swift */, - 0DAB8458DAF8C56A553FAAF494D6BBD2 /* WithUnretained.swift */, - AA7279D9C6F9BD7E79B9FD439BF03B8B /* Zip.swift */, - 36A8D3011FE0D727683CB9388B8D0B8A /* Zip+arity.swift */, - 37B78C25010DAB73DB43D284B5A0CC04 /* Zip+Collection.swift */, - 38305D9218E5F933286E55910BC9869B /* Support Files */, - ); - name = RxSwift; - path = RxSwift; - sourceTree = ""; - }; - 4BB059117B28A09D303787D3E8D1B5A5 /* IQKeyboardManagerSwift */ = { - isa = PBXGroup; - children = ( - 74462DD94E8BEAE1E01733BE2145FE7B /* IQBarButtonItem.swift */, - C51DCD033EC4E5306D57EFE8A9875BB9 /* IQInvocation.swift */, - C0D07D99309044AA88637A2C416C0875 /* IQKeyboardManager.swift */, - 27A0DE390500D96C03B183EF0D429F0F /* IQKeyboardManager+Debug.swift */, - 17B24D9588F2DF70F55E988A1A6CB2A0 /* IQKeyboardManager+Internal.swift */, - A9CC98C7FBDCEC01C9FF69AF3AD399BF /* IQKeyboardManager+OrientationNotification.swift */, - 24A468DAB9A7D9E988E0E9267BDAE322 /* IQKeyboardManager+Position.swift */, - 2D7A7CED1D8CA82CC44D38208D97D306 /* IQKeyboardManager+Toolbar.swift */, - C9BD42BD673516F1481F3B0A1F54144A /* IQKeyboardManager+UIKeyboardNotification.swift */, - 1C298E694BE1435C44BD309B7BF4845B /* IQKeyboardManager+UITextFieldViewNotification.swift */, - A2B6BE45956FD5C733D827442732FB6C /* IQKeyboardManagerConstants.swift */, - AF28F0390B37BBAB00F838E656B095DA /* IQKeyboardManagerConstantsInternal.swift */, - ECF1923C17ACC43F03AC28982A84D44A /* IQKeyboardReturnKeyHandler.swift */, - D48D3A43723EE2AB26487BF291CB6054 /* IQNSArray+Sort.swift */, - 879388E287309EC5B6B9E14083EB9A58 /* IQPreviousNextView.swift */, - 4577B9EBD4673186634D390BE66F1F1F /* IQTextView.swift */, - C0CDD553F3C9F50C5FF0BC701343181D /* IQTitleBarButtonItem.swift */, - A6E8AAA322B293EDCA1E1F57A1D9B21C /* IQToolbar.swift */, - A8CC1E72BBBFF3D1EAD12744E05490AE /* IQUIScrollView+Additions.swift */, - F35C25DD77F8295C48EFB3A121510443 /* IQUITextFieldView+Additions.swift */, - 286FEC52CAA80C8D342492E81E89B954 /* IQUIView+Hierarchy.swift */, - 9A54C2EA0B08D1D886963C8F6FD3E503 /* IQUIView+IQKeyboardToolbar.swift */, - 7C11F0E7FF4B809B75108D36C30AD2FC /* IQUIViewController+Additions.swift */, - 85A041CCFA7C9C71BDFB0651CC21CE6C /* Support Files */, - ); - name = IQKeyboardManagerSwift; - path = IQKeyboardManagerSwift; - sourceTree = ""; - }; - 5050C991869C2749EC88FD6434BB9874 /* UIScreen+DDCategory */ = { - isa = PBXGroup; - children = ( - 836B70AF1902E529A0FECE121B18AB1C /* UIScreen+DDCategory.h */, - 94383346701CE943B058EEFE516C3F76 /* UIScreen+DDCategory.m */, - ); - name = "UIScreen+DDCategory"; - sourceTree = ""; - }; - 56805E6B4ED804D134AB9C28083A303C /* DDCollectionView */ = { - isa = PBXGroup; - children = ( - 1FD819AFD8BCF3C957BC508893DE12FF /* DDCollectionView.swift */, - ); - name = DDCollectionView; - sourceTree = ""; - }; - 576077D6BC7EE5D6D0F7B635D50D8669 /* Frameworks */ = { - isa = PBXGroup; - children = ( - BFB98FE897CD0F8B97DD69E0F49442B8 /* jpush-extension-ios-2.0.1.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 58535D3BBEFC460E2995D2EC6F59578A /* DDImageView */ = { - isa = PBXGroup; - children = ( - EF0FF53539B0A7C97B5B8D5936D3350E /* DDImageView.swift */, - ); - name = DDImageView; - sourceTree = ""; - }; - 58874579767F2271E60ACA15BC4DC8FA /* Frameworks */ = { - isa = PBXGroup; - children = ( - 2A041EDFB1FF2B65289829FED4D388B5 /* AMapTrackKit.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 59C74D42C3481179004AA730418FF615 /* Support Files */ = { - isa = PBXGroup; - children = ( - 381A53D47F78F15CFB699071AC466B0E /* AMapTrack-NO-IDFA.debug.xcconfig */, - 7A8C8AF30AD84DD09DAEBF8AB4449539 /* AMapTrack-NO-IDFA.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/AMapTrack-NO-IDFA"; - sourceTree = ""; - }; - 5D3931F588A03B73CDA356A19706E32B /* Resources */ = { - isa = PBXGroup; - children = ( - 7D0A4A2904E3141B79A063B4440062E1 /* Sources_DDMAMap */, - ); - name = Resources; - sourceTree = ""; - }; - 5D8F01F62206378DC2621B74A619C909 /* MJRefresh */ = { - isa = PBXGroup; - children = ( - 464E9109E881EAAD942E3CA3F335F40B /* MJRefresh.h */, - 9D7B3F06FC86313D92F0CAF2CFD0BCD1 /* MJRefreshAutoFooter.h */, - 40CAABF70D0D6257D468B81F5748A553 /* MJRefreshAutoFooter.m */, - CB4D065BD3993C63341C9CF0FF891C6B /* MJRefreshAutoGifFooter.h */, - CD08E3FDD80F9FFC9C233F07CB1475AF /* MJRefreshAutoGifFooter.m */, - 670412B890CE30F8631D3DBF68EB4B97 /* MJRefreshAutoNormalFooter.h */, - 5158774E93AAB204BEB8B6F15686EE8A /* MJRefreshAutoNormalFooter.m */, - 5F8ED44F5937A9A812D540E484331164 /* MJRefreshAutoStateFooter.h */, - A181CFF6E84AA02D829ADF5F710FC1E5 /* MJRefreshAutoStateFooter.m */, - 84BACDA80C49A4EB43FE6924CCC6F6CA /* MJRefreshBackFooter.h */, - A940978B2BF8C6839BB0F74AAB53974F /* MJRefreshBackFooter.m */, - F9D0A1C3717C19D580A5795B7F06D8B2 /* MJRefreshBackGifFooter.h */, - 483FA3F9A454C8561105FA7D51B1FD02 /* MJRefreshBackGifFooter.m */, - C8E0BEE7BA06A00AFFDAF9DDAFC4BF82 /* MJRefreshBackNormalFooter.h */, - 7178656096573F8AD8E88526C6863C49 /* MJRefreshBackNormalFooter.m */, - B85428ACF1CDCD7FAAE71CC6BE1937AF /* MJRefreshBackStateFooter.h */, - 64E77274A02D17B69874E9ED632E6F36 /* MJRefreshBackStateFooter.m */, - DB78D91CF9F57A502BA45B9F388E1FF9 /* MJRefreshComponent.h */, - 6074F691DB9F268B99C5B70A7ACF4B9E /* MJRefreshComponent.m */, - AC48B4F734A773D2F8CA6C4C18FA0438 /* MJRefreshConfig.h */, - 66FACC93905B18E27091928175728B80 /* MJRefreshConfig.m */, - ACCC81957B043657C6ADF39A29618B2F /* MJRefreshConst.h */, - A9256D3714F10A90DA1BA7212A695000 /* MJRefreshConst.m */, - 228670185E76FB0C1D655D0C6B53DD63 /* MJRefreshFooter.h */, - 432F362B416AB2A0E3095E57C7DA1939 /* MJRefreshFooter.m */, - 43077E18310DC4A0F50CC96A0DE2B0E9 /* MJRefreshGifHeader.h */, - C388C572C414DE2530573984668DEE32 /* MJRefreshGifHeader.m */, - 42A15DD2ACA65F9A5BE1A8067126DBBA /* MJRefreshHeader.h */, - 6CA86CC183A4AD9A4542DD8672A3D58B /* MJRefreshHeader.m */, - 5B62DB25D38D0B9AC1EA7396B7CFB256 /* MJRefreshNormalHeader.h */, - 3EB7402D9902C9EA57FD6402B339105D /* MJRefreshNormalHeader.m */, - 9416F011751EE2CCAAFDBAA6295A34DC /* MJRefreshNormalTrailer.h */, - 816833637B80A142377856F220C60072 /* MJRefreshNormalTrailer.m */, - C120D78DD89D582A5405DA3F63D5932E /* MJRefreshStateHeader.h */, - BC9283DA686D39710258BDB7370A42A9 /* MJRefreshStateHeader.m */, - E2AB9F8CE95BBDB9C1257ECA7BFBB6C4 /* MJRefreshStateTrailer.h */, - 9567D9D031702459E9D3BDC8711B125A /* MJRefreshStateTrailer.m */, - 7EF4C1D1ABAD085F21A045EE2D7E73D2 /* MJRefreshTrailer.h */, - D7A6FC30ADB37AFEF59BBDA41CF604B9 /* MJRefreshTrailer.m */, - 09992FAE0A936CC4D45EB725F658957A /* NSBundle+MJRefresh.h */, - 67D23FAC7919CE8AE69FB0F18A621FCE /* NSBundle+MJRefresh.m */, - E7BD47B6911577F6147241C333B965BF /* UICollectionViewLayout+MJRefresh.h */, - 0D88E96BD30113C71AD4225F185AD871 /* UICollectionViewLayout+MJRefresh.m */, - 0697135A5700E37C37D709774F076F78 /* UIScrollView+MJExtension.h */, - 709209572360C5C66284AA744CA27028 /* UIScrollView+MJExtension.m */, - 9ECCA2E9F88E4020FF26BF65A46B73B7 /* UIScrollView+MJRefresh.h */, - DFFB42422D64045DBBA512977E3A8B4E /* UIScrollView+MJRefresh.m */, - B44448047B2C467309AAAE75CE2BD4B4 /* UIView+MJExtension.h */, - 81510816831459AE4634AB018B8A1089 /* UIView+MJExtension.m */, - 933A1F4E57275F8CA85515C85A1171AA /* Resources */, - D3606809614D7922C069D44F90FD0399 /* Support Files */, + 691F57E326C3DEE81C09881290EF7A0C /* MJRefresh.h */, + 7EADA2B589766C8EAFFD468B6CDA23BA /* MJRefreshAutoFooter.h */, + 86B98D2202E51E7CCF9F64DCD8BFE7E6 /* MJRefreshAutoFooter.m */, + 962376F96870BF93D497DC67197B51EF /* MJRefreshAutoGifFooter.h */, + A865D99D9F7E97AA7DF4420835BC98B1 /* MJRefreshAutoGifFooter.m */, + 9FE6E76773837601F72CB86EA43A6D61 /* MJRefreshAutoNormalFooter.h */, + 0D939F5318634975C98B836DD17AC80E /* MJRefreshAutoNormalFooter.m */, + B5DCFD445F02011536789C989FC8049B /* MJRefreshAutoStateFooter.h */, + E59D5E323294187BA97F9DCCCA2CAB03 /* MJRefreshAutoStateFooter.m */, + 40E0CD4E04E3FBD7A47B1B210224AC01 /* MJRefreshBackFooter.h */, + F642166314CD6308CA3D4F6BA47E2F1E /* MJRefreshBackFooter.m */, + E83D1F19C92D0CB67F6F840E12CB9DAB /* MJRefreshBackGifFooter.h */, + 46E27DDA8F4DDBE9BA961AD575752F28 /* MJRefreshBackGifFooter.m */, + D41F03449EFFAD7334A04DA3C9EAFB70 /* MJRefreshBackNormalFooter.h */, + 0B41E04BC8FD317EF74E8E6A776368CC /* MJRefreshBackNormalFooter.m */, + 8ACD19B87346CDED4320D92E05273EC5 /* MJRefreshBackStateFooter.h */, + A8810F442A427B55C7AE10B8984544E2 /* MJRefreshBackStateFooter.m */, + FE0E0216760A95C6486BF69B22EB7321 /* MJRefreshComponent.h */, + 9E491F032B37C7D205E0EE1094D35416 /* MJRefreshComponent.m */, + 38B4BE3790A38C9083BABC50AA41A6B9 /* MJRefreshConfig.h */, + B0FBDCF01215D7EABC956A4621ADABB3 /* MJRefreshConfig.m */, + A854712807C24CB9DB0126A588D0467E /* MJRefreshConst.h */, + 9F9217E11B9FCAAEBB360EB617822611 /* MJRefreshConst.m */, + 2746EBB01091E25AB7A6DC9257CAE0A5 /* MJRefreshFooter.h */, + 4EF6A538EA24604DE5D93A1D23854563 /* MJRefreshFooter.m */, + 8B7E5D768C8222B510991A3930088747 /* MJRefreshGifHeader.h */, + 42E1733F0A54462DABFD18A9696013D4 /* MJRefreshGifHeader.m */, + F976AC5EA889B0439B7DDAB2F6813A00 /* MJRefreshHeader.h */, + 2E0C37DE99D9731B1B1A4C331F9E1300 /* MJRefreshHeader.m */, + FA8D42323BA231450F57A9C8F53795CE /* MJRefreshNormalHeader.h */, + BD9259973A3D723B28D98BAC298321D0 /* MJRefreshNormalHeader.m */, + 6D2A076D770B8DD24D238362C7053CE7 /* MJRefreshNormalTrailer.h */, + BE5F512A605C45E66D7CAB4121CEC4ED /* MJRefreshNormalTrailer.m */, + 607E1F16251FD639A870F32E79FC5335 /* MJRefreshStateHeader.h */, + CB3908E3273D37090384F2B128AD30F2 /* MJRefreshStateHeader.m */, + CCD5719E35CDF09E7221B6BF27CD9FC5 /* MJRefreshStateTrailer.h */, + 9E627D5B1A7FB24C484CE8EFFD56AAFF /* MJRefreshStateTrailer.m */, + 4A164CBE2408E7142E5158CE10D83149 /* MJRefreshTrailer.h */, + 68C11471FE2D8B3FF3169547E7A039C1 /* MJRefreshTrailer.m */, + 9990A28564C2A1179E3ABD2D3D1AFC08 /* NSBundle+MJRefresh.h */, + FAB77DBD2EAA9186B4C583AE22CF34A3 /* NSBundle+MJRefresh.m */, + 68A9797707F2EF47FB79B2AA1D930A2A /* UICollectionViewLayout+MJRefresh.h */, + D47153E7D24BB2FCD8C70411D09E2F43 /* UICollectionViewLayout+MJRefresh.m */, + 9AA5E045C740083BA8AF1BEC792B7C72 /* UIScrollView+MJExtension.h */, + 2986CDC423DAB128C688D13C96B5315E /* UIScrollView+MJExtension.m */, + 21086E62CBCB8C87E3823CB9DB3A9820 /* UIScrollView+MJRefresh.h */, + 2F00728D7064C5080BED01B0574930D2 /* UIScrollView+MJRefresh.m */, + 0D73D0FE814F287483B64EC3DCA05E85 /* UIView+MJExtension.h */, + FA2025431831AD62BB4AC05FCA005431 /* UIView+MJExtension.m */, + C6EB97A839CE7EB0D9B0236F87B217AA /* Resources */, + B766943F85CDDA854E65D09BF0DD0B1A /* Support Files */, ); name = MJRefresh; path = MJRefresh; sourceTree = ""; }; - 5DCC5BCFD1AC326D2E94C53D375173F1 /* ObjC */ = { + 4D4C45084E9664856C2301405EFDDDCA /* UrlLinks */ = { isa = PBXGroup; children = ( - 75B7B148702B0070DA3C265A01B6DDDD /* SwiftyRSA+ObjC.swift */, + D8F5ADB034A04A654B5D34FABDC5761E /* UrlLinks.swift */, ); - name = ObjC; + name = UrlLinks; sourceTree = ""; }; - 5EAFC6425569F9E9B825E97B3DA4FEB1 /* Support Files */ = { + 4DDF4A8AC24BC2AB4F21F0B8C0E99C2E /* Frameworks */ = { isa = PBXGroup; children = ( - 3875BD4A5D39F47F13368B8F6434E5F4 /* ZLPhotoBrowser.modulemap */, - FF6A0846BAF94C70B4F299449B47C645 /* ZLPhotoBrowser-dummy.m */, - D8E6EAF45D9469E12A214B43BE24937F /* ZLPhotoBrowser-prefix.pch */, - 37FF1B198B116FFE6A7C4E3FEE9969D1 /* ZLPhotoBrowser-umbrella.h */, - 7EB7B0A9C44B87EC7140C701FE2AD3ED /* ZLPhotoBrowser.debug.xcconfig */, - 01CB0DAE7EE2185A60E5254888222198 /* ZLPhotoBrowser.release.xcconfig */, + D3808497EBD84678A672339209E38157 /* jpush-ios-5.0.1.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 4E21BCC4DAB68339D3708D06D914FFD9 /* NSBundle+DDCategory */ = { + isa = PBXGroup; + children = ( + 65FD06ADE19FC189779D2A632024BC2A /* NSBundle+DDCategory.h */, + 98B8534159943A5AE3BE4E7F14B3EB6E /* NSBundle+DDCategory.m */, + ); + name = "NSBundle+DDCategory"; + sourceTree = ""; + }; + 4F46733FABF5231242E8F76434F65C54 /* Support Files */ = { + isa = PBXGroup; + children = ( + C1F5F806AFCD503624E55B19A123B2BA /* AMapNavi-NO-IDFA.debug.xcconfig */, + C89ADCB72663A7461E23819200652DC9 /* AMapNavi-NO-IDFA.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/ZLPhotoBrowser"; + path = "../Target Support Files/AMapNavi-NO-IDFA"; sourceTree = ""; }; - 61A165DB8BC76EEC477C97C9D7C7C100 /* Support Files */ = { + 505A81956C06ACE994A9D88B36F90849 /* DDBasicControlsKit_Private */ = { isa = PBXGroup; children = ( - CE46837814917E3C3A303BE9E4962FF0 /* Bugly.debug.xcconfig */, - FB064C8064492D58BA1BE26DA697E302 /* Bugly.release.xcconfig */, + 219C47F2ACA47B1DE4E1A5C4AD6F8C18 /* DDBasicControls.h */, + F1456EB9D97FBA74943ED92DB3BE458E /* DDBaseAnimation */, + 0847E2A82F32DE2D60E9924E90D5B592 /* DDBaseAttributedString */, + 59F46248596550E8935CF668F791C291 /* DDBaseButton */, + B8F824D5E46628C5C3F7071E9E9EB921 /* DDBaseCollectionView */, + A992D37A340E28F148C9CD1B6EF13F41 /* DDBaseCollectionViewCell */, + D0915F23EB6415B727BA6736AC9A7FDA /* DDBaseImage */, + E69E5D9EFC37B4E8DCD427A43CA9019E /* DDBaseImageView */, + D68C5FC15735120C6D0183A964106439 /* DDBaseLabel */, + 6F46E12705265AF1495B6ABFD0C6F07C /* DDBaseModel */, + 5484A50954166794B38F35337280575D /* DDBaseNavigationController */, + 04B681A05575B19A6B1594DC3F286772 /* DDBaseScrollView */, + 7E95F560A20DEBE5C3AE42447E0E98D7 /* DDBaseSwitch */, + 1781DE8AC5D09FF587939819B3B6FD21 /* DDBaseTabBarController */, + 374149E961192372CF7EA5A93377DB10 /* DDBaseTableView */, + 5FB9CAA7C24FA964ABA0CFB04479CB86 /* DDBaseTableViewCell */, + 6F91F753137E777970E3F3E716B5B9FB /* DDBaseTextField */, + 9757BAEC47A0E2277FB80E4622B5B25D /* DDBaseTextView */, + 16C90B456D9BCB53DCB8C6D2075C8976 /* DDBaseView */, + C011768CD96FC65421AC1E578AB900BC /* DDBaseViewController */, + 2D239BACC0EEFEC70EB05E4F5FAB13DA /* DDBaseViewModel */, + 80ED83435B4ED7914112CBF3F80ECF22 /* Support Files */, + ); + name = DDBasicControlsKit_Private; + path = DDBasicControlsKit_Private; + sourceTree = ""; + }; + 50CF73AE5EF8342B860932C36A6EEA30 /* Core */ = { + isa = PBXGroup; + children = ( + E23690602F1F2488B74ED123C0F50923 /* UIScrollView+ZFPlayer.h */, + A262C4E426195A0B813E94A06318FA31 /* UIScrollView+ZFPlayer.m */, + 6358D58A5AE250044FABF5EBCE2E3229 /* UIViewController+ZFPlayerRotation.m */, + E0C3110EBBBF54A09C476E88DFC53487 /* ZFFloatView.h */, + 728BC62357FBB93CB07BF6E17C2A6A86 /* ZFFloatView.m */, + 83E6FA2568CBB703B0B60597E97F83B2 /* ZFKVOController.h */, + 99CE58B9ABC04158905A41A15EDF0313 /* ZFKVOController.m */, + 5D46B6F8561141FF2830A973B19A3552 /* ZFLandscapeViewController.h */, + E26C473C6BA89A685CE546EA10377C64 /* ZFLandscapeViewController.m */, + B32CB0D13462C2F2BD813A40A7C428EC /* ZFLandscapeWindow.h */, + F044BC1978FC2262022D2676743B4136 /* ZFLandscapeWindow.m */, + 967CBA8BA665837EDE92543AB065E2E6 /* ZFOrientationObserver.h */, + 41D9FBF1BC149AD34E28B9F14094D61F /* ZFOrientationObserver.m */, + 0FD5270C8F324A664F43825F1FB622D2 /* ZFPersentInteractiveTransition.h */, + 22D0C1EF358F431DAAC79A38578A86A8 /* ZFPersentInteractiveTransition.m */, + F9E1E301798563B619C73A5CAFDBCC3E /* ZFPlayer.h */, + 07E3AE01D1547BF2F1CFD22F207B2F5D /* ZFPlayerConst.h */, + 0AE38A3F9708F4BF8E26C436B4013776 /* ZFPlayerController.h */, + DD43A92F9FDDBA8FCF0D0F150900643C /* ZFPlayerController.m */, + CC8E283F6E8225E91F6D44784460A8D5 /* ZFPlayerGestureControl.h */, + 50A490EAFAEC4DE19BACFBC6105EA0D0 /* ZFPlayerGestureControl.m */, + 6BB0021453AFA884E736E1E90E4E8301 /* ZFPlayerLogManager.h */, + FEEECA72C1BB5566120AF0EA7AEC1BC3 /* ZFPlayerLogManager.m */, + 3753B74746DACEC042103493B829DB68 /* ZFPlayerMediaControl.h */, + E5730C59C24A6564E9896A7A187C1700 /* ZFPlayerMediaPlayback.h */, + 08D28D7A055CD03744D4D1D70503ED98 /* ZFPlayerNotification.h */, + 6E915487FBA27FB58B360BD2274EE32D /* ZFPlayerNotification.m */, + D878230AD5A542C60F6DDE5CEBD1B58C /* ZFPlayerView.h */, + A0075F18943CBD04D78DFC48361C17F5 /* ZFPlayerView.m */, + 9EC0FD51086DADF03B4999AF9F7BAFA4 /* ZFPortraitViewController.h */, + 29B0911F2AC65F45EB9C0EEEB034DFB9 /* ZFPortraitViewController.m */, + E73CE92DD4FE7D7478F6FBDF487927F2 /* ZFPresentTransition.h */, + 62E17D58423F4FEF758BF860FAD8BB59 /* ZFPresentTransition.m */, + DEC6A7481BCE4C6F897933E7486DFCE6 /* ZFReachabilityManager.h */, + 590F4DBBFD1721BB98FCC7CD15CC5D52 /* ZFReachabilityManager.m */, + ); + name = Core; + sourceTree = ""; + }; + 52D0B8C5ED7C4220E5ED5BA1CF431738 /* DDScrollView */ = { + isa = PBXGroup; + children = ( + 24E7683549AA9D8976E42E20C05780AB /* DDScrollView.swift */, + ); + name = DDScrollView; + sourceTree = ""; + }; + 52FED9ABD0E208465A5013529CE3E5EF /* BRPickerView */ = { + isa = PBXGroup; + children = ( + C1AAA50E3ECC82DE8B66ABCC558B4233 /* BRPickerView.h */, + D175DFADAC4F1256AAD3B3EF2D3356A7 /* AddressPickerView */, + BD1B1B05A356FD1A97F21350946965D6 /* Base */, + D2F3B770D42E8619DC377ADF7C402BE7 /* DatePickerView */, + 0E746896DD2E226B38C6C257198FB124 /* StringPickerView */, + 78DCA1EF8BFFC4EA2AB6935A033BCFBA /* Support Files */, + ); + name = BRPickerView; + path = BRPickerView; + sourceTree = ""; + }; + 5484A50954166794B38F35337280575D /* DDBaseNavigationController */ = { + isa = PBXGroup; + children = ( + D1B3C59A3746CE85515C59617A5A65B6 /* DDBaseNavigationController.h */, + B65734589527F52728F0446B9494C731 /* DDBaseNavigationController.m */, + 4582A9D4C8AE8FBC80AE2A4C09EE181D /* DDNavigationControllerDelegateReceiver.h */, + E7057C8A31DD87EA63F4B205A5826082 /* DDNavigationControllerDelegateReceiver.m */, + ); + name = DDBaseNavigationController; + sourceTree = ""; + }; + 54D997D1D87D451DFBD999802EDC76D6 /* Support Files */ = { + isa = PBXGroup; + children = ( + 219FF9A5CBF2C4CCFA4820510911BA99 /* AMapTrack-NO-IDFA.debug.xcconfig */, + CA7DA7ABF6E0DD9E4C0BD8433C515A3D /* AMapTrack-NO-IDFA.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/Bugly"; + path = "../Target Support Files/AMapTrack-NO-IDFA"; sourceTree = ""; }; - 62A502CA7D1463F7AF4680C0ED527690 /* DDLogKit_Private */ = { + 55A0446D534BCC841E12FA469D30E86A /* NSObject+DDCategory */ = { isa = PBXGroup; children = ( - 24991D3357B53576E6362A22AC451691 /* OCLog */, - 490F36408B831C2D3196C62985CC8651 /* Support Files */, - 869FE51B994FD00DE3FE074350DAC80D /* SwiftLog */, + C4A993DBC2B198CC671EA3E4BE861FD4 /* NSObject+DDCategory.h */, + 3E80CF754935616F3D07EC39D0154570 /* NSObject+DDCategory.m */, ); - name = DDLogKit_Private; - path = DDLogKit_Private; + name = "NSObject+DDCategory"; sourceTree = ""; }; - 644D975B64DB9162C91F173C3C3DAFA3 /* DDBaseTableViewCell */ = { + 5849CAEF87217C7E5C9B841545E187F9 /* Support Files */ = { isa = PBXGroup; children = ( - 0D522B239E95E125274CFAA3A5D14A78 /* DDBaseTableViewCell.h */, - 9931CE7574E5B3A78D179DEAE91D7E2A /* DDBaseTableViewCell.m */, - ); - name = DDBaseTableViewCell; - sourceTree = ""; - }; - 6988B4D0E8B9B999D9D9CB4964ED8C5F /* DDBaseCollectionView */ = { - isa = PBXGroup; - children = ( - 4CA6A3CFA3DC5B9298363462334E9391 /* DDBaseCollectionView.h */, - 9E12638D5B9E77F38BF7335B964AEC62 /* DDBaseCollectionView.m */, - ); - name = DDBaseCollectionView; - sourceTree = ""; - }; - 69FA04D33FFB56697274580BBD2B0E53 /* Bugly */ = { - isa = PBXGroup; - children = ( - 42589D84FA1B25C8743D581C5E4F6F9B /* Frameworks */, - 61A165DB8BC76EEC477C97C9D7C7C100 /* Support Files */, - ); - name = Bugly; - path = Bugly; - sourceTree = ""; - }; - 6B7BF72857469ECBF3D8D9F3C4233E41 /* UINavigationBar+DDCategory */ = { - isa = PBXGroup; - children = ( - D641644EF0296AE65C2F1D2249810365 /* UINavigationBar+DDCategory.h */, - 53FE2A0958597468EE87596B2295FBA1 /* UINavigationBar+DDCategory.m */, - ); - name = "UINavigationBar+DDCategory"; - sourceTree = ""; - }; - 6D8D23E49375B733F9D0047451A9F813 /* AMapSearch-NO-IDFA */ = { - isa = PBXGroup; - children = ( - 6F58782AE828761921B460EF2BF85D12 /* AMapCommonObj.h */, - 09103C0249FF8D552D57F8C6C00E1A8D /* AMapNearbySearchManager.h */, - 956CD44DE28E07D3CE29A03165F6A163 /* AMapNearbyUploadInfo.h */, - F98A98BA8772BAC3D6526E7E5789E268 /* AMapSearchAPI.h */, - CD4988A73971BD15618F043A0E1FCD74 /* AMapSearchError.h */, - D8826C9D7063BD81BF1D0DCF113157C3 /* AMapSearchKit.h */, - C12152C1D82ACAD0AE69FF009CFA194E /* AMapSearchObj.h */, - B1A1A53B8F3A485577209EBDE57810F0 /* AMapSearchVersion.h */, - E83705DCF0EECE1C8FF7E4A9D275AFD3 /* Frameworks */, - 2DA2AF601892847036682F8667EFB299 /* Support Files */, - ); - name = "AMapSearch-NO-IDFA"; - path = "AMapSearch-NO-IDFA"; - sourceTree = ""; - }; - 6EC036259BBD442579CDEACD055C90CE /* UINavigationController+DDCategory */ = { - isa = PBXGroup; - children = ( - 2855E06F9F10691B595A8F17B10255C7 /* UINavigationController+DDCategory.h */, - 821281B930B757E0894BE75AC6B5D686 /* UINavigationController+DDCategory.m */, - ); - name = "UINavigationController+DDCategory"; - sourceTree = ""; - }; - 6F1EB5B64017FE19963E19DFFBFE6CBF /* Resources */ = { - isa = PBXGroup; - children = ( - 8C44A6F3379E6E15ECBE98D9DEB90304 /* ZFPlayer.bundle */, - ); - name = Resources; - sourceTree = ""; - }; - 6FAF191D411651E4FDA906301B60DD3F /* UICollectionViewCell+DDCategory */ = { - isa = PBXGroup; - children = ( - F6D1B0AD2B5DA0E9E88BEAE91F9EF13D /* UICollectionViewCell+DDCategory.h */, - 8A58BA0DA8FF4222995DF240ADFB2CD0 /* UICollectionViewCell+DDCategory.m */, - ); - name = "UICollectionViewCell+DDCategory"; - sourceTree = ""; - }; - 6FF0DC864114921742096FA90E31179B /* Trace */ = { - isa = PBXGroup; - children = ( - 8940E34A80FE731D6E6C878E255F6A67 /* MATraceReplayOverlay.h */, - D681619D94082F8FBAD3CFC95DF2C8FC /* MATraceReplayOverlay.m */, - 53967F558253351AD028631FF3FFC250 /* MATraceReplayOverlay+Addition.h */, - 03C1CDFBC2D3D029A3ECB0017E938D8D /* MATraceReplayOverlayRender.h */, - E6DCB8EF1110CFA75F9F7EBD8CDF9414 /* MATraceReplayOverlayRender.m */, - ); - name = Trace; - sourceTree = ""; - }; - 7078095E20132E9E1DBC41F8D38BDB0C /* JPushExtension */ = { - isa = PBXGroup; - children = ( - 576077D6BC7EE5D6D0F7B635D50D8669 /* Frameworks */, - 745899EC4B0A3A7885DA9F0D480CC97F /* Support Files */, - ); - name = JPushExtension; - path = JPushExtension; - sourceTree = ""; - }; - 7150B331DF93D7DEE8FFE7F3F8944007 /* DDAutoUIKit_Private */ = { - isa = PBXGroup; - children = ( - A1EC1C2ED9EAB5FAB42E1362ECADE8C7 /* AutoUI.swift */, - 8A7E9649C027665085D598DF7A51CD05 /* Support Files */, - ); - name = DDAutoUIKit_Private; - path = DDAutoUIKit_Private; - sourceTree = ""; - }; - 71AF92AF1CCE41A5CDE38DC5093851EA /* DeviceInfo */ = { - isa = PBXGroup; - children = ( - 31BC6730AB61CDCE8150E16A76F2B7D6 /* DeviceInfo.swift */, - ); - name = DeviceInfo; - sourceTree = ""; - }; - 7210A378F8DEE46DCC325F8F38A788B3 /* MapView */ = { - isa = PBXGroup; - children = ( - 072E7AF6289749220B171AB2A5F0EAFE /* DDMAMapView.h */, - 561D08A0865DF40CD98814126BBAE74E /* DDMAMapView.m */, - ); - name = MapView; - sourceTree = ""; - }; - 745899EC4B0A3A7885DA9F0D480CC97F /* Support Files */ = { - isa = PBXGroup; - children = ( - A401A53F624CA2692E76DA76C8AFE7F5 /* JPushExtension-xcframeworks.sh */, - FD5E1F42668AD531E8DA5CF07A8262F8 /* JPushExtension.debug.xcconfig */, - 4690C0C6E98072041DB84B803F2207AA /* JPushExtension.release.xcconfig */, + 000C79CC6867D594F7FD77C78DE94F8D /* JPushExtension-xcframeworks.sh */, + 664B80C9E1E223C3A5E06D7CE84141D8 /* JPushExtension.debug.xcconfig */, + 5E403B9EEAD13AFBAB2871831C453524 /* JPushExtension.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/JPushExtension"; sourceTree = ""; }; - 74F06EA5CCC9A71D1E83558FA810FEFE /* DDTextField */ = { + 59F46248596550E8935CF668F791C291 /* DDBaseButton */ = { isa = PBXGroup; children = ( - AC1336DF90ED85B667D6759B8550C914 /* DDTextField.swift */, + 5AD026EC53A99795D22A2F4D9151029B /* DDBaseButton.h */, + DDA33FAEAD96DC6BD523DAE59DEA6E00 /* DDBaseButton.m */, ); - name = DDTextField; + name = DDBaseButton; sourceTree = ""; }; - 7BC4F1853861D60953E61C37CF8E840D /* DDBaseView */ = { + 5AE99018DA71FC74CF693CB525BE2DAD /* JXCategoryView */ = { isa = PBXGroup; children = ( - 9CFA5B339360BCD0CA271297E4748AC6 /* DDBaseView.h */, - C21008FE97D98B3C3F38696A205F9BD8 /* DDBaseView.m */, + 02FEDAD1C01965FBD955DF32016D6989 /* JXCategoryBaseCell.h */, + 5BCA64E31F25B756265588AD099F6D0A /* JXCategoryBaseCell.m */, + 8688EEEDE43BAAEF6B29C046E3D94DBE /* JXCategoryBaseCellModel.h */, + 77413D6A5B61595D5226C52CAC7583E3 /* JXCategoryBaseCellModel.m */, + D4AF302D9A9BB92C286E7CEB1C01C8B4 /* JXCategoryBaseView.h */, + 34DC138CDF8598CC0A058B3CB89AEB00 /* JXCategoryBaseView.m */, + BB2B3A2B43DD92BB22A545662ECF1246 /* JXCategoryCollectionView.h */, + 40FFC8A40D03A307B5CCBE11F93D1B12 /* JXCategoryCollectionView.m */, + 378BF1E8082A530D9DC6DF78EA482EB5 /* JXCategoryDotCell.h */, + EEEE057AEC3F23421B6EA9039FDB2856 /* JXCategoryDotCell.m */, + 8B36E9C9B0E261079E960880B35A0E07 /* JXCategoryDotCellModel.h */, + 8B9DE725566B49263553A93A12785279 /* JXCategoryDotCellModel.m */, + A920796B53C3C1A442DFFE7A3FEB76EC /* JXCategoryDotView.h */, + ADF6D55219F1174F93F9403A7A28B827 /* JXCategoryDotView.m */, + 25EED2E2DDEE943C33233A0324F90CF1 /* JXCategoryFactory.h */, + 6E7D2754363E9BA3CC4C3089FCC02774 /* JXCategoryFactory.m */, + 358CE46A9949752CF428266851F93D2E /* JXCategoryImageCell.h */, + 10EE53D4E57EA2E1FA40BC7FADE3D694 /* JXCategoryImageCell.m */, + 3D133C2E25C41089F9392231ED2B0385 /* JXCategoryImageCellModel.h */, + 29336668B4EF47445FF254CF2AFA0390 /* JXCategoryImageCellModel.m */, + E46708345A721BE1D4235AB52C88B8B0 /* JXCategoryImageView.h */, + CC03BCC7B94731E48B755D29B5213399 /* JXCategoryImageView.m */, + 9B605E4BC61074F68B9090099824DD74 /* JXCategoryIndicatorBackgroundView.h */, + CEB3D4C291A99DA937CEDF324A6C2E85 /* JXCategoryIndicatorBackgroundView.m */, + 58E0DA6647BE77A851064593E68D6E72 /* JXCategoryIndicatorBallView.h */, + C0BB1D2E902F844CB3929719A7737AEB /* JXCategoryIndicatorBallView.m */, + 5A45E8007929D7542DAEF68384D3F6CC /* JXCategoryIndicatorCell.h */, + 0EEE68C206377454090E8B7562573D2B /* JXCategoryIndicatorCell.m */, + FD16DB6C2CC6EB9E78110FFBDC017BD7 /* JXCategoryIndicatorCellModel.h */, + 15C521A39AE11898E33A5894C1A91596 /* JXCategoryIndicatorCellModel.m */, + 7855D749526C841286E983EA3CAC88BB /* JXCategoryIndicatorComponentView.h */, + 3AB55D8C3A814E1459CBDF302E4F2D56 /* JXCategoryIndicatorComponentView.m */, + C8D1AED708A9B8A37C19E3698B4A9147 /* JXCategoryIndicatorDotLineView.h */, + E5233EFC1A112982D0425B4F7C643498 /* JXCategoryIndicatorDotLineView.m */, + 9C013CC101671B41E09C1502EA77E4A7 /* JXCategoryIndicatorImageView.h */, + 5FBF15C821B9A5AC746C891F7226C1B7 /* JXCategoryIndicatorImageView.m */, + A9BC4FEDEC0E2CC03F385735382E96E1 /* JXCategoryIndicatorLineView.h */, + 0B91C070B5B833ABCE6DBA6261E0539B /* JXCategoryIndicatorLineView.m */, + 19A66243AD3D9485E9C5C83ED1938C2B /* JXCategoryIndicatorParamsModel.h */, + B7B532F03C5F88DAE2C697DBADFBC6C5 /* JXCategoryIndicatorParamsModel.m */, + 4C88241357AD08130EC68C6D6DD210F7 /* JXCategoryIndicatorProtocol.h */, + F4BC744570A21D7B0C7586688083259C /* JXCategoryIndicatorRainbowLineView.h */, + 8BE7A6E28653DB83FB06019822EFCBD9 /* JXCategoryIndicatorRainbowLineView.m */, + 90BD683072A49772DEC88FBC551AC7CC /* JXCategoryIndicatorTriangleView.h */, + 9B813415E9861A54E39DD4588B9CCB48 /* JXCategoryIndicatorTriangleView.m */, + 4FFBED2B6EE9F1E8250262208AAEFE16 /* JXCategoryIndicatorView.h */, + 186146230847B35699BD062A17AC4F67 /* JXCategoryIndicatorView.m */, + 9B7B623E3E425F951E9D11B0C2DA8E44 /* JXCategoryListContainerRTLCell.h */, + ECF55172DABBA580348BAC9B753BD5AC /* JXCategoryListContainerRTLCell.m */, + E6F567E3A23DAE059A22DCD80A987D20 /* JXCategoryListContainerView.h */, + B549F00312347D99FC55765EB6A96E8C /* JXCategoryListContainerView.m */, + 49AFBB6C8C21BE36ECBBAF7B762DC558 /* JXCategoryNumberCell.h */, + 6D63D4ED57BE62AAEF5BDA5D8894F451 /* JXCategoryNumberCell.m */, + 9C5F0CC9752B9A98061E29A6B603DF15 /* JXCategoryNumberCellModel.h */, + 8183B206803DE53281F25BC255C285A5 /* JXCategoryNumberCellModel.m */, + 4A453F09D5AF87A4A1CE8BABD321ABBF /* JXCategoryNumberView.h */, + CBDB9A6ED22F3A355A3D6DED3FD9B36B /* JXCategoryNumberView.m */, + 334B064273CA052BCDF0EE09B6D1C80D /* JXCategoryTitleCell.h */, + 6026A99C028D75FBF7009B0469C857B8 /* JXCategoryTitleCell.m */, + 7072C7432E86A6452CD15FDAC38EF5F2 /* JXCategoryTitleCellModel.h */, + 35429E16EE003FB5FB9C52D02F481771 /* JXCategoryTitleCellModel.m */, + 7F8F3F332E659C9CBF1B9165708B4752 /* JXCategoryTitleImageCell.h */, + 47944CAB9A2E1CBFD3141E7BF595944A /* JXCategoryTitleImageCell.m */, + 0F4302B33BDFB56164A2CA552E1A0AF1 /* JXCategoryTitleImageCellModel.h */, + 9B22C2AE111B6BAD52B1C1CCF832049C /* JXCategoryTitleImageCellModel.m */, + 76F38F6902EA50F0DAAC6B311ADEB285 /* JXCategoryTitleImageView.h */, + 8E8FB0F6C04ACF36B16F90D9ECC56E7E /* JXCategoryTitleImageView.m */, + 9C19B79BA1E1908A3D166D0BE9A9078A /* JXCategoryTitleVerticalZoomCell.h */, + 37520C2DA05C5C77F4D1CFD5DC48D787 /* JXCategoryTitleVerticalZoomCell.m */, + D0CE585EB3DAF6AC0DC448953A0D84C9 /* JXCategoryTitleVerticalZoomCellModel.h */, + DF49A0B2DB663CA65EAF7EF8C4B01538 /* JXCategoryTitleVerticalZoomCellModel.m */, + 87BAAFEE252641A89CA7504699E97E3A /* JXCategoryTitleVerticalZoomView.h */, + A4FACBB3E34B686DB4BCAF719C0DE592 /* JXCategoryTitleVerticalZoomView.m */, + 67EA46B2D4684A456D577D01ACE5C09F /* JXCategoryTitleView.h */, + 4F1A884A0A646C544F2F096D150AD492 /* JXCategoryTitleView.m */, + 51CAD9D3504DAE2E36CD3371AF8005C0 /* JXCategoryView.h */, + EA06349BE41A269BCA57E429E2D65D32 /* JXCategoryViewAnimator.h */, + 62E5306970D9BA46CCECD33499D37743 /* JXCategoryViewAnimator.m */, + 7ECFDDFEC4A2EF306AB134A328B8FFA3 /* JXCategoryViewDefines.h */, + AC15D5FB3C69C246019033A6888F1939 /* RTLManager.h */, + 422A37EF2714EFE0B89DFEB631341555 /* RTLManager.m */, + B6B2DA1CF7575FFD6CC46E98A83B57D4 /* UIColor+JXAdd.h */, + 2C85CE2B73266F48DD5943571B1513DD /* UIColor+JXAdd.m */, + A1BD2CA62D69E04E9E0F127E9F6E88DF /* Support Files */, ); - name = DDBaseView; + name = JXCategoryView; + path = JXCategoryView; sourceTree = ""; }; - 7C746692B8E6C53CF2C1F7E65794BE20 /* Support Files */ = { + 5B2133DE4AB1115D1E54BF643C5C6299 /* AnnotationView */ = { isa = PBXGroup; children = ( - C905A081820701114CFF2982FF8F0597 /* SnapKit.modulemap */, - 2DAD91B5A94EC9486D38B47694177423 /* SnapKit-dummy.m */, - B28F76DE817014D42CF780206351B5C4 /* SnapKit-prefix.pch */, - DE74B231D2EB9502C3166A078A160335 /* SnapKit-umbrella.h */, - 47A3EE35E7731B4F9B55B2F0C7A55BC8 /* SnapKit.debug.xcconfig */, - C1D32C526B817BFAF0AB989D752D5936 /* SnapKit.release.xcconfig */, + E991797B63F375369191C4F81C359A0D /* DriveRouteCustomAnnotationView.h */, + E47445009D064B225F8156AF7F347247 /* DriveRouteCustomAnnotationView.m */, + ); + name = AnnotationView; + sourceTree = ""; + }; + 5BCF511EA483ACA131DBD6DB254E95A7 /* DDMAMap */ = { + isa = PBXGroup; + children = ( + 2D81C357744E13F25EF03B53A7BEABEA /* Annotation */, + 5B2133DE4AB1115D1E54BF643C5C6299 /* AnnotationView */, + DBDF6EFEB7E2EF700D00C13766849896 /* MapView */, + BF3DB338D40A3D4E395F642471F1CBFC /* Overlay */, + 9DFAF1DA54E65C237DB7F021295E8702 /* Sources */, + 8CBD5ABA16CC9DA6244C05C75E0F6FB5 /* Trace */, + ); + name = DDMAMap; + sourceTree = ""; + }; + 5E6B9C99FFB4E3A248224456F4F17663 /* Support Files */ = { + isa = PBXGroup; + children = ( + D05B97EE823062BC337989E133CEECE6 /* Bugly.debug.xcconfig */, + BCA2508381061E8227A93838DC1FE52C /* Bugly.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/SnapKit"; + path = "../Target Support Files/Bugly"; sourceTree = ""; }; - 7DFDB10B46B79AFEB30362F3D648DCF5 /* DDWebImageKit_Private */ = { + 5E8E755390FF5EDAC5BBE9E19FC6AEA5 /* SwiftLog */ = { isa = PBXGroup; children = ( - CE01A318BCD7B22148D9DDC4892A1E30 /* DDWebImage */, - D46C7859F5FD685CA396DEA4F92ED26B /* SDWebImage */, - FB602ADD216E0C5099C6C6914FA9925D /* Support Files */, - ); - name = DDWebImageKit_Private; - path = DDWebImageKit_Private; - sourceTree = ""; - }; - 813464C1724FAC097F23FEA25482F5D6 /* DDMATrackManager */ = { - isa = PBXGroup; - children = ( - 10BB65D216F0A89EF3DDE22B631B39C0 /* DDMATrackManager.h */, - AE046F268BC84ADA083B9C81E9D296B5 /* DDMATrackManager.m */, - ); - name = DDMATrackManager; - sourceTree = ""; - }; - 81F99A79A73A0F9EC41F1D9EF305BCA3 /* DDBaseSwitch */ = { - isa = PBXGroup; - children = ( - 42CF39FFA5F10D498E7F7E91B1E4F8C7 /* DDBaseSwitch.h */, - 38D8626C967C244EE734475FEA1D1B66 /* DDBaseSwitch.m */, - ); - name = DDBaseSwitch; - sourceTree = ""; - }; - 829AD36EBEC70576291498BABDFF182D /* UICollectionView+DDCategory */ = { - isa = PBXGroup; - children = ( - F6269AED9249114A702BD7E9049593F8 /* UICollectionView+DDCategory.h */, - F4F3D95BE4918D33AFFEBFCC96BF3F08 /* UICollectionView+DDCategory.m */, - ); - name = "UICollectionView+DDCategory"; - sourceTree = ""; - }; - 8566394E80F724D798F4573B98FB58E6 /* Support Files */ = { - isa = PBXGroup; - children = ( - 5B29A6E852FCFB18FEABD5F535A67BA6 /* DDDateKit_Private.modulemap */, - 6870A4D22EE9BC7784841FA6BFE77CE3 /* DDDateKit_Private-dummy.m */, - 80391191EA7572D340A98EE7F8F8370F /* DDDateKit_Private-prefix.pch */, - 90E4B8D228959A438B4A4C8F10509AE5 /* DDDateKit_Private-umbrella.h */, - F36C76D4D0F0555D8A573700E284AB46 /* DDDateKit_Private.debug.xcconfig */, - 4F131F91C961DC10071B0A90B6552041 /* DDDateKit_Private.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/DDDateKit_Private"; - sourceTree = ""; - }; - 85A041CCFA7C9C71BDFB0651CC21CE6C /* Support Files */ = { - isa = PBXGroup; - children = ( - B642534322DE9B990E24CCE3C647DE72 /* IQKeyboardManagerSwift.modulemap */, - 0004EA356C9835AA546B3FC4EE6CEFEB /* IQKeyboardManagerSwift-dummy.m */, - F207B5B35A3847675CDD8706D42407A6 /* IQKeyboardManagerSwift-prefix.pch */, - 7D466EFBC5B2AFEBE9A18E17D09AAF7E /* IQKeyboardManagerSwift-umbrella.h */, - 62CE7DF2D8353BE5D3F96DE2262981C1 /* IQKeyboardManagerSwift.debug.xcconfig */, - B6B9EBE6340CB7AACFC41CCF5CCEE7B8 /* IQKeyboardManagerSwift.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/IQKeyboardManagerSwift"; - sourceTree = ""; - }; - 866E3F91ED2ABBCAA1D8AE251E2D4425 /* AMapNavi-NO-IDFA */ = { - isa = PBXGroup; - children = ( - BEB7A835711843AB7EB5AF006F213F61 /* AMapNaviBaseManager.h */, - CD7BCF2123C7DEE80FBC20A8935F56FD /* AMapNaviCommonObj.h */, - 4A08B34F06726FEC0876691331FAA8ED /* AMapNaviCompositeAnnotation.h */, - 74CBB2BECB2D366E8CDAF745DB476D46 /* AMapNaviCompositeManager.h */, - 75B8660FBC199D34B9F67DC5BA9EB1D4 /* AMapNaviCompositeUserConfig.h */, - B81F0160F1F5BEF6E4F97A60367D6B7A /* AMapNaviDriveDataRepresentable.h */, - E1CEA95B9BED7B8D95F564A7A96C6007 /* AMapNaviDriveManager.h */, - 040E7B3FC9AD97527E01AAA6692F03FC /* AMapNaviDriveView.h */, - 094D221D1D0D1B16AAD099F94E9E17F1 /* AMapNaviEleBikeDataRepresentable.h */, - E66AB1C2B3436690F8611175FFBE62D2 /* AMapNaviEleBikeManager.h */, - 084C0809EB423BF009DFA1252716A7B6 /* AMapNaviHeaderHandler.h */, - 1ED82EF26DC052CDEA216CFC0F9950C2 /* AMapNaviHUDView.h */, - 5D7963114C88296AE07435EA9A768946 /* AMapNaviInfo.h */, - 80417752DC8D1E053F06918AE6D94237 /* AMapNaviKit.h */, - 57B2FABB0DD2FA187AF146A649D52767 /* AMapNaviLocation.h */, - D71B26F8BD4F5A14695B67ED368D3C30 /* AMapNaviManagerConfig.h */, - D4EAAE7B32C406F4009E289132CA4E45 /* AMapNaviRideDataRepresentable.h */, - 27E04B72848207C13EF142E2492B2AEE /* AMapNaviRideManager.h */, - 1AD048FA87F3189F04BF1D246C5222CB /* AMapNaviRideView.h */, - EA7EA92099A8DE663BC19340D4CA9694 /* AMapNaviRoute.h */, - 43E04632ED25C05453AE399B81ACCCA9 /* AMapNaviStatisticsInfo.h */, - 8A5ABB871A4A51F4B939EC6C422ED978 /* AMapNaviTrafficBarView.h */, - 5E4A30F9F826A5AD3BCF6F610843153A /* AMapNaviTravelManager.h */, - 959AF87232A707BE2BDAE95A2D350BB0 /* AMapNaviVersion.h */, - A9DC763CB419031AA094BC0DAC4CDEE9 /* AMapNaviWalkDataRepresentable.h */, - 84A8BBAB2D2EAC220ED79E7DA049CF88 /* AMapNaviWalkManager.h */, - 9BD3479B7A1D0CF386A62140841213D6 /* AMapNaviWalkView.h */, - 0148B2379F13E382A0BB89A55BA61982 /* MAAnimatedAnnotation.h */, - 5122BEA3D01F32CCE3AF6DEEC923F22F /* MAAnnotation.h */, - FAD78060012C94DCD51ECE7DFEDE1E8D /* MAAnnotationMoveAnimation.h */, - 5D3295CD70802DEE8B3F8C7791CEF7C5 /* MAAnnotationView.h */, - 79D1400A988679AE194ED2ED4F8CB328 /* MAArc.h */, - A9C78B8F8B8C1ECE896B9F15C7792900 /* MAArcRenderer.h */, - 29B5A2AC78B79FBD6F1A3E3B149F7EB7 /* MABaseOverlay.h */, - 061B9FF6E752E48C8E7BE29D4C251688 /* MACircle.h */, - E7F10E0F399B6E7EFBFC9E4FC80F6522 /* MACircleRenderer.h */, - 7DC6B29FF4E9A8C06F7C4AF97567EFB5 /* MAConfig.h */, - A3E9384F1C565F163C681DD5DB0DDC53 /* MACustomBuildingOverlay.h */, - 58A435E4067506DC006E99D17A0A9E29 /* MACustomBuildingOverlayRenderer.h */, - 26DA83B37022F6C75CB8CFA3FD5178F0 /* MACustomCalloutView.h */, - 97FC143DDAAB51B261A527558B7BF35C /* MAGeodesicPolyline.h */, - 8B83E1E156F4DFC5BA9524356A57FACC /* MAGeometry.h */, - 23AF7D4DBA46967614A06F4D9C5D1AEF /* MAGltfOverlay.h */, - F668E05FF8F24AE2FF3CD2A54441289E /* MAGltfOverlayRenderer.h */, - 143439C363DA0CE003872C86522EC8C6 /* MAGroundOverlay.h */, - 3C92E49EA9EEE93BF98BBBE2040F381E /* MAGroundOverlayRenderer.h */, - 8315420924BA3E786C186391410EBCF0 /* MAHeatMapTileOverlay.h */, - 28A85DE8B5EA004C49BEBEE2B8077FC7 /* MAHeatMapVectorGridOverlay.h */, - 75651BB0013894305D63BFAB718E57EE /* MAHeatMapVectorGridOverlayRenderer.h */, - AE6145B3237DE926655A336FF28E6BC8 /* MAHeatMapVectorOverlay.h */, - 5814FFAAA3F13BA510DE20A7C8E0139A /* MAHeatMapVectorOverlayRender.h */, - 012908900A79A28B68FA6139B3149FE2 /* MAIndoorInfo.h */, - 9F13711889F8354E9262928D932565F0 /* MALineDrawType.h */, - 5BF79C2D099CAEB42A0426649E0CE615 /* MAMapAccessibilityIdentifier.h */, - 0CBC071BBFBE072143A9361C97B83CC7 /* MAMapCustomStyleOptions.h */, - E2E34C598BC04EBD55FD660D8EB45049 /* MAMapKit.h */, - D8C0515601D4C72904FCC8547FD823FA /* MAMapStatus.h */, - F1281EA034B52824FA67E9223ACF40B1 /* MAMapVersion.h */, - 9A9E6F01DA3917353EA2601ABF88970D /* MAMapView.h */, - 58BFF6DD303F5D7BD573F3656C16C79D /* MAMultiColoredPolylineRenderer.h */, - F645953944D89350C832A21884D4D04E /* MAMultiPoint.h */, - 3394196353A57EE194E8B5AC1A4F66BD /* MAMultiPointOverlay.h */, - FBD72F348F05E6D36DDAA1DE1A20856D /* MAMultiPointOverlayRenderer.h */, - 125AC62E8FD4987214EBC213BC04D9DE /* MAMultiPolyline.h */, - 12040674009B1DE69C26FE331A5DDD56 /* MAMultiTexturePolylineRenderer.h */, - 46CEF7AD80201CC9F94888169BF71D33 /* MAMVTTileOverlay.h */, - 135F1BF0D88B0375A90716E7B1A1727E /* MAMVTTileOverlayRenderer.h */, - D1EF1F720BB44436F9E72A9D89FF8C0A /* MAOfflineCity.h */, - 394A07D6CA58B775867B883F0C07FC81 /* MAOfflineItem.h */, - C3C0208E9881890347178C31FE5251F0 /* MAOfflineItemCommonCity.h */, - AFBA9E4A0633C81757C2E6C00D0EE084 /* MAOfflineItemMunicipality.h */, - F0F051B64889D28211277748AFC99FE0 /* MAOfflineItemNationWide.h */, - 0B12CAE691E5E12854AAEFF502D48134 /* MAOfflineMap.h */, - 5B786014D406A066236307CDBDA8C938 /* MAOfflineMapViewController.h */, - 5B3967C1729B559C5B4913FCEB9597C8 /* MAOfflineProvince.h */, - 9FD50CACA2EA34F8CBD7FE5CA952A915 /* MAOverlay.h */, - B2C6A85334E4A4FE95AAD8BC94A89603 /* MAOverlayPathRenderer.h */, - 05CB0A3CA10B5CF701B5EDA39EB4D04D /* MAOverlayRenderer.h */, - E9BE2588B2DE054B0B95BDFE6BC57D8B /* MAParticleOverlay.h */, - 4F13294F00F5A7E3F7F0356864E862D5 /* MAParticleOverlayOptions.h */, - 64E4F9C87C427F343EF0115803CE7A0C /* MAParticleOverlayRenderer.h */, - 855E54C16AEA0EC5BD5A55F9AE9541D5 /* MAPathShowRange.h */, - 7B7EEE107CBF352570BBB5ED7CA39F08 /* MAPinAnnotationView.h */, - B892F46148AF9A03D07EDCCAF9A48ADC /* MAPointAnnotation.h */, - 6A624CD977A25D4EADF7BD52B67DBE66 /* MAPolygon.h */, - 8E7DE01C50E6BF70DDE34963C00D8B49 /* MAPolygonRenderer.h */, - 0B11228B1AF736F146243539B5D390FA /* MAPolyline.h */, - 5839D87607935942D497E5EC12F0BA50 /* MAPolylineRenderer.h */, - DA412BE98C427E788F2B66686FF75EBC /* MAShape.h */, - 0D956E59E5C250E632E98F7114CD0FB3 /* MATileOverlay.h */, - CBC007B06F3B82EC70390638365C0E32 /* MATileOverlayRenderer.h */, - 87DB386247FF9C647C62445258DEAFFB /* MATouchPoi.h */, - 7C336F608A5E4D46AB0CA092D0B18BEB /* MATraceLocation.h */, - 054D62F0C7624C280147AA1537D8B733 /* MATraceManager.h */, - C7D3CF07712285D66BD1473D170DF56C /* MAUserLocation.h */, - 3F4232BD92254081C73BD42125C7A7D1 /* MAUserLocationRepresentation.h */, - 16C549B10DCB5D00C05F8A9008807DB9 /* Frameworks */, - 35250B664011F4D7706E6B4567A2FDE9 /* Resources */, - DDA4966C63F94739E5FB95671831513F /* Support Files */, - ); - name = "AMapNavi-NO-IDFA"; - path = "AMapNavi-NO-IDFA"; - sourceTree = ""; - }; - 868913A63DADB5D17CFFEF8587D4AC97 /* DDMAMapKit_Private */ = { - isa = PBXGroup; - children = ( - 8FC4B201D560E5D05F4EDB9E3F3CB962 /* DDMALocation */, - 317933731EFE78AE34108F990E5979FC /* DDMAMap */, - 42940486897EDA642112BEADACFEFF5D /* DDMANaviManager */, - C64CC69D784AECB57840EDA51655CC16 /* DDMASearch */, - 813464C1724FAC097F23FEA25482F5D6 /* DDMATrackManager */, - 2C72F922BCB625B84C82446DF967B2B1 /* DDMAUtil */, - 9A9D72910CA4606BD34498D8379B19B4 /* Support Files */, - ); - name = DDMAMapKit_Private; - path = DDMAMapKit_Private; - sourceTree = ""; - }; - 869FE51B994FD00DE3FE074350DAC80D /* SwiftLog */ = { - isa = PBXGroup; - children = ( - 30BADF20AD9B3D04B4345970340F3962 /* DDSwiftLog.swift */, + 40C03F1C09C42BDD9F51B5EC1218B9C1 /* DDSwiftLog.swift */, ); name = SwiftLog; sourceTree = ""; }; - 876EA9F98FC81DCF3D1161B80695CB9A /* DDBaseAttributedString */ = { + 5FB9CAA7C24FA964ABA0CFB04479CB86 /* DDBaseTableViewCell */ = { isa = PBXGroup; children = ( - 2BD24545FF0C25F096F800E3A25C25FA /* DDBaseAttributedString.h */, - B2790B3E98F164C93C39E381955E3994 /* DDBaseAttributedString.m */, - FFCC805403C8886D7DE1892B7355F3A4 /* DDBaseMutableAttributedString.h */, - 9CAAF890EBDB17AC1859D4C32F409BB3 /* DDBaseMutableAttributedString.m */, + 07328B577DB8D183B9FE834B1E4D5F8B /* DDBaseTableViewCell.h */, + 164CCF231070D9275F9846118DED7BF7 /* DDBaseTableViewCell.m */, ); - name = DDBaseAttributedString; + name = DDBaseTableViewCell; sourceTree = ""; }; - 87F173048E50572EC0BE3BAF69D42EB4 /* ZLPhotoBrowser */ = { + 61F4B6C161769672B8E16D6D6F7B61F9 /* DDTextField */ = { isa = PBXGroup; children = ( - 1941C1BAC969491C3376283061E72D06 /* Core */, - 006B5A6007462E5472F8E35892DDB73F /* Resources */, - 5EAFC6425569F9E9B825E97B3DA4FEB1 /* Support Files */, + B68D04C1C21C4D6BE48F329D78E42FA5 /* DDTextField.swift */, ); - name = ZLPhotoBrowser; - path = ZLPhotoBrowser; + name = DDTextField; sourceTree = ""; }; - 8A7E9649C027665085D598DF7A51CD05 /* Support Files */ = { + 62279BF8C25723C9B1B17CA91B64847E /* DeviceInfo */ = { isa = PBXGroup; children = ( - BB41E47A6C127A8FE9CABF4AD0EE6E43 /* DDAutoUIKit_Private.modulemap */, - 789046465CC63C8E7BCAB4B9CDDA07BE /* DDAutoUIKit_Private-dummy.m */, - F9DC6C2DECE5FEEDE060B2B87E9CEA03 /* DDAutoUIKit_Private-prefix.pch */, - F58D86E6745A5AB6737569C4B03F99FD /* DDAutoUIKit_Private-umbrella.h */, - 581C8BF98FA140DCC476BF9A94C427E0 /* DDAutoUIKit_Private.debug.xcconfig */, - ABC6E315D8B4DFE8121C2E9E4E57559F /* DDAutoUIKit_Private.release.xcconfig */, + AE7AB58F3BAED9A18850DC937778E4FE /* DeviceInfo.swift */, ); - name = "Support Files"; - path = "../Target Support Files/DDAutoUIKit_Private"; + name = DeviceInfo; sourceTree = ""; }; - 8B5A5D2C40D3EC25D0748FAA9E7DBF1E /* UIBarButtonItem+DDCategory */ = { + 62AA07FCE520802478748E03B492206A /* Resources */ = { isa = PBXGroup; children = ( - C151E9609F3F8263902C2A465EE7AAF8 /* UIBarButtonItem+DDCategory.h */, - 0EC187E4E9767E7D3DEC80E5FD12876F /* UIBarButtonItem+DDCategory.m */, - ); - name = "UIBarButtonItem+DDCategory"; - sourceTree = ""; - }; - 8CA2EBAF7910AF224E2042629713CF84 /* Support Files */ = { - isa = PBXGroup; - children = ( - 06291C1D83A727065BC98E83B89FF8CF /* DDProgressHUDKit_Private.modulemap */, - B06A15310A68143A306FD5B54D44B0F1 /* DDProgressHUDKit_Private-dummy.m */, - 1D4D92896859D0470BA3C9A6954E5BB3 /* DDProgressHUDKit_Private-prefix.pch */, - A38F1C0196F755CE20BC51A7D52CE365 /* DDProgressHUDKit_Private-umbrella.h */, - D5929EBD76F6ADD256AA324D24F52A32 /* DDProgressHUDKit_Private.debug.xcconfig */, - B4A45C8475EEC88204B9CA00F7CDC273 /* DDProgressHUDKit_Private.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/DDProgressHUDKit_Private"; - sourceTree = ""; - }; - 8DD942FEAA98B1E8F8D36C8BBA5A7707 /* Support Files */ = { - isa = PBXGroup; - children = ( - E8EB4A092DAE7D80BD90779E0EBD0FCD /* DDToastKit_Private.modulemap */, - 103D674CFB66E101CAC882F6747C5733 /* DDToastKit_Private-dummy.m */, - 54676FA42784473D323D8BF2D048B98E /* DDToastKit_Private-prefix.pch */, - CE559017FE5BEB1B86DD1ED2FF6E4C7D /* DDToastKit_Private-umbrella.h */, - 8BCDCE291F9986C4B85361699D4F4C4F /* DDToastKit_Private.debug.xcconfig */, - 9E8A34914BBC138DA91C0CDE3DDD9A4F /* DDToastKit_Private.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/DDToastKit_Private"; - sourceTree = ""; - }; - 8FB9F458B4AEFF16FB1A9D1617D86BBB /* DDBaseImage */ = { - isa = PBXGroup; - children = ( - C300C14B5A2FF321FCDA01B649AA7383 /* DDBaseImage.h */, - 9A15D2B1F2C827DB6D3D881D510BD2BD /* DDBaseImage.m */, - ); - name = DDBaseImage; - sourceTree = ""; - }; - 8FC4B201D560E5D05F4EDB9E3F3CB962 /* DDMALocation */ = { - isa = PBXGroup; - children = ( - CA4C80C28A1D29CF0675B0273176FB29 /* DDMALocationManager.h */, - 55F4A82B1EB96939FFC17F35A1249465 /* DDMALocationManager.m */, - ); - name = DDMALocation; - sourceTree = ""; - }; - 9067DA8EE26F537414092A7E40FD7DFA /* DDDateKit_Private */ = { - isa = PBXGroup; - children = ( - 7DCACE3236B6F7672272C51B5E33CEF6 /* DDDate.swift */, - 8566394E80F724D798F4573B98FB58E6 /* Support Files */, - ); - name = DDDateKit_Private; - path = DDDateKit_Private; - sourceTree = ""; - }; - 92DC8E56B4E6938D7F5E0A414C2BA94D /* Frameworks */ = { - isa = PBXGroup; - children = ( - 5A2BBA7FC32692322DC65A6ADE9ED42A /* jcore-ios-4.2.1.xcframework */, - ); - name = Frameworks; - sourceTree = ""; - }; - 933A1F4E57275F8CA85515C85A1171AA /* Resources */ = { - isa = PBXGroup; - children = ( - 0F322581389CF2B36529FC2DD37D9CFC /* MJRefresh.bundle */, + 6C6B6319757C56C6491867CB296B6C76 /* DDBaseViewController.xcassets */, ); name = Resources; sourceTree = ""; }; - 9398699120F628A6DC6F9CBD55A3620A /* DDView */ = { + 62B685DC0F138CC027C1F3B33B825AAC /* NSAttributedString+DDCategory */ = { isa = PBXGroup; children = ( - B253B4FDE95315E78B76766F4CE6E773 /* DDView.swift */, + 35A827FD3B260942A337B9BB317FEE1F /* NSAttributedString+DDCategory.h */, + 600A1C0385E364EECC0CADEC9529C0B7 /* NSAttributedString+DDCategory.m */, + A37A3D322A680778C4A85EBBB3DDDDDA /* NSMutableAttributedString+DDCategory.h */, + 8CD6C27BA7A7C0372094BB0F987EA2AA /* NSMutableAttributedString+DDCategory.m */, + EEB935E2D962998DC8976D0C90B14258 /* NSMutableParagraphStyle+DDCategory.h */, + ADF45E6317803019457A5EA8BFE1500B /* NSMutableParagraphStyle+DDCategory.m */, ); - name = DDView; + name = "NSAttributedString+DDCategory"; sourceTree = ""; }; - 955E8ACB428E0620C279C95163D3B54F /* Pods */ = { + 63FAFD376A56A3726F5B04AA59C31A11 /* NSURL+DDCategory */ = { isa = PBXGroup; children = ( - 1E7E19D8B4137125852F3F5BD4CAB8C9 /* Alamofire */, - EDC30DD410091A304E68D4FE4E169B9D /* AMapFoundation-NO-IDFA */, - 4A775079D7D0CD2567D9A7CA252163E8 /* AMapLocation-NO-IDFA */, - 866E3F91ED2ABBCAA1D8AE251E2D4425 /* AMapNavi-NO-IDFA */, - 6D8D23E49375B733F9D0047451A9F813 /* AMapSearch-NO-IDFA */, - B1D23876684A8885BC32DE0011F5C616 /* AMapTrack-NO-IDFA */, - 0E2571EF18DA0E6D6C33BE6B38E2E689 /* BRPickerView */, - 69FA04D33FFB56697274580BBD2B0E53 /* Bugly */, - 4268D99C77EE83E0E2E23B8971BC718F /* DDAudioPlayerKit_Private */, - 7150B331DF93D7DEE8FFE7F3F8944007 /* DDAutoUIKit_Private */, - 2CFD960BDFDEADB01A29536A3ECB5841 /* DDBasicControlsKit_Private */, - 263C1B918A254B9F9A15122C57C20AF4 /* DDCategoryKit_Private */, - D68A8DD0368DD7B36605D0AC417BF90A /* DDColorKit_Private */, - 0F88E5A767E56B490E063084536C7444 /* DDControlsKit_Private */, - 9067DA8EE26F537414092A7E40FD7DFA /* DDDateKit_Private */, - 9E5697095624BECAE9D9A1D9B1620946 /* DDFontKit_Private */, - 62A502CA7D1463F7AF4680C0ED527690 /* DDLogKit_Private */, - 868913A63DADB5D17CFFEF8587D4AC97 /* DDMAMapKit_Private */, - C1EF339B5E805F0FE627540A95066116 /* DDNetworkingOfAlamofireKit_Private */, - DF8E7C7E33AD64B9DAF31EED7AC314EC /* DDPersistenceKit_Private */, - ABD6FC940A0BA3CD722DA454A2AE2988 /* DDProgressHUDKit_Private */, - D5EBB9EBB22B854B6E4CCDB0A0DD7818 /* DDTimerSwiftKit_Private */, - 083103732FC4FFA9B162E838A6CFBEEE /* DDToastKit_Private */, - C65915CE248E9F71885CD4CDAC150804 /* DDUtilsSwiftKit_Private */, - 7DFDB10B46B79AFEB30362F3D648DCF5 /* DDWebImageKit_Private */, - B810B6D74652A9C998DE51A3BE645E49 /* DDZFPlayerKit_Private */, - DC8792369EB73805E79F551C6D42C63F /* ESTabBarController-swift */, - 4BB059117B28A09D303787D3E8D1B5A5 /* IQKeyboardManagerSwift */, - 2764950B9CA6A50F48478C704093ADD2 /* JCore */, - 205CD2CF11EAAC33763FF31D922D14CF /* JPush */, - 7078095E20132E9E1DBC41F8D38BDB0C /* JPushExtension */, - F10756722A098C438501C240F02D272F /* JXCategoryView */, - D8C7C2AD5687ADD5E815BDEFB521E93F /* Kingfisher */, - 5D8F01F62206378DC2621B74A619C909 /* MJRefresh */, - C7F5DE6D9539B2116E1D3E7D36BC3151 /* RxCocoa */, - 1A9A98D78FC36F97BDF46D8BAC119372 /* RxRelay */, - 4B8D9436BA8CAC537131469340D90E5E /* RxSwift */, - CCF85D2D5487AE71D613E1FC5964A914 /* SnapKit */, - 109FA7686C14170F05EB7D0EFDB67099 /* SwiftEntryKit */, - 9E5DF6C4B408D74FF9B7BA8871DFA696 /* SwiftyRSA */, - 87F173048E50572EC0BE3BAF69D42EB4 /* ZLPhotoBrowser */, + 5D3AD7C118DCCD7B7B303F30C66BA970 /* NSURL+DDCategory.h */, + A319958E73C98ACF9F54AC059009CC1B /* NSURL+DDCategory.m */, ); - name = Pods; + name = "NSURL+DDCategory"; sourceTree = ""; }; - 96618015A9C9171B5C554EF3D9807686 /* DDTextView */ = { + 64B642F205AE7D5D04E655615299FC42 /* UITabBarController+DDCategory */ = { isa = PBXGroup; children = ( - E3E93FB5BE1F82C73D2C995FA55AC7C4 /* DDTextView.swift */, + 62AD7A36A987E5118EC1E481B7C276BD /* UITabBarController+DDCategory.h */, + D9E7D9EE698F5F05F581FDF728B6836A /* UITabBarController+DDCategory.m */, ); - name = DDTextView; + name = "UITabBarController+DDCategory"; sourceTree = ""; }; - 9938FD6E0FCBFDEC75022CBD8CD9E9D2 /* UIImageView+DDCategory */ = { + 64FF446DFF261878536CAB8398BDBE40 /* SwiftyRSA */ = { isa = PBXGroup; children = ( - E31BDF49F2926FF02EF1A202926188F9 /* UIImageView+DDCategory.h */, - E1806B7AE8E26CE08653BA97DD634BE2 /* UIImageView+DDCategory.m */, - ); - name = "UIImageView+DDCategory"; - sourceTree = ""; - }; - 9A33E73D3F49EAA3B3B9CC934141A10B /* UIWindow+DDCategory */ = { - isa = PBXGroup; - children = ( - 3E453A6D776B4C2DD2CE4853902DC43E /* UIWindow+DDCategory.h */, - 306D8D12ACFB3F1875A3E3A4A66EA5E7 /* UIWindow+DDCategory.m */, - ); - name = "UIWindow+DDCategory"; - sourceTree = ""; - }; - 9A9D72910CA4606BD34498D8379B19B4 /* Support Files */ = { - isa = PBXGroup; - children = ( - 52353BF0CC3418A0927D4566A1B20ED5 /* DDMAMapKit_Private.modulemap */, - E48CC4D8CFE991113EDF2724EFFEDACF /* DDMAMapKit_Private-dummy.m */, - 76B71441A16FA850CB2A729E0D20D1A5 /* DDMAMapKit_Private-prefix.pch */, - 462F2AFFF36630D973AD2FEF84494576 /* DDMAMapKit_Private-umbrella.h */, - D556921C9A1B32E0A547A047F0896E10 /* DDMAMapKit_Private.debug.xcconfig */, - AC4E1917617F023685F6839CB2438EA8 /* DDMAMapKit_Private.release.xcconfig */, - DD2723477ECDF53C4B6841133E77B7CF /* ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/DDMAMapKit_Private"; - sourceTree = ""; - }; - 9E5697095624BECAE9D9A1D9B1620946 /* DDFontKit_Private */ = { - isa = PBXGroup; - children = ( - 45B36304D4FF5D68342CA29B891F9637 /* FontUtil.swift */, - 42CBF97FCE28BD703950600CADE4D389 /* Support Files */, - ); - name = DDFontKit_Private; - path = DDFontKit_Private; - sourceTree = ""; - }; - 9E5DF6C4B408D74FF9B7BA8871DFA696 /* SwiftyRSA */ = { - isa = PBXGroup; - children = ( - 1F6FDCC5D94436426954BECC9C3B4E54 /* Asn1Parser.swift */, - B5BD125244CCD4A25E8260D6DC26CC5D /* ClearMessage.swift */, - 38F6F6E8AAF50A0C90F9A6CAE4B8CDF5 /* EncryptedMessage.swift */, - D3D0D1770DBD79014E10B615E908B7FB /* Key.swift */, - 612BB6376A463CF2A7D20836998C7AC9 /* Message.swift */, - 7F76FBE05D9EE9EA28687892BF629DFF /* NSData+SHA.h */, - E00B7ADB216329D0D9A8F1ECE6CF21DD /* NSData+SHA.m */, - 1E177604F0AA8AF2D9B5A390DCBD4E74 /* PrivateKey.swift */, - BAECA9F4959686F4679BAB6D36BC79D8 /* PublicKey.swift */, - 53FE5C8F8EEEFBB9CE4058A6FBAEC2C4 /* Signature.swift */, - CA341672AD12C91E1D680EEACB407F91 /* SwiftyRSA.h */, - A4D292ACA56D0BD38598E5ED3BA9ABA5 /* SwiftyRSA.swift */, - 6959B08360F4836FB29BBF9324533557 /* SwiftyRSAError.swift */, - C139AE58D7913987FB4420842FA7DE6A /* X509Certificate.swift */, - 5DCC5BCFD1AC326D2E94C53D375173F1 /* ObjC */, - 3B0A12A0B1A9678125E959C26F1BCB20 /* Support Files */, + 5100620B910F7AC35024398B7541BDD7 /* Asn1Parser.swift */, + BE42E9A9BCAECDCD62405C4D535D6B48 /* ClearMessage.swift */, + F7D2D112EE9A2BD1D293927FC373343D /* EncryptedMessage.swift */, + 640898CF5D692F138157693B51F47F27 /* Key.swift */, + A17948FB20E1570E9A887C4D29C8A7EC /* Message.swift */, + 9B78915132AEA644B59A337C0C4FDC1E /* NSData+SHA.h */, + 937A9C50CA89307904C0E71CFE42F3B1 /* NSData+SHA.m */, + 74F8FEA5A910644F177B1663C04516EC /* PrivateKey.swift */, + A435184CEFCE5107680EF9EBBFA6CD97 /* PublicKey.swift */, + 84995150EDADD2A687D315A58D072317 /* Signature.swift */, + CAE61E46CD80D963B04B6CED2CF096C6 /* SwiftyRSA.h */, + E9AF80B6D211BA142F5B96DFD2F4D4E9 /* SwiftyRSA.swift */, + 62DD99758FFD1CCEA924F29C6D9961B7 /* SwiftyRSAError.swift */, + 7E744216409B50DFF7310309A1789635 /* X509Certificate.swift */, + 276189D638B459BB92ABE6FD2C9E1FB5 /* ObjC */, + 91E80904A0C123479F20FD48E0B06F28 /* Support Files */, ); name = SwiftyRSA; path = SwiftyRSA; sourceTree = ""; }; - A7A4437EA9C2CAC86F9CD2B4D3975D6D /* Frameworks */ = { + 65D0C89DDC40154B9F6440ADB3C98898 /* UIScreen+DDCategory */ = { isa = PBXGroup; children = ( - 75A101BFB8C67DB9BF29526435AB01D5 /* AMapFoundationKit.framework */, + D34026654A2BB5E123BB5CEAC708A17E /* UIScreen+DDCategory.h */, + D92A8FE3E1B511EFFF6060691EAE164A /* UIScreen+DDCategory.m */, ); - name = Frameworks; + name = "UIScreen+DDCategory"; sourceTree = ""; }; - A8DF3EC20A67C084615A3F3FD6978C31 /* Core */ = { + 66A03FED0010D20C609E327D146BAEDD /* DDTimerSwiftKit_Private */ = { isa = PBXGroup; children = ( - 3521E43909548D5C449F95A3DB220912 /* NSBezierPath+SDRoundedCorners.h */, - 8E0B7F362697AB98B0831EB8C3E38461 /* NSBezierPath+SDRoundedCorners.m */, - 51B403317245F827E17CFFB5F193639A /* NSButton+WebCache.h */, - 536600AFCEAE18645A692BF6F89AD2DC /* NSButton+WebCache.m */, - C0B26C965B86D3C1D65541209625A838 /* NSData+ImageContentType.h */, - 640049650C3BC0962841E8D6C6A4049C /* NSData+ImageContentType.m */, - 7B5CB62C7E9BE649E374D62A82B71616 /* NSImage+Compatibility.h */, - 234A9E46F3A62219A136813138A64ABD /* NSImage+Compatibility.m */, - D377340625F32C54FD755E656C656D64 /* SDAnimatedImage.h */, - 5B6DE6BDB74F27E5D2A2963CF80E901B /* SDAnimatedImage.m */, - 83C80746628D107B0BAD96A17846414B /* SDAnimatedImagePlayer.h */, - 05259CD0832517649132AB0DB1A78B8D /* SDAnimatedImagePlayer.m */, - 220C9FC125102C212017E3D5360E40F5 /* SDAnimatedImageRep.h */, - 9CAD66A5B9AB66AEB3319FA797A03C86 /* SDAnimatedImageRep.m */, - EAD1AD83369B604327F955FBA37553C6 /* SDAnimatedImageView.h */, - C63B20DD5CDF937F94ECB7D6B393EE91 /* SDAnimatedImageView.m */, - 83DBDF33C10915BC1F6E6306C566B254 /* SDAnimatedImageView+WebCache.h */, - 17EBBEE913E72CA4F1A7C775F7547836 /* SDAnimatedImageView+WebCache.m */, - 0112A6353EDAD9C4C4FEB00304992211 /* SDAssociatedObject.h */, - 3C47F9FA2DF062E010573C727B9870A7 /* SDAssociatedObject.m */, - 7C7179902FA25766C671B7B414D9D77D /* SDAsyncBlockOperation.h */, - 1A6BBB547BC2B91A84450DB7B519B693 /* SDAsyncBlockOperation.m */, - 55545D86A38C88E25036285F6E656D77 /* SDDeviceHelper.h */, - 49D155E8B49C0866D0D17C2782731D0C /* SDDeviceHelper.m */, - 489448793B76FE2CFD1003097474ABEE /* SDDiskCache.h */, - BADD81DA718C13A84A3FED29403DA654 /* SDDiskCache.m */, - 53701FA4E2C325041ED02E45E02DEBFB /* SDDisplayLink.h */, - D90D3016E9BF0D33C094C69EB488BFFC /* SDDisplayLink.m */, - 6CB41D91E24D72CA5B2E07042707B022 /* SDFileAttributeHelper.h */, - 84FD20C15ACF6E43D826E978C8D0D765 /* SDFileAttributeHelper.m */, - 16FBE302620BFE6480BD81F8D2AA07D0 /* SDGraphicsImageRenderer.h */, - ACCCF92CADFDAF26663086247966C12D /* SDGraphicsImageRenderer.m */, - 1B17520F1937523A7BEB4CC81A1D91D7 /* SDImageAPNGCoder.h */, - 692A33B071C9EEAB823A6C3518B15057 /* SDImageAPNGCoder.m */, - A8078EC2F66D419FC4C70C67E8688449 /* SDImageAssetManager.h */, - D1E7C78D84C1DDF77BAF466F926B8B3E /* SDImageAssetManager.m */, - 05894F3097B344E973E9BB65B70F9941 /* SDImageAWebPCoder.h */, - 67D7B1447714127064AB639B3D33E96B /* SDImageAWebPCoder.m */, - C6CD56560520874C485B6D286D6DF07B /* SDImageCache.h */, - EB904B920A37349D37017E816F5C1D99 /* SDImageCache.m */, - 5DA0819A2B8374D63CD40C9B248846D3 /* SDImageCacheConfig.h */, - 63BBFDA4F5F775E87B5974A5864F9476 /* SDImageCacheConfig.m */, - BEA8B765F481DC57F4732FDBF5EE36F9 /* SDImageCacheDefine.h */, - 5D4E35FFAE01DC349BE0F050EEF7CB3C /* SDImageCacheDefine.m */, - 76FEF52E669B34B702196132B1C41A77 /* SDImageCachesManager.h */, - 2334399E5D1C6D76014E4C3364A55748 /* SDImageCachesManager.m */, - 127AFCC80D26CF08EA0F94463459870C /* SDImageCachesManagerOperation.h */, - 33131CB1B44363868718F6FE67AC609A /* SDImageCachesManagerOperation.m */, - 64E7F505531EBE9814D5511C51A87CA0 /* SDImageCoder.h */, - 7B589E8C9316D95F22F9385FD5443EEB /* SDImageCoder.m */, - 703EE49039FBF47F5B4769D7DF30FB70 /* SDImageCoderHelper.h */, - B1D730DB07D98708486348B681065CA3 /* SDImageCoderHelper.m */, - 5760748A84008717B0404DF3E6E2C9C8 /* SDImageCodersManager.h */, - 9E9E994F5E0A30466A019EF2038D1604 /* SDImageCodersManager.m */, - F3DACF596760B3927F2A87F4525E869F /* SDImageFrame.h */, - 3CD57B719C962B526E7559FF4BD48281 /* SDImageFrame.m */, - E07DFCD4DF16FD7A2487CB4D597BFAD7 /* SDImageGIFCoder.h */, - C1BF1F9F27903435E44899E32F04FD8A /* SDImageGIFCoder.m */, - 67B495B473AAE4CF688A79AE388BA049 /* SDImageGraphics.h */, - B570BA14A14CAAAD852EA4DAF5121084 /* SDImageGraphics.m */, - 074C5B0A05A05333EC1249D280EB36BA /* SDImageHEICCoder.h */, - 43A7CD4FD0ABE5E6DC4CBB2A311F14F0 /* SDImageHEICCoder.m */, - 7BCB003D38E8C40D32D4D6D347BF563E /* SDImageIOAnimatedCoder.h */, - 0D379821807920A04BDA1B9C4AAE05A2 /* SDImageIOAnimatedCoder.m */, - CEB242466FB5AFE798843B12D9066C3A /* SDImageIOAnimatedCoderInternal.h */, - FA661C9D61E242955EAA24C5E55475B1 /* SDImageIOCoder.h */, - 22B514849D5A4983887C1F4075AE7139 /* SDImageIOCoder.m */, - 23CB2A5AB8A31970200D390366725669 /* SDImageLoader.h */, - 669F74617E49E4A71C963BB841179C9A /* SDImageLoader.m */, - 7FD9DEBB996349B686CCF2885152C2C7 /* SDImageLoadersManager.h */, - 6E2DD6950218D63E40EE3D4A4A66042D /* SDImageLoadersManager.m */, - 768FD5E1C41C9DC0C47C2A4C9AC4B51F /* SDImageTransformer.h */, - 68E2FCEE9E1A7A142307DC5EBCEEE743 /* SDImageTransformer.m */, - CD7470709DB5A2CACA7A5717325C23C5 /* SDInternalMacros.h */, - F2B053146B0F965492679960B447D107 /* SDInternalMacros.m */, - 8A3D62E5032EF1C933E09EAE1E95CDB6 /* SDMemoryCache.h */, - 99F76C0E556DBA753C07BD37DD8D9B7A /* SDMemoryCache.m */, - 3161DAA35E3B01FCA4D8B391F2FF0500 /* SDmetamacros.h */, - EDAEE2D7D51698FCC869FC8D93A7B686 /* SDWeakProxy.h */, - FAD04027EA1BF1B8E53A56CC177F01A7 /* SDWeakProxy.m */, - A21875CC8838BBECDE58272A9514F046 /* SDWebImage.h */, - 4FF6B796D90DC664ED96E1E85CF04347 /* SDWebImageCacheKeyFilter.h */, - 4837DDCE0CBD6C03E891FA0582C82A4A /* SDWebImageCacheKeyFilter.m */, - 8D208F296EF7CC950D7AEA5D75CEF3FA /* SDWebImageCacheSerializer.h */, - 4DD50E58F69247C46034A37BEB615292 /* SDWebImageCacheSerializer.m */, - 23EAA9F6CCD8479449A971A22B0C2129 /* SDWebImageCompat.h */, - 085EBB286BA30648750A2071DC11BEE0 /* SDWebImageCompat.m */, - AF80C7D34857FF6762E02B8A16D658F6 /* SDWebImageDefine.h */, - DE58DC63124BECEF14EFDC17EE2F27EE /* SDWebImageDefine.m */, - B5B4BC79F9C53FA8840D657CCD274548 /* SDWebImageDownloader.h */, - 6897582625B835C822633C449FDD3548 /* SDWebImageDownloader.m */, - C0DD7AF9A83D7CE2F42E45E586A80822 /* SDWebImageDownloaderConfig.h */, - 13ABA4D5A71236BB7E6AC1A51A1C1A7A /* SDWebImageDownloaderConfig.m */, - 39E388348852B7D5BCF7B5D0820E7305 /* SDWebImageDownloaderDecryptor.h */, - E9283C71BE8EF6C41A438AB4079E1644 /* SDWebImageDownloaderDecryptor.m */, - 990D75692CBF771F7132CAC9F012C137 /* SDWebImageDownloaderOperation.h */, - 984BEBB41FE196C3D934CEA341A5D1D1 /* SDWebImageDownloaderOperation.m */, - 519086AA5E56EAB1D79CA69EE3A36527 /* SDWebImageDownloaderRequestModifier.h */, - D8DBD4A19BC9CE26D2D0656B2303DA0D /* SDWebImageDownloaderRequestModifier.m */, - 21E4511CFC5B86415FF903568EFE0E96 /* SDWebImageDownloaderResponseModifier.h */, - BE0947970D0446B4AA354037997C2E18 /* SDWebImageDownloaderResponseModifier.m */, - 74B338DC5F440910769E39B703F756F7 /* SDWebImageError.h */, - E2D4D8A25707C3D3EAADC58FA161B6C7 /* SDWebImageError.m */, - AE9ACB42B9D8D64F4C97C05AD1294E34 /* SDWebImageIndicator.h */, - D181FBBAC748BB8057E08172D4F3831D /* SDWebImageIndicator.m */, - BA9F4895D9C85F020B0DEE2FBC3C636B /* SDWebImageManager.h */, - B05B71F960689FE653862E9DA89226F6 /* SDWebImageManager.m */, - 270E907EF3D91D93989F546596E95202 /* SDWebImageOperation.h */, - 4FAE956FC25FB007617385715F75ABAE /* SDWebImageOperation.m */, - 6E9C710CED84DF53EC139FD905FE9AAD /* SDWebImageOptionsProcessor.h */, - 8F52EB185809D3DCD8D68EA8EFA2DC65 /* SDWebImageOptionsProcessor.m */, - 2422A0E8F83A9C488ECE5FAA44DD210A /* SDWebImagePrefetcher.h */, - DC45A2A75FC87B2102E4A16C67DC31D9 /* SDWebImagePrefetcher.m */, - 09A2C0481DADD9F31D999C4EBA7FDECE /* SDWebImageTransition.h */, - F9A4E64DDD778A0078227DB2C2AB4EFB /* SDWebImageTransition.m */, - 2BEE02510443289CC465BEEA27A176F7 /* SDWebImageTransitionInternal.h */, - 70441E4B17170F9A121582970C518A33 /* UIButton+WebCache.h */, - DB97BDF86E26A2A217026453B39D02A5 /* UIButton+WebCache.m */, - E3B0DF9D2776D7B4DD1A3E407CC36E95 /* UIColor+SDHexString.h */, - 2592CA66B11529AEE021D8C5D77FF70E /* UIColor+SDHexString.m */, - 9A3D0ECDFAA25FAEDA60F0D077758A5F /* UIImage+ExtendedCacheData.h */, - E9F6AF13B95E0C683BB1310CF0F01E71 /* UIImage+ExtendedCacheData.m */, - 532042ED19DEFC92300DD64C810B51C7 /* UIImage+ForceDecode.h */, - 2009FB64C9E51FAA7F1C661FBE926B1F /* UIImage+ForceDecode.m */, - B416E3336128DEAD10FCDEC9C98D5DD0 /* UIImage+GIF.h */, - 0E61804F5B643F8F44E1B885B206DE28 /* UIImage+GIF.m */, - 5375A076009E1019AE686602332C2A5D /* UIImage+MemoryCacheCost.h */, - 164D33F7625E9F75A71B0CE124AEB18E /* UIImage+MemoryCacheCost.m */, - 7CCF40DEA35B2D616301AFFC03567FB6 /* UIImage+Metadata.h */, - 40090592359A38AC6F1DC5284EAE1B15 /* UIImage+Metadata.m */, - C85ADE394FBB5DF16407098375D223AB /* UIImage+MultiFormat.h */, - 8E5AB2519815AD4698D10C7C91440EB1 /* UIImage+MultiFormat.m */, - 90A46F094CA9CD51721A8E611D7A265D /* UIImage+Transform.h */, - EC71C2E012859A7028256A577D0D4256 /* UIImage+Transform.m */, - 78BD0489637CD9B81F0F2AC6EB09BFC6 /* UIImageView+HighlightedWebCache.h */, - AF624A6F53BE5819B763EB4B33530EB9 /* UIImageView+HighlightedWebCache.m */, - E664F038D254411C91A99DAE329C0DD3 /* UIImageView+WebCache.h */, - 4145F91C15D126896258C26700097C7F /* UIImageView+WebCache.m */, - 5ECA08FC885AE3ED6615546A3A15155A /* UIView+WebCache.h */, - B0D07A68C1A5451CF4746C771B625AF3 /* UIView+WebCache.m */, - C205040D1E5A8BCE3926353BCD81A03B /* UIView+WebCacheOperation.h */, - A6FA46D87EEAB8EF53B66A7941BEAD12 /* UIView+WebCacheOperation.m */, + 83453B71AAADD3E63823E299371E7B30 /* GCDTimer.swift */, + 8FA86DBAE148143707FD6498CD3A8294 /* Support Files */, + ); + name = DDTimerSwiftKit_Private; + path = DDTimerSwiftKit_Private; + sourceTree = ""; + }; + 6C6A10972E4920D1119664C000E8D689 /* Core */ = { + isa = PBXGroup; + children = ( + 6050424C3E0CEA0C1D6B5371BF4B350B /* Array+ZLPhotoBrowser.swift */, + FA94C2A2A118659F66527DC1D594A44D /* Bool+ZLPhotoBrowser.swift */, + E77812B7E317F3982249BCDB641B27D1 /* Bundle+ZLPhotoBrowser.swift */, + 51F4A8D93FD6E62B4598B77314026CE8 /* Cell+ZLPhotoBrowser.swift */, + 44A7D816539DB500FF3392D352A22D8C /* CGFloat+ZLPhotoBrowser.swift */, + 9ABC26AD107EA608298CD0E03190C034 /* NSError+ZLPhotoBrowser.swift */, + 52FE898F6EA0967E01F113178A8098FE /* PHAsset+ZLPhotoBrowser.swift */, + D24896F20383ED008DC90441CD13017E /* String+ZLPhotoBrowser.swift */, + 33232CA544685755203F36FB9CAD8B4B /* UIColor+ZLPhotoBrowser.swift */, + 42583EE86A5BB9F9DC1D5D9AD849DDA3 /* UIFont+ZLPhotoBrowser.swift */, + 9383B6931E6379E29C9E8D1371AACCC0 /* UIImage+ZLPhotoBrowser.swift */, + CFA7B46FB60F1694489043FE2328E875 /* UIView+ZLPhotoBrowser.swift */, + 1F39DFB50C0CEE5C07570D1F53966326 /* UIViewController+ZLPhotoBrowser.swift */, + B9DB646C1B86D65F8404A92607E85CEA /* ZLAddPhotoCell.swift */, + 2E2C40F1237C7A4F2125EAD78AEE68F5 /* ZLAdjustSlider.swift */, + 3BCBB8FB675A628DC92EFE21CFE1E683 /* ZLAlbumListCell.swift */, + B44B4D11914CA78A741F0F38185103B3 /* ZLAlbumListController.swift */, + 1AF3DB056FF768A884948A7AC1886EBC /* ZLAlbumListModel.swift */, + E256C0DF76156201C11546716B92F885 /* ZLAnimationUtils.swift */, + ED4392B292DE2A7314D9E2A1246F479C /* ZLBaseStickerView.swift */, + 06E0DD37506E441F6CA5E93B1717C661 /* ZLCameraCell.swift */, + C9D1E64F705B9EE7B1190E071B22C188 /* ZLCameraConfiguration.swift */, + 59D19E9E35F2D88873495B9878271ACD /* ZLClipImageDismissAnimatedTransition.swift */, + CD3F752558AFD746CCE24A9B29DCD333 /* ZLClipImageViewController.swift */, + 066F5F846256BBAE99269E61C0B20F77 /* ZLCollectionViewFlowLayout.swift */, + 2D2A8B7CE35F9B80F3FE23830A770F95 /* ZLCustomAlertProtocol.swift */, + F89F07C931C3F3BA8DAC00E945A7A5BE /* ZLCustomCamera.swift */, + 61A1AAA8E6195266F5597F86DFED1636 /* ZLEditImageConfiguration.swift */, + 9366F2FA1CA95C3FB0D4140F61F80953 /* ZLEditImageViewController.swift */, + A50025A48B4C30B28A6D2B6E4BCD2811 /* ZLEditToolCells.swift */, + 2FE0EAB85043C11DEFD666CF542EEBF0 /* ZLEditVideoViewController.swift */, + 29051B3C942AD92F5CA34995E6CDEA2A /* ZLEmbedAlbumListView.swift */, + 0C6107E803B1F866AD69FCA7C2F0514B /* ZLEnlargeButton.swift */, + E144C120ACC7EAE402C3CC12068D9163 /* ZLFetchImageOperation.swift */, + A34E17DDAE76CFB7A1F4CCB0504F5879 /* ZLFilter.swift */, + 7CE230AB72519EDB823EF72848204C6C /* ZLGeneralDefine.swift */, + 2C46EA8EF1DE47563CC626D13BD71006 /* ZLImageNavController.swift */, + 1A20EC5473D4EB7A737C9176FC08B43E /* ZLImagePreviewController.swift */, + 4AA29DE7B5995743DED55DC922324597 /* ZLImageStickerView.swift */, + 9ACD03AAD8EE8BDA4287CE876DF494B4 /* ZLInputTextViewController.swift */, + 6B03B8CA3DA0A458182DF4A0D7E9E776 /* ZLLanguageDefine.swift */, + 1B9E173A3B3BD8F758DF24A5F3C04B8F /* ZLPhotoBrowser.h */, + C9B717FA80B8357845D70F278EE7C0E2 /* ZLPhotoBrowser.swift */, + 75FF75042778B1F2D5B5419A53AC1CBA /* ZLPhotoConfiguration.swift */, + FE13D1D1E9D13E5DBC54FD150771D5E5 /* ZLPhotoConfiguration+Chaining.swift */, + 5B150F369C00EDFCA6DEF08A755FF2A1 /* ZLPhotoManager.swift */, + 5F87D99FFD0149592DC523734EB78D68 /* ZLPhotoModel.swift */, + BA3DBAEFC53BE65259C23C0473A67C63 /* ZLPhotoPreviewAnimatedTransition.swift */, + 788A74ECF02240C72B584890E3D0A26D /* ZLPhotoPreviewCell.swift */, + F25983DDAD74C7CA9273F2941DCC832D /* ZLPhotoPreviewController.swift */, + 274B5258F7A5EE570584968533AA7BFE /* ZLPhotoPreviewPopInteractiveTransition.swift */, + D23D1B55CFA9E601EEAE694FC4999DBB /* ZLPhotoPreviewSheet.swift */, + C61B9725A7675018476602AD4FB847DE /* ZLPhotoUIConfiguration.swift */, + C2316927F6CBDF5DA591A652E5D3A60F /* ZLPhotoUIConfiguration+Chaining.swift */, + B0A373D8F84212DF591CBBA85E8E4EF7 /* ZLProgressHUD.swift */, + 3ED6B9AEBE20C1AFCCCFFF1EE7527E28 /* ZLProgressView.swift */, + 4CD34B8BB386448EF5A713B15600AC32 /* ZLResultModel.swift */, + 7943AF051F1347D4280447B8B5EE8BEA /* ZLTextStickerView.swift */, + 7DE7EBCD7288EAF466A187DCD0C6ACD3 /* ZLThumbnailPhotoCell.swift */, + 3F3E69CB942B27EDDF39B17D0250CD8E /* ZLThumbnailViewController.swift */, + 79810608C2C763BDCF941946182D9294 /* ZLVideoManager.swift */, + 4B5BABB42B4568585425BACE04C7435B /* ZLWeakProxy.swift */, ); name = Core; sourceTree = ""; }; - AA460C7315A7D6DEB907C48EAC55A975 /* Support Files */ = { + 6F46E12705265AF1495B6ABFD0C6F07C /* DDBaseModel */ = { isa = PBXGroup; children = ( - C89C07CF28194AA10DED3CF6E582FD79 /* Alamofire.modulemap */, - E6024DCFBB4524B1AC53A2B94C3B5AFF /* Alamofire-dummy.m */, - 8CB673B582D53D25D38129F0E833D759 /* Alamofire-prefix.pch */, - F2DF3DCF280CB7F0988EA498ABEB5C73 /* Alamofire-umbrella.h */, - 23AB951B57ABE40ECC7FB7C1FC61C520 /* Alamofire.debug.xcconfig */, - A6CC415015CAA9C13B6367E82CC3EA70 /* Alamofire.release.xcconfig */, + 621849EEF1C1322DA52276BEC1403F0D /* DDBaseModel.h */, + 7E73E2323A80B4111342503B24A16CCB /* DDBaseModel.m */, ); - name = "Support Files"; - path = "../Target Support Files/Alamofire"; + name = DDBaseModel; sourceTree = ""; }; - AACD06FF035A007F9A8E6BFFF838E1CB /* Support Files */ = { + 6F91F753137E777970E3F3E716B5B9FB /* DDBaseTextField */ = { isa = PBXGroup; children = ( - 237571514748449C9DEBBF69C47A7CFD /* AMapFoundation-NO-IDFA.debug.xcconfig */, - F4E1C8200F59C5EEE5B199D3C14112F3 /* AMapFoundation-NO-IDFA.release.xcconfig */, + CA29CA7B6160A23E956BC4624FCA6B9D /* DDBaseTextField.h */, + F92DC3831B43F4503392BB08C47EEC31 /* DDBaseTextField.m */, + ); + name = DDBaseTextField; + sourceTree = ""; + }; + 701AE2A9303AD81936096A941C5057C7 /* Resources */ = { + isa = PBXGroup; + children = ( + 78FC8F6A1D66D485DEB887D2808285EE /* ZFPlayer.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + 731C367827E5EF8885AB06F7F46D0FCE /* SDWebImage */ = { + isa = PBXGroup; + children = ( + BFC454BEA02294D5F394B7E7696E32BA /* Core */, + 485DB07EEED3DC287FB821CFEE39F4D0 /* MapKit */, + ); + name = SDWebImage; + sourceTree = ""; + }; + 7469CBA367F18E25ABE98C1D4762DCC2 /* Support Files */ = { + isa = PBXGroup; + children = ( + DC3F94B1983937C907AF3401283DDADD /* DDAutoUIKit_Private.modulemap */, + 053827E2F181829512858510033CE315 /* DDAutoUIKit_Private-dummy.m */, + BE77F60FDAFF573C58673D232899DD75 /* DDAutoUIKit_Private-prefix.pch */, + C4CF7E3F8F11577FB662D7839D4CEA2D /* DDAutoUIKit_Private-umbrella.h */, + D978E0E647D8E4FE925B1853F295328B /* DDAutoUIKit_Private.debug.xcconfig */, + 1615AE46D5BA6D7B2DDF2EF81B402EAD /* DDAutoUIKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDAutoUIKit_Private"; + sourceTree = ""; + }; + 7527ABFF157EF2DD7B9EF4587E620FE9 /* Support Files */ = { + isa = PBXGroup; + children = ( + 3454D0E998C8F3834C9D1943D6E1E228 /* SwiftEntryKit.modulemap */, + BF835AF874C679A92945FD3680D97C6B /* SwiftEntryKit-dummy.m */, + 8D47AF9A7372699EE62696D88447522A /* SwiftEntryKit-prefix.pch */, + 46105430EB9B440A460AC3C9BC90A89B /* SwiftEntryKit-umbrella.h */, + 96FDFD9B7E6D10B43F81A9DDEF58C46C /* SwiftEntryKit.debug.xcconfig */, + C7AFB2C050969535553B023673BFA656 /* SwiftEntryKit.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/SwiftEntryKit"; + sourceTree = ""; + }; + 78DCA1EF8BFFC4EA2AB6935A033BCFBA /* Support Files */ = { + isa = PBXGroup; + children = ( + C977D17E853DDA265702B6C3135F7F62 /* BRPickerView.modulemap */, + CD59367B27600004E8CC3E36A4116E35 /* BRPickerView-dummy.m */, + 6A21A70F60EB32C9EC3D94CD3A3C1949 /* BRPickerView-prefix.pch */, + 386871F6B44C76133AF3313A373A10F4 /* BRPickerView-umbrella.h */, + D8B88765BE86F25BEB9D19D6AD4C9C90 /* BRPickerView.debug.xcconfig */, + C532DF0FD239F67E33BC7009890811BD /* BRPickerView.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/BRPickerView"; + sourceTree = ""; + }; + 798500E1E0AB068AF4A525876EA43E02 /* UIView+DDCategory */ = { + isa = PBXGroup; + children = ( + AC591307EA0056B03A18106EE9AA4EB4 /* UIView+DDCategory.h */, + 130427CD684A106C0D0EE642A156C063 /* UIView+DDCategory.m */, + ); + name = "UIView+DDCategory"; + sourceTree = ""; + }; + 7B04355A3FB38B4D1C46EB203110833E /* Support Files */ = { + isa = PBXGroup; + children = ( + 57544AB9F5F6FD6DA3E332D0B3CA42D6 /* DDDateKit_Private.modulemap */, + 35E8155188ECCFFCEBCE7AC43E612947 /* DDDateKit_Private-dummy.m */, + BB9672EAE38B5A18C8478F003A712C51 /* DDDateKit_Private-prefix.pch */, + 00ACAF1649907249C4616F56A9E777CE /* DDDateKit_Private-umbrella.h */, + 87CBEA68716D16EBB588D6CD61000FCB /* DDDateKit_Private.debug.xcconfig */, + 20D1ED4F3728D5F8DA90CE2EFB37B3AE /* DDDateKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDDateKit_Private"; + sourceTree = ""; + }; + 7C5D0C4CE6C0A0B0B1FEB47A7536D705 /* Support Files */ = { + isa = PBXGroup; + children = ( + 3EA5A49C90CE9D1F0413EFFBDDD9867C /* DDCategoryKit_Private.modulemap */, + D20B70C52D072A0C0033C7B7F8687C4D /* DDCategoryKit_Private-dummy.m */, + 2979AAFAF45228E1D3AA831D8D4B5177 /* DDCategoryKit_Private-prefix.pch */, + E2EA1BC5C269D99913D34141456DB406 /* DDCategoryKit_Private-umbrella.h */, + 93B8C6218FF5388B8AAD5B234909A20A /* DDCategoryKit_Private.debug.xcconfig */, + C1F9F1C286C0F8A5553D967D22C70702 /* DDCategoryKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDCategoryKit_Private"; + sourceTree = ""; + }; + 7E95F560A20DEBE5C3AE42447E0E98D7 /* DDBaseSwitch */ = { + isa = PBXGroup; + children = ( + 79064159BE9DE0015F7BA32759741857 /* DDBaseSwitch.h */, + 535ED29470EA89A1CB2DCA32ECF39E69 /* DDBaseSwitch.m */, + ); + name = DDBaseSwitch; + sourceTree = ""; + }; + 7FDDE604734C633ADFDE6A4121B3DEAD /* DDMAUtil */ = { + isa = PBXGroup; + children = ( + 1CF20CD29054C5545336588BB54FD196 /* DDMAGeometry.h */, + A91B46F0198D76B2B40EDE98F636E9E6 /* DDMAGeometry.m */, + ); + name = DDMAUtil; + sourceTree = ""; + }; + 803F1A06F7DA46D8AD5F70D07252BC39 /* DDViewController */ = { + isa = PBXGroup; + children = ( + 3EF83247660B7B1B045EDC7FE7F20651 /* DDViewController.swift */, + ); + name = DDViewController; + sourceTree = ""; + }; + 80ED83435B4ED7914112CBF3F80ECF22 /* Support Files */ = { + isa = PBXGroup; + children = ( + 870F7037C0CE35440338889067D732E7 /* DDBasicControlsKit_Private.modulemap */, + 8AB2935CB95B35B0475E94EC4BF8753C /* DDBasicControlsKit_Private-dummy.m */, + B384E22DA7C49A8A7FBF977297AE3BB7 /* DDBasicControlsKit_Private-prefix.pch */, + 5AB9DE2689151037721EDC5252A2D035 /* DDBasicControlsKit_Private-umbrella.h */, + 0F741998B15409C128197BB366CC306E /* DDBasicControlsKit_Private.debug.xcconfig */, + 9647BD171AFB23D3A34E71B4E3AA3198 /* DDBasicControlsKit_Private.release.xcconfig */, + D0B4E70B63192B2C9BEF85807D3AD3E7 /* ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/DDBasicControlsKit_Private"; + sourceTree = ""; + }; + 8158BA22AE7CB7A69C379A9EDE03F3E3 /* Support Files */ = { + isa = PBXGroup; + children = ( + B0C8702CB79554900C7918FF762EDE20 /* SnapKit.modulemap */, + 0B217CD6894AE8790FEE93BB0B391A0A /* SnapKit-dummy.m */, + B934BF3CDC8F9E1621AA8A61C44FCC10 /* SnapKit-prefix.pch */, + 57155DB9CE595E8AACB409106F4EC230 /* SnapKit-umbrella.h */, + FA1586A3E00388E9C70823796DACC14A /* SnapKit.debug.xcconfig */, + 165809E2D10BE431114740055F22B5BA /* SnapKit.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/SnapKit"; + sourceTree = ""; + }; + 84083B5F17EE238AF0E368999F82AC4D /* Support Files */ = { + isa = PBXGroup; + children = ( + 88BF2053DAA376DF7F670D7C31EB8D0D /* IQKeyboardManagerSwift.modulemap */, + 512F7F1CEC0C4E9F9BE5BEBD8B35AE94 /* IQKeyboardManagerSwift-dummy.m */, + FC1B3C2C9696D13CE6131CFBD6B2FAFB /* IQKeyboardManagerSwift-prefix.pch */, + 9C14FEF48BB60E0598B42317C989B033 /* IQKeyboardManagerSwift-umbrella.h */, + 154133F8696D45C09E50268F96410941 /* IQKeyboardManagerSwift.debug.xcconfig */, + BD0B5C824276F88E52D0060A73CDB57D /* IQKeyboardManagerSwift.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/IQKeyboardManagerSwift"; + sourceTree = ""; + }; + 862A81309CC833CF018D3F7C02FE6F32 /* Alamofire */ = { + isa = PBXGroup; + children = ( + 067EF8AF841EA5E5B143B31013C9EB20 /* AFError.swift */, + 08C4E00CBE0B1151594901A3D003F685 /* Alamofire.swift */, + 60986D96B4E186692402A1E5A9991405 /* AlamofireExtended.swift */, + 74EA3689D1F00D98ABFDC927ECCCA19C /* AuthenticationInterceptor.swift */, + A65948E74F7149FE3E49C2025975F504 /* CachedResponseHandler.swift */, + DA1AE6DF6ABD2055C14B6AEC6FDCD0EB /* Combine.swift */, + 25AB617439A133C50AD2EA048343F2F7 /* Concurrency.swift */, + 94A696E6CF4AA261C106289066C18321 /* DispatchQueue+Alamofire.swift */, + A3D3D87C73EAE5BB6974D14F6EAF73BA /* EventMonitor.swift */, + 2AD0BE79D933DFDEB5DFAD79244E3BA8 /* HTTPHeaders.swift */, + 32160D9FB5932DE0FC0B26B94BABF671 /* HTTPMethod.swift */, + 918C095C15E34F349696AE40A65F3DC4 /* MultipartFormData.swift */, + A890FECB845698CDDC2E15883C096A5F /* MultipartUpload.swift */, + 5125F16F77606E738A76C292174B4074 /* NetworkReachabilityManager.swift */, + 910515F363886336E686FB0B7BB42736 /* Notifications.swift */, + 56FDC1F05E2B858476AC6660A79C063A /* OperationQueue+Alamofire.swift */, + 2BD8457D4685C7868DBF890E8B00BB76 /* ParameterEncoder.swift */, + F6796221B9F31EDE911E1B94FC451EBE /* ParameterEncoding.swift */, + 00268894DDF3544121282102C01F415E /* Protected.swift */, + D15DA1770C29D7F3B1440F9B3B3ED1B3 /* RedirectHandler.swift */, + 51946AC57D296D98D6432284558DEB32 /* Request.swift */, + 63B0FFECAE143495BFB04FA58C7188F5 /* RequestCompression.swift */, + 6AFBAEB716BB8713FC68FEC54FEDFD5D /* RequestInterceptor.swift */, + 9114E7A2461BC0D4CD70D5504A8973F8 /* RequestTaskMap.swift */, + D1F0060E75A220C59F54F416CA6B27E0 /* Response.swift */, + D811070CCA6CA50FC7CAA836707267AB /* ResponseSerialization.swift */, + 7C33922ADC5E11BDCCF18DC9A39627A5 /* Result+Alamofire.swift */, + 6341B3EAD98B6AB9285FA974E49C2DC4 /* RetryPolicy.swift */, + 8255B663C7C175AF3CD61B93F9EFA011 /* ServerTrustEvaluation.swift */, + 54DD010BACCB4EAA5A734F2D10E9497B /* Session.swift */, + 167F100B148EB72ED6464CA9FDA1DB82 /* SessionDelegate.swift */, + CF6A987FBC1DCE05DA16BA51DDFC41B7 /* StringEncoding+Alamofire.swift */, + 359D77A8531D10C70D9424D02DE1BA87 /* URLConvertible+URLRequestConvertible.swift */, + F3C48B96FDEB3E7BE6187C7AD82154D6 /* URLEncodedFormEncoder.swift */, + 5F7EC85EECC1423B374FC5BCC31766F2 /* URLRequest+Alamofire.swift */, + 7CCD9E46F1E1E4415B1C36C0FFE711C4 /* URLSessionConfiguration+Alamofire.swift */, + B93041A630990C6AC415ED34106D1D1A /* Validation.swift */, + 29D12AB3CCB7B68112D4C37BF25E7FBD /* Support Files */, + ); + name = Alamofire; + path = Alamofire; + sourceTree = ""; + }; + 869EFEF8C44C66C2C02683C55802FFA0 /* DDCategoryKit_Private */ = { + isa = PBXGroup; + children = ( + ADE3ED788C900A0031D6FD43F3C5C8F4 /* DDCategory.h */, + 1B9CD14CDCDB410C594B9FA50994F3FA /* CALayer+DDCategory */, + 62B685DC0F138CC027C1F3B33B825AAC /* NSAttributedString+DDCategory */, + 4E21BCC4DAB68339D3708D06D914FFD9 /* NSBundle+DDCategory */, + 55A0446D534BCC841E12FA469D30E86A /* NSObject+DDCategory */, + 2A89B1850EA0D24F88E40C6D39AD4956 /* NSThread+DDCategory */, + 63FAFD376A56A3726F5B04AA59C31A11 /* NSURL+DDCategory */, + 7C5D0C4CE6C0A0B0B1FEB47A7536D705 /* Support Files */, + A06E7265ED91904EBE27C5284F6B26AB /* UIApplication+DDCategory */, + ADA8C0C1EE33CB56E1582C3399CBED71 /* UIBarButtonItem+DDCategory */, + BB3E62E29FF66D3EE48A73727C6DE909 /* UIButton+DDCategory */, + 00BC6D491191AB503276877DB8BCDDEF /* UICollectionView+DDCategory */, + 1AB118D6FBC75D998FB46787F92146B3 /* UICollectionViewCell+DDCategory */, + D5CCBCF8C2946DFF4E77173F554B34E0 /* UIFont+DDCategory */, + 26B0BA1D8087381185CC577EC28A3A5B /* UIImage+DDCategory */, + DB153D01B7C0F4241C67D27EEFCDE6DC /* UIImageView+DDCategory */, + B0AA8C5644514D57EF1E9ACE3ECCC363 /* UILabel+DDCategory */, + E7BCB2896557F3B30896A7A76B52658F /* UINavigationBar+DDCategory */, + AFCBE20995F4E11273CEF77A6D8BB3F8 /* UINavigationController+DDCategory */, + 1E255FF1AEA9BC90E6CC8F6EB498E949 /* UINavigationItem+DDCategory */, + 65D0C89DDC40154B9F6440ADB3C98898 /* UIScreen+DDCategory */, + A56C35235E8C3672340D9698B0D13F71 /* UIScrollView+DDCategory */, + E692A3CAFF7A2566CE51EFBEF83A8562 /* UISwitch+DDCategory */, + 64B642F205AE7D5D04E655615299FC42 /* UITabBarController+DDCategory */, + 12588927513404BE3F2B9470774DBBB2 /* UITableView+DDCategory */, + 3B4DBD5B8272873665B43187100BE1E4 /* UITableViewCell+DDCategory */, + A81D0C9204148385800E9406239ED789 /* UITextField+DDCategory */, + 36DA8BC40F0E15557BA0A8B13228A0C3 /* UITextView+DDCategory */, + 798500E1E0AB068AF4A525876EA43E02 /* UIView+DDCategory */, + DE38E30BE37F81240942C210228C559C /* UIViewController+DDCategory */, + 3A97B349C3724BB5B59D671051025718 /* UIWindow+DDCategory */, + ); + name = DDCategoryKit_Private; + path = DDCategoryKit_Private; + sourceTree = ""; + }; + 8CBD5ABA16CC9DA6244C05C75E0F6FB5 /* Trace */ = { + isa = PBXGroup; + children = ( + 4F4CD2F1AE5673BEBFDF3BE76563A870 /* MATraceReplayOverlay.h */, + B42B63F2DF1D596A58E39B88A4B30BB3 /* MATraceReplayOverlay.m */, + C30127D60AA841A915A8039BB99FD886 /* MATraceReplayOverlay+Addition.h */, + 19B36D11F1778EE188D91A45B09616FF /* MATraceReplayOverlayRender.h */, + F012A7A07E08614806BFED33E367673C /* MATraceReplayOverlayRender.m */, + ); + name = Trace; + sourceTree = ""; + }; + 8CD0303A9784EE502B75A1357BD6DD6A /* Support Files */ = { + isa = PBXGroup; + children = ( + 2E135BA13E044F528DBAE1E55D9157FA /* DDToastKit_Private.modulemap */, + D6A992E1F1418803802C7312E0330C28 /* DDToastKit_Private-dummy.m */, + 66842CA958CB83E3FE6DD215DDA1A5D8 /* DDToastKit_Private-prefix.pch */, + 4871D251D7B44725545E4D497262CBA0 /* DDToastKit_Private-umbrella.h */, + EAF6FE31F0268D1B31CCEE94DC8CE3FC /* DDToastKit_Private.debug.xcconfig */, + 49446041930752FD6376250702C4AF9D /* DDToastKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDToastKit_Private"; + sourceTree = ""; + }; + 8D7C294EE7A1675458A456B7AFC0A2F1 /* Resources */ = { + isa = PBXGroup; + children = ( + AD6A26B15AAFE692B92D5F16C8602202 /* Sources_DDMAMap */, + ); + name = Resources; + sourceTree = ""; + }; + 8FA86DBAE148143707FD6498CD3A8294 /* Support Files */ = { + isa = PBXGroup; + children = ( + D3ACC5653212F2045ED8138F549D423A /* DDTimerSwiftKit_Private.modulemap */, + E972F07E22D9205AFB655E75709F394A /* DDTimerSwiftKit_Private-dummy.m */, + 602C3EAFA44FB173FBE6A386583D70F4 /* DDTimerSwiftKit_Private-prefix.pch */, + D2FA880FC160384800ED3D83C3F095AB /* DDTimerSwiftKit_Private-umbrella.h */, + 4E4DBB2C70A01D3B2DA769ED641E4A77 /* DDTimerSwiftKit_Private.debug.xcconfig */, + 92421079C7D42417250288A64C734CD4 /* DDTimerSwiftKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDTimerSwiftKit_Private"; + sourceTree = ""; + }; + 90B6B2AE5216317BDDE1E8DA27FD6B8B /* DDImageView */ = { + isa = PBXGroup; + children = ( + 087A44DF367E8FC146EB3959FE9394CE /* DDImageView.swift */, + ); + name = DDImageView; + sourceTree = ""; + }; + 91E80904A0C123479F20FD48E0B06F28 /* Support Files */ = { + isa = PBXGroup; + children = ( + F21E017221B2B6C71172CC54E7859837 /* SwiftyRSA.modulemap */, + 2FD81226AD6B428809B3690452F1589A /* SwiftyRSA-dummy.m */, + 82F7ACA1ED5722A9D00DAD946D51A573 /* SwiftyRSA-prefix.pch */, + D816653F15A0720DC1BB328451E48B3D /* SwiftyRSA-umbrella.h */, + 99CD74167ED8CEFB7DC9CA5F9B66D0E4 /* SwiftyRSA.debug.xcconfig */, + 3A75A95EB84953B276F45E0F5FAD4E37 /* SwiftyRSA.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/SwiftyRSA"; + sourceTree = ""; + }; + 9757BAEC47A0E2277FB80E4622B5B25D /* DDBaseTextView */ = { + isa = PBXGroup; + children = ( + AEBE47C7BCA250CA2496160E170BE8EE /* DDBaseTextView.h */, + 7A2B314FC086E2144380E4DFC9BBA902 /* DDBaseTextView.m */, + ); + name = DDBaseTextView; + sourceTree = ""; + }; + 9A29C7722087011DA208B2B0E87EB01E /* Resources */ = { + isa = PBXGroup; + children = ( + 9E24E82F8E4A5DB5258F6CD07BECCED2 /* BRPickerView.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + 9BA363F724B2B92DBF5B50160980F13E /* DDTransitionAnimation */ = { + isa = PBXGroup; + children = ( + 728495767F7F2BD321DD997F5508009E /* DDViewControllerAnimatedTransition.h */, + 66A6603B5B5F1AFC182A96D1AAE190A2 /* DDViewControllerAnimatedTransition.m */, + ); + name = DDTransitionAnimation; + sourceTree = ""; + }; + 9BF5B9CA075E5D492F341E0F171B51E5 /* DDTableViewCell */ = { + isa = PBXGroup; + children = ( + 9D8C7DB024F10C1415AC8F55084A1F94 /* DDTableViewCell.swift */, + ); + name = DDTableViewCell; + sourceTree = ""; + }; + 9DFAF1DA54E65C237DB7F021295E8702 /* Sources */ = { + isa = PBXGroup; + children = ( + 8D7C294EE7A1675458A456B7AFC0A2F1 /* Resources */, + ); + name = Sources; + sourceTree = ""; + }; + A06E7265ED91904EBE27C5284F6B26AB /* UIApplication+DDCategory */ = { + isa = PBXGroup; + children = ( + 7C0B12F8031E29824D61B55627480C97 /* UIApplication+DDCategory.h */, + 5E445AAD498A96C299DEDA2895DE9FA6 /* UIApplication+DDCategory.m */, + ); + name = "UIApplication+DDCategory"; + sourceTree = ""; + }; + A1BD2CA62D69E04E9E0F127E9F6E88DF /* Support Files */ = { + isa = PBXGroup; + children = ( + 670DFD8B0DB295606C0E8C2FAAEBD9E6 /* JXCategoryView.modulemap */, + 9BEDC1C283046864D0F120D249EDD3CA /* JXCategoryView-dummy.m */, + 16DB07449022B7EC1471F18E7849F2F4 /* JXCategoryView-prefix.pch */, + 63841736A31C51A2258B117A611A3CAA /* JXCategoryView-umbrella.h */, + 6A552983BA923BE8FAC4BDA59212655B /* JXCategoryView.debug.xcconfig */, + C0C4F5D3B0E9E2DAC945CB3EE359B48E /* JXCategoryView.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/JXCategoryView"; + sourceTree = ""; + }; + A25A9B9E3125D3C7DF818559B2A754C9 /* DDCollectionViewCell */ = { + isa = PBXGroup; + children = ( + D5DC0DDE990C0A7033E161AA7E899E94 /* DDCollectionViewCell.swift */, + ); + name = DDCollectionViewCell; + sourceTree = ""; + }; + A47721B2D373F4FFD8B0AF9366686CE5 /* SwiftEntryKit */ = { + isa = PBXGroup; + children = ( + 83C495291C58F4DE5934A16DE7B77539 /* EKAccessoryNoteMessageView.swift */, + C7811454E721A5FD45CC5C7D90661712 /* EKAlertMessage.swift */, + 623FAF1E8041F262E2CDF9A23B6E7994 /* EKAlertMessageView.swift */, + 3FAFFEFCFBC53914E82A0ED097431AA0 /* EKAttributes.swift */, + 1AAECDCE5C859A0FE0383D1EB2F5E8FA /* EKAttributes+Animation.swift */, + 479046BDB4B00800DA381713E13A2948 /* EKAttributes+BackgroundStyle.swift */, + 57A99B916ED565A4052715347F98B0C5 /* EKAttributes+DisplayMode.swift */, + 49343FBE98DEBF78462B1C61642966CC /* EKAttributes+Duration.swift */, + D1349DC561D2FF898F5271AF2B441434 /* EKAttributes+FrameStyle.swift */, + 648439220BF470106FF166857E9AEE95 /* EKAttributes+HapticFeedback.swift */, + AA107A9103958283C24A652CD373427C /* EKAttributes+LifecycleActions.swift */, + BBFEDA1148137ADF1E0BD76C7144A1D8 /* EKAttributes+PopBehavior.swift */, + 0450DC13CC441C0967176B8071579F56 /* EKAttributes+Position.swift */, + 5E666189BEFEC43161A351859AECE9BD /* EKAttributes+PositionConstraints.swift */, + F0003A02B2F8BE1997210982CB46721C /* EKAttributes+Precedence.swift */, + 4AB2F590A429D7BB169C7BD4FCE4F86F /* EKAttributes+Presets.swift */, + 1CF28103E63746143E139DBE4C2F6184 /* EKAttributes+Scroll.swift */, + 60C5117E9A2AC8F2838D694CCA233CEA /* EKAttributes+Shadow.swift */, + 52E789E1BED7EB09865D103AF4B85373 /* EKAttributes+StatusBar.swift */, + ACF367D2CFC13336195E1A03850DE5E5 /* EKAttributes+UserInteraction.swift */, + 47E7F4EE2C1E5E63D67E05EACE0D7D7C /* EKAttributes+Validations.swift */, + 27E4356DDCEF88BD5CD7BB072F6550C9 /* EKAttributes+WindowLevel.swift */, + CEB4721B00F3D917AE91CED8A02279E2 /* EKBackgroundView.swift */, + 7ADCBE556777FC06DECD3FAE17C794DA /* EKButtonBarView.swift */, + 7C0FEB40C6D7AE8B70353F2A8C8219AB /* EKButtonView.swift */, + 1D69FE516AFF4FEDAA283BC7EA352AA0 /* EKColor.swift */, + 31D6A3C885FC0DC86BB87846447CDA02 /* EKContentView.swift */, + 8623294854633DE0EFEBC30ECAB902F4 /* EKEntryView.swift */, + 0534B13FCA2DFF43E09894EA05A05799 /* EKFormMessageView.swift */, + A7E7F3416FA7B80F5E7E36934461C2DD /* EKImageNoteMessageView.swift */, + EE6B37DF478434B7B1119B8F64FE2DE2 /* EKMessageContentView.swift */, + C8B6185261C4A1F47B8494904765E50B /* EKNoteMessageView.swift */, + 7E3D08B57DCDB9B37946A48DF6482C85 /* EKNotificationMessage.swift */, + 0349A346D47724A1023509E89D07E8E7 /* EKNotificationMessageView.swift */, + A77056F46320D38F0EC8EFA7A5AEC2DE /* EKPopUpMessage.swift */, + 0E3CEAA25B59FE6453C4320D43FB8D67 /* EKPopUpMessageView.swift */, + 9726C761207036EF206C6CEC6EEB0116 /* EKProcessingNoteMessageView.swift */, + 52B8C279CCAF15E8F950146A48401D5F /* EKProperty.swift */, + F0228724F2A8AB4A8F8561106985D58F /* EKRatingMessage.swift */, + 4B5C0B9769308527090C7360F61F0C50 /* EKRatingMessageView.swift */, + D1E4C81D90898DB5A4EA9B85F71A6964 /* EKRatingSymbolsContainerView.swift */, + 28A9933BD3E7F403EB5ED19E803A74C2 /* EKRatingSymbolView.swift */, + A9F99F41CE9BBA098B5CA0619B11EF16 /* EKRootViewController.swift */, + 771CE9363DF1FF47C201ED73257B9BCE /* EKSimpleMessage.swift */, + F3B77B658E96012D96CA4E10ED05ABF2 /* EKSimpleMessageView.swift */, + A4D84F8311FDF74C4D6BA30E1E7CC7D3 /* EKStyleView.swift */, + AB7878FE8862F9BAF1CDFDEA492CFFB0 /* EKTextField.swift */, + F938C730261FE19535211FACD553C164 /* EKWindow.swift */, + 77BBEBE1B50CD7C826254DC3B5932D03 /* EKWindowProvider.swift */, + 9BA0A8E171B17AF0BBC5812309AC75AE /* EKWrapperView.swift */, + 872D28CD57BE525D147ED3B3DE76EA4B /* EKXStatusBarMessageView.swift */, + D59A28A34B495482D16FF41CBE7A1FF0 /* EntryAppearanceDescriptor.swift */, + 8ACE6E4439DAE3D380303F1E0362B109 /* EntryCachingHeuristic.swift */, + AC2BDD5A9F50BCD9C6D52D78D069DAF8 /* GradientView.swift */, + B09E06C6E541D2403D9AC00B9F025E50 /* HapticFeedbackGenerator.swift */, + 7B62B6C47135CEF2CEB76E9BED44680B /* QLCompatibility.swift */, + 87195BAC3EFE744189DAC86EEC887725 /* QLUtils.swift */, + 77B18F43846B0B8371F816E96FDD2B7C /* SwiftEntryKit.swift */, + C66A1EC622EB89251B891115E47799E7 /* UIApplication+EKAppearance.swift */, + 78EE8C2F0DC5558D2105E1033F631FAC /* UIColor+Utils.swift */, + 808EF99244BC687EF8D40D1BD719230D /* UIEdgeInsets+Utils.swift */, + 4E2288DCCED2DD373FB9AE190F3FC091 /* UIRectCorner+Short.swift */, + D24C48658D0AA1DFDAFF96989D396D50 /* UIView+QLContentWrap.swift */, + BAC84E0E5BBDAD4F6BD6369E5E2C330A /* UIView+QuickLayout.swift */, + 1AD0733D9FE75FC636F2208A06CEDD0A /* UIView+Responder.swift */, + 559996B42B8700271D39002B0C7DD24E /* UIView+Shadow.swift */, + 34E024246E0C85234B9C2F4683A12A74 /* UIView+Utils.swift */, + 1E1818EA7CE77044E29D069768BD2A2C /* UIViewArray+QuickLayout.swift */, + 7527ABFF157EF2DD7B9EF4587E620FE9 /* Support Files */, + ); + name = SwiftEntryKit; + path = SwiftEntryKit; + sourceTree = ""; + }; + A56C35235E8C3672340D9698B0D13F71 /* UIScrollView+DDCategory */ = { + isa = PBXGroup; + children = ( + D712A94B0A589E674743E2F36DC32EE2 /* UIScrollView+DDCategory.h */, + DDE5A213E9E9BA7FD1BD441D0A1B69C6 /* UIScrollView+DDCategory.m */, + ); + name = "UIScrollView+DDCategory"; + sourceTree = ""; + }; + A7033E5E96F060EED1A6161F9C345185 /* Kingfisher */ = { + isa = PBXGroup; + children = ( + 876C9DC116F3E1CB0AD71A6143D7F925 /* AnimatedImageView.swift */, + 7A4F7B8A08F758239FCEF13B69A6CE2F /* AuthenticationChallengeResponsable.swift */, + 5D416C341897110C59EC03D7ED822F68 /* AVAssetImageDataProvider.swift */, + 364384CF1B6BAFAF34AFAC6D64A0B2D7 /* Box.swift */, + 87B7E469C0FC78E881890CB0E91FFD2A /* CacheSerializer.swift */, + F351DA757BE07CE570A716607D354353 /* CallbackQueue.swift */, + 8942D68167FF5EADAD9D52CBE09A1566 /* CPListItem+Kingfisher.swift */, + 616DD5AB4C4A809B51FA7EA1C93D5C1A /* Delegate.swift */, + BA3F4F32285B3D7988F8318EFC6F8DBF /* DiskStorage.swift */, + 3043EDD79265F99BAB8C607B74DB57C2 /* ExtensionHelpers.swift */, + 87EEDFB85AD7BC04AA40D304372057B6 /* Filter.swift */, + 0CDCD98CD8548CF04A7D44BC78B3E9AD /* FormatIndicatedCacheSerializer.swift */, + 3732C756B9A8F8A504B32D6494F93598 /* GIFAnimatedImage.swift */, + B5E4EF4863936FF08D25C19F8C4247BE /* GraphicsContext.swift */, + 5C7FF04AD0134D864551BDA6014A3525 /* Image.swift */, + 2821BA426AC4839F9D0D22A12836DFFB /* ImageBinder.swift */, + 37D03742B7BCEF1AF4020C53BB2CEEBC /* ImageCache.swift */, + B5862FB48825755A261067D1B202C048 /* ImageContext.swift */, + 13A5925CA69C7E17C422B691E2D692A6 /* ImageDataProcessor.swift */, + 0A04C5D4A4446DD2265AF171D126DBF9 /* ImageDataProvider.swift */, + 43F124E4FEF45D1428666FF58ED02874 /* ImageDownloader.swift */, + AB192712A70143FF7483B04CD367F714 /* ImageDownloaderDelegate.swift */, + 29FDB4081ED8501C10FD8223CC672335 /* ImageDrawing.swift */, + B9DAC7A00E6908FD3CE179B6FF564AA5 /* ImageFormat.swift */, + FFB8875C560BB590860F8E9E253B6F82 /* ImageModifier.swift */, + 2E8BA8E66DB61DCD64911E5F2259AEDA /* ImagePrefetcher.swift */, + 803CF4D81B5BC0B583110537739D795F /* ImageProcessor.swift */, + 8CC3531A68A1843CC5717C76188FFCE1 /* ImageProgressive.swift */, + E387B9595875534C9E33B3C0DF8D95C0 /* ImageTransition.swift */, + 46C4377164C043750C96E798F75BA55A /* ImageView+Kingfisher.swift */, + 37365AF186EE02D7D1EAB44D1CC09F9F /* Indicator.swift */, + 0B58963D08961F381D42EB0456E355AE /* KF.swift */, + 7633FA2DCAF01B51453AA097D12BC7DB /* KFAnimatedImage.swift */, + D9509045BB173ED128A8FD4BEA2C1169 /* KFImage.swift */, + 7F74218AE4EAC3E73C44E2DF119A6765 /* KFImageOptions.swift */, + 88AC54D1B177174E77B56FBB8FDA3C65 /* KFImageProtocol.swift */, + 271CC52B3DB7767A2547236203540694 /* KFImageRenderer.swift */, + 50BFD4E41EC70A76600A4D2BD756249C /* KFOptionsSetter.swift */, + 176CA123F6C4804576C556235D98057E /* Kingfisher.swift */, + A8B40D5A6943D4F6EFDBA40C484F7B2C /* KingfisherError.swift */, + F4B239218EC15B23D1256268605F2D5A /* KingfisherManager.swift */, + EB422058BCE7D4C81274BB6CDBF11004 /* KingfisherOptionsInfo.swift */, + 30CDAB8F0A186D15D7DDA9D9C9175411 /* MemoryStorage.swift */, + 6176899256A0BCE0FE9E6F54652FD3B6 /* NSButton+Kingfisher.swift */, + 11E85C9E1411241C96F207B5A7772A0D /* NSTextAttachment+Kingfisher.swift */, + CF6C455861CE7535DBC4C7C506FC4BDE /* Placeholder.swift */, + 3D20DB404ABAFE99247C3AB55859F9AC /* RedirectHandler.swift */, + DD334EF9FD4B9B594B828B61097EF08F /* RequestModifier.swift */, + D7C14800F2DA5E3340E31A7113A9D6C1 /* Resource.swift */, + ED39E4E52F3FC602FFBCC85FF5C9F1E1 /* Result.swift */, + 4A9B13FCEF59922F87375AC9A6F110E6 /* RetryStrategy.swift */, + 4DE1AF0A0764A564599E003AFBDB50AC /* Runtime.swift */, + 7851F5F987DC2A5FBCBB3196F3E607A2 /* SessionDataTask.swift */, + 1BA63FF274F9C8199BF6CA2EC71544AA /* SessionDelegate.swift */, + F152A8D92F8C71DD5186AC3D836B0091 /* SizeExtensions.swift */, + 095C772CA9D287E8F32E25742AC62AF2 /* Source.swift */, + 63BE86A3E05D0A822812D3A6547E027A /* Storage.swift */, + C67827622B2E2B8F80571936FA2D77E8 /* String+MD5.swift */, + 986A9CA3CF77D11AB3C9243E0DD60161 /* TVMonogramView+Kingfisher.swift */, + C3679818231CE0E9FCBA514CCAC0D3F1 /* UIButton+Kingfisher.swift */, + 3651E0BF8409EC9EBB8C8115BF0C1727 /* WKInterfaceImage+Kingfisher.swift */, + FFD774937DB7BD992C7090234506050A /* Support Files */, + ); + name = Kingfisher; + path = Kingfisher; + sourceTree = ""; + }; + A81D0C9204148385800E9406239ED789 /* UITextField+DDCategory */ = { + isa = PBXGroup; + children = ( + DD3B7CDE1ED4737841DC86337C34CB1A /* UITextField+DDCategory.h */, + 304994798CCDFA55DBD2260E3A7C0B30 /* UITextField+DDCategory.m */, + ); + name = "UITextField+DDCategory"; + sourceTree = ""; + }; + A992D37A340E28F148C9CD1B6EF13F41 /* DDBaseCollectionViewCell */ = { + isa = PBXGroup; + children = ( + B110E14993BA628C03E784EC20D250D2 /* DDBaseCollectionViewCell.h */, + 0540B7376A7488B6BB1B632766911E50 /* DDBaseCollectionViewCell.m */, + ); + name = DDBaseCollectionViewCell; + sourceTree = ""; + }; + A9ADCA37D3E112AA3874EF8EB56C3EEE /* ControlView */ = { + isa = PBXGroup; + children = ( + F64E1B390C0BFA057ACB5BB56E9C6EBF /* UIImageView+ZFCache.h */, + CA786B47E39D1946459AB3336473EA7B /* UIImageView+ZFCache.m */, + D1F18F93101AC60EE823FFBC59264DF0 /* UIView+ZFFrame.h */, + A36A2265D106FF33C57F187EE4A41467 /* UIView+ZFFrame.m */, + 7F0307915E8259B875EB53FE81A29EFC /* ZFLandScapeControlView.h */, + 6897DBC92981878E162A165FF3041A8C /* ZFLandScapeControlView.m */, + C3A3027F3A887D54F8A5D4C8DBEA80A1 /* ZFLoadingView.h */, + D8660D7EC237F514C3300C4A1753A4F5 /* ZFLoadingView.m */, + 775E9F99932457EB38E1830414C07C59 /* ZFNetworkSpeedMonitor.h */, + 7BCF63B64FEF7B8D4CB5390621ACCCE0 /* ZFNetworkSpeedMonitor.m */, + 81A11D1530E8125E4DD942C1D1E9F833 /* ZFPlayerControlView.h */, + 99573FA78F6A5DA13942A47AF1AB9F03 /* ZFPlayerControlView.m */, + 401C887AD28468D21FC95529F3966CEC /* ZFPortraitControlView.h */, + D2C62CE45E39BE434E4DC1A93063A884 /* ZFPortraitControlView.m */, + DAA467CA7CA1AA41758A2D239A606EEB /* ZFSliderView.h */, + 85AE5D42F04D6B691672E9ECE4FFDF56 /* ZFSliderView.m */, + D38ADE555546DCA1DBCFDCF58C1956D1 /* ZFSmallFloatControlView.h */, + F58E4C3FDF308B6C5E1472A27C83EE9C /* ZFSmallFloatControlView.m */, + 5603E0CFF3F7DF05577A5EE1AD67FAF2 /* ZFSpeedLoadingView.h */, + 7C11576D1AF7C0FF224059E4CDDB1D6D /* ZFSpeedLoadingView.m */, + 3B76E2FE549CB4865142D5E14A38069A /* ZFUtilities.h */, + 6CE667E144223C4F16CCA1E35D992B24 /* ZFUtilities.m */, + 30A1628A5729F85121E84E554EE77014 /* ZFVolumeBrightnessView.h */, + 4BB4838FDC3AF7A66CA0623B22D68497 /* ZFVolumeBrightnessView.m */, + 701AE2A9303AD81936096A941C5057C7 /* Resources */, + ); + name = ControlView; + sourceTree = ""; + }; + AAB0A428F9453F043D4DDBA9915C71EC /* Frameworks */ = { + isa = PBXGroup; + children = ( + 943676080B627E6DB9224A27EA838242 /* Bugly.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + ADA8C0C1EE33CB56E1582C3399CBED71 /* UIBarButtonItem+DDCategory */ = { + isa = PBXGroup; + children = ( + 30D781AC3C405856C160630398633026 /* UIBarButtonItem+DDCategory.h */, + 7118AE0E0A3BCFA850CB5C2126039708 /* UIBarButtonItem+DDCategory.m */, + ); + name = "UIBarButtonItem+DDCategory"; + sourceTree = ""; + }; + AE4AE764AE95859A6932C9B4DF768CA7 /* Support Files */ = { + isa = PBXGroup; + children = ( + 91D57E0822EDE97592360AF71F937FD3 /* AMapFoundation-NO-IDFA.debug.xcconfig */, + 88DF251A482A891A68E18044DA5C0215 /* AMapFoundation-NO-IDFA.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/AMapFoundation-NO-IDFA"; sourceTree = ""; }; - AB1565A01CE25F9EFDF186ADEE1DFFBF /* Resources */ = { + AFCBE20995F4E11273CEF77A6D8BB3F8 /* UINavigationController+DDCategory */ = { isa = PBXGroup; children = ( - 87714F8686413DA16471781644F8EF3A /* en.lproj */, + 94F80A165C2824F1820EAF58C60CFB22 /* UINavigationController+DDCategory.h */, + B3118754C00DC5A18C3E5C511E5F8F49 /* UINavigationController+DDCategory.m */, + ); + name = "UINavigationController+DDCategory"; + sourceTree = ""; + }; + B0AA8C5644514D57EF1E9ACE3ECCC363 /* UILabel+DDCategory */ = { + isa = PBXGroup; + children = ( + 571449703C21E04DB0D3FE2092018A67 /* UILabel+DDCategory.h */, + 1CFF71A147395732903140C250F76BB7 /* UILabel+DDCategory.m */, + ); + name = "UILabel+DDCategory"; + sourceTree = ""; + }; + B10B01FBF5C15CF6E889A332C4E034D5 /* FileManager */ = { + isa = PBXGroup; + children = ( + 5E3354648DF22C24E7ED0FAE554417FE /* DDFileManager.swift */, + ); + name = FileManager; + sourceTree = ""; + }; + B16D5627EF0D604200E74EC809F3D200 /* AMapFoundation-NO-IDFA */ = { + isa = PBXGroup; + children = ( + 19C9E3C0327C1C76ED844B140C91B730 /* AMapFoundationConst.h */, + D2A992906EF659EE6847D603133FAEC6 /* AMapFoundationKit.h */, + 0AE9159ADDD65D612717506EF1015A40 /* AMapFoundationVersion.h */, + 8827645D3DB6E1952D11397E35F65E41 /* AMapServices.h */, + BAD862AFFAD9B19954E959C2DC9BEEB5 /* AMapURLSearch.h */, + 0703C1305BA1E5944F40D95E645CCC2E /* AMapURLSearchConfig.h */, + C6F011A6567C1FA74D49BE5B3BC046E1 /* AMapURLSearchType.h */, + 4828F048B7E32317F0D9CB6358CB77D8 /* AMapUtility.h */, + 303BC295BFC2DCF293EC032BF0C68DE6 /* Frameworks */, + AE4AE764AE95859A6932C9B4DF768CA7 /* Support Files */, + ); + name = "AMapFoundation-NO-IDFA"; + path = "AMapFoundation-NO-IDFA"; + sourceTree = ""; + }; + B3D0B5196517D7C08214F65087D072E0 /* Bugly */ = { + isa = PBXGroup; + children = ( + AAB0A428F9453F043D4DDBA9915C71EC /* Frameworks */, + 5E6B9C99FFB4E3A248224456F4F17663 /* Support Files */, + ); + name = Bugly; + path = Bugly; + sourceTree = ""; + }; + B5F0AFE87D7AF74A9EC7E11005681A61 /* ESTabBarController-swift */ = { + isa = PBXGroup; + children = ( + 787A6743C297666C5B4D984E75D2CDF7 /* ESTabBar.swift */, + 103D13B1AC5D7F9F135AA9B5F778A1FA /* ESTabBarController.swift */, + E8C25B177A2D21BBC6095F9C9455DA74 /* ESTabBarItem.swift */, + 2103A0E2B86EC485F69470ADE31B8FF5 /* ESTabBarItemBadgeView.swift */, + E5AD2886EEC92A41102AFA180454BE80 /* ESTabBarItemContainer.swift */, + 7A7DA3FDF3D09A72803F1ED68CACD997 /* ESTabBarItemContentView.swift */, + BAA62652ABA1F70E3018F2937714751C /* ESTabBarItemMoreContentView.swift */, + B87CC612AC329E2C11E606632F569089 /* Resources */, + 4438D769CA2EE9D86C0FB5FA7B8CD640 /* Support Files */, + ); + name = "ESTabBarController-swift"; + path = "ESTabBarController-swift"; + sourceTree = ""; + }; + B73D1BB47113447104DB6A7A155DF3E6 /* Resources */ = { + isa = PBXGroup; + children = ( + B5E4D45ED57A641B322684677B97618F /* BRAddressPickerView.bundle */, ); name = Resources; sourceTree = ""; }; - ABD6FC940A0BA3CD722DA454A2AE2988 /* DDProgressHUDKit_Private */ = { + B766943F85CDDA854E65D09BF0DD0B1A /* Support Files */ = { isa = PBXGroup; children = ( - 8FF65D4365CF9586949F3D50AB35420C /* DDProgressHUD.swift */, - 9E261E16AAB8FBD2C52D6C38F1A3B65C /* MBProgressHUD.h */, - 82D5CEB25905D652A61363E1BF3A8275 /* MBProgressHUD.m */, - 8CA2EBAF7910AF224E2042629713CF84 /* Support Files */, - ); - name = DDProgressHUDKit_Private; - path = DDProgressHUDKit_Private; - sourceTree = ""; - }; - AC8315B967FE459CC37117378D2A2C54 /* UrlLinks */ = { - isa = PBXGroup; - children = ( - 8A908A546FB59017676F0C931DB3792D /* UrlLinks.swift */, - ); - name = UrlLinks; - sourceTree = ""; - }; - ADA244F1F697B835425EAFD8DE5A9AD1 /* StringPickerView */ = { - isa = PBXGroup; - children = ( - 9921A7F023AA09D6C95F0D415E5CF4B4 /* BRResultModel.h */, - D58E7DB5FC0169C68C47543EFBC12BC5 /* BRResultModel.m */, - 774407B6746FD861301D44C5E9E736FD /* BRStringPickerView.h */, - BBE6DE1330BA9582C66D2FE825BD96FF /* BRStringPickerView.m */, - ); - name = StringPickerView; - sourceTree = ""; - }; - ADF776B1852338F2B3E20510D6065079 /* DDSwitch */ = { - isa = PBXGroup; - children = ( - AB5CEAF3844CDE954B6DECF9739454F6 /* DDSwitch.swift */, - ); - name = DDSwitch; - sourceTree = ""; - }; - B01A7D12817A1355972F3E2E4E8192B8 /* Support Files */ = { - isa = PBXGroup; - children = ( - C2A9A6E678A1FB4016A2A4EB7243735A /* DDUtilsSwiftKit_Private.modulemap */, - D5C12CC8F474373055969C07D3A3C3EB /* DDUtilsSwiftKit_Private-dummy.m */, - CF0C22AAC879EB5882F4EC33B4AD683F /* DDUtilsSwiftKit_Private-prefix.pch */, - 79060EA6FB966A86AA091D84DC765597 /* DDUtilsSwiftKit_Private-umbrella.h */, - 7045948A081729E6912A67A49814DE16 /* DDUtilsSwiftKit_Private.debug.xcconfig */, - DC8D30364BD377148EAFD6BCFA8A4809 /* DDUtilsSwiftKit_Private.release.xcconfig */, + A09DE9B73AF2C9644F9EF9E378068A08 /* MJRefresh.modulemap */, + 15C1CCF5C9AC68567C8EB642366E48D3 /* MJRefresh-dummy.m */, + B2248953DD7A0C5A2A5E0A361390FA67 /* MJRefresh-prefix.pch */, + E28C0FA483BF86F8FCA82CECB4608B17 /* MJRefresh-umbrella.h */, + EC57DF96897E5A30C3C47648AC341138 /* MJRefresh.debug.xcconfig */, + 752F50737BE63096173CE2D82D5F79E5 /* MJRefresh.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/DDUtilsSwiftKit_Private"; + path = "../Target Support Files/MJRefresh"; sourceTree = ""; }; - B122FEB050ADDD088992504CBBE8FC0E /* UISwitch+DDCategory */ = { + B7C44A8BD6655A418A2B19F03740AA50 /* Support Files */ = { isa = PBXGroup; children = ( - 1DC5AF843CBB66628ABAF8646D0C4FCD /* UISwitch+DDCategory.h */, - BD0143D4AE7CE50611E13A74E9CA36D2 /* UISwitch+DDCategory.m */, + 5101C0E24621E2D77A9CBC042A4A7D5E /* DDMAMapKit_Private.modulemap */, + 209A87D1B9BC2D6301BB2F2E7E07F885 /* DDMAMapKit_Private-dummy.m */, + 4103A3DF6E2BE0040B400F3FEDF94592 /* DDMAMapKit_Private-prefix.pch */, + 1B8338C72FAAE8A7C988D9DE8E51D4EC /* DDMAMapKit_Private-umbrella.h */, + CADC2F0323519D2B1EC5039CA5A6E625 /* DDMAMapKit_Private.debug.xcconfig */, + A409749AD215AAA1622AC3955B0754DC /* DDMAMapKit_Private.release.xcconfig */, + ACEA90FEEA0CD40E9AEB8BEB96DACACD /* ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist */, ); - name = "UISwitch+DDCategory"; + name = "Support Files"; + path = "../Target Support Files/DDMAMapKit_Private"; sourceTree = ""; }; - B1D23876684A8885BC32DE0011F5C616 /* AMapTrack-NO-IDFA */ = { + B87CC612AC329E2C11E606632F569089 /* Resources */ = { isa = PBXGroup; children = ( - BA5E4A3C4AC2BC50FC69BD67023250B6 /* AMapTrackCommonObj.h */, - 927393131D896CBB351518F74FEB01B0 /* AMapTrackError.h */, - B3BC18FBD4E26EE47204AE5C0938E3F1 /* AMapTrackHistoryObj.h */, - B361857491B70516454A565F87545DD5 /* AMapTrackKit.h */, - A9C2B5446B61B26773F54BE8A87FEAC0 /* AMapTrackManager.h */, - 4DCD8FC824C3DE598AA6315846C6C289 /* AMapTrackManagerOptions.h */, - 7518EFB0E218DCFDA2CE7E3BF74FFADA /* AMapTrackTerminalObj.h */, - C3B3E3DC8E17D08C672F42E30E8FE2A3 /* AMapTrackTrackObj.h */, - 52EB7EDBF57916B4CA7E1443C959E309 /* AMapTrackVersion.h */, - 58874579767F2271E60ACA15BC4DC8FA /* Frameworks */, - 59C74D42C3481179004AA730418FF615 /* Support Files */, - ); - name = "AMapTrack-NO-IDFA"; - path = "AMapTrack-NO-IDFA"; - sourceTree = ""; - }; - B2AF2A8A92656B91E291C7FAC2136E47 /* Resources */ = { - isa = PBXGroup; - children = ( - E3799549EC85A97791632BA5F556FF7B /* BRPickerView.bundle */, + 6043CEF0DBE369C4C26DD004F6118A1E /* en.lproj */, ); name = Resources; sourceTree = ""; }; - B66A1B2FE793460F17C0E1E7816FCF31 /* UIApplication+DDCategory */ = { + B8F824D5E46628C5C3F7071E9E9EB921 /* DDBaseCollectionView */ = { isa = PBXGroup; children = ( - A75E39D1AE5EA909AAFFDA481B1C86B4 /* UIApplication+DDCategory.h */, - 1C0CD23B7B066BEEB1E8B88E149CC35F /* UIApplication+DDCategory.m */, + A2751AA5A22F3247BC0019FA460876B3 /* DDBaseCollectionView.h */, + 2CC7D35DE0658E1E65BD001B3AFA5702 /* DDBaseCollectionView.m */, ); - name = "UIApplication+DDCategory"; + name = DDBaseCollectionView; sourceTree = ""; }; - B810B6D74652A9C998DE51A3BE645E49 /* DDZFPlayerKit_Private */ = { + BA968BED8A9226671ED5DE8B49052341 /* DDTextView */ = { isa = PBXGroup; children = ( - 15B2FE66CF99D9386A9166E12C29C7ED /* ControlView */, - 3C1E8A524CBBBCF9C1594A27443229D9 /* Core */, - EE24D03BDE243AA45A9824BC282447DF /* ijkplayer */, - 095D99567183BC8C8461D876FFE46400 /* Support Files */, + A19CBEEE4117AAD18E8F494E0ED107BA /* DDTextView.swift */, ); - name = DDZFPlayerKit_Private; - path = DDZFPlayerKit_Private; + name = DDTextView; sourceTree = ""; }; - BBD10664F67026ACE301FC97681DDCC2 /* Support Files */ = { + BB3E62E29FF66D3EE48A73727C6DE909 /* UIButton+DDCategory */ = { isa = PBXGroup; children = ( - F05B281F45E83926119676D408BE289B /* Kingfisher.modulemap */, - 1AD09C01043C3998ACFE02F2B1748431 /* Kingfisher-dummy.m */, - C46C761650FA1E617B103D44DA211211 /* Kingfisher-prefix.pch */, - A909C475F40117A76DBC80DE48CEB80B /* Kingfisher-umbrella.h */, - F0F071F1E2FBCFBA49D70A753B2D495C /* Kingfisher.debug.xcconfig */, - FDFFAA0F525073C9A515588E54DBDDB4 /* Kingfisher.release.xcconfig */, + 6237638D1EE25F6E83492D1AD59EC726 /* UIButton+DDCategory.h */, + E547F94527C61B623B7692BFFA58A7A7 /* UIButton+DDCategory.m */, ); - name = "Support Files"; - path = "../Target Support Files/Kingfisher"; + name = "UIButton+DDCategory"; sourceTree = ""; }; - BBE3524402D6D574D965E639B0013616 /* DDBaseScrollView */ = { + BC6244C5E3A6C26E402B1DD89382DC37 /* DDDateKit_Private */ = { isa = PBXGroup; children = ( - FC02A1B23677EB9F0258396FA312264D /* DDBaseScrollView.h */, - 7B0ECF6D28C24CF886DD1B69325C2C61 /* DDBaseScrollView.m */, + 8636C7D8EDC1EB0B5DDB91C8267CD036 /* DDDate.swift */, + 7B04355A3FB38B4D1C46EB203110833E /* Support Files */, ); - name = DDBaseScrollView; + name = DDDateKit_Private; + path = DDDateKit_Private; sourceTree = ""; }; - BC15E5096172B530B40DEF6739CD2338 /* DDBaseLabel */ = { + BD1B1B05A356FD1A97F21350946965D6 /* Base */ = { isa = PBXGroup; children = ( - 96D79F01CCD9152DFF8DCCCB8445A0C4 /* DDBaseLabel.h */, - A0985C2D3D09468F5950AC1BA9882EF1 /* DDBaseLabel.m */, + 1B1F32902B47B02DC2AC38B100BD02E9 /* BRBaseView.h */, + 0A02B7486D3CD326965C39EBDF255BBA /* BRBaseView.m */, + 29AD65CB230B1E0FB98002F011CF7879 /* BRPickerStyle.h */, + FBE9BB952D4ECCE48077BB3240E04B16 /* BRPickerStyle.m */, + 3F96DB6047A34C7BE2BC18D14E341982 /* BRPickerViewMacro.h */, + D42473A68DA9A31A03103D6868ED2EB7 /* NSBundle+BRPickerView.h */, + F73CEE099F6DB5631A42D93B9C41CD3A /* NSBundle+BRPickerView.m */, + 9A29C7722087011DA208B2B0E87EB01E /* Resources */, ); - name = DDBaseLabel; + name = Base; sourceTree = ""; }; - BD3DABDDDA8917612146FDC7433D0AF1 /* Support Files */ = { + BEF1CA10A4093181D3F7CA841BF0E472 /* DDView */ = { isa = PBXGroup; children = ( - 3525D33EE1B318F86A3991C54B87DAE1 /* RxCocoa.modulemap */, - 96918143EAEF40C19781D0B668647E67 /* RxCocoa-dummy.m */, - B824328C0D419E89836EBFA411DCEF88 /* RxCocoa-prefix.pch */, - B960F6DA9DBDF17B3FE9FD1535098037 /* RxCocoa-umbrella.h */, - E67F6D36E52E1896344836A05973FBDB /* RxCocoa.debug.xcconfig */, - 94E6FB4DB627CB050EEE79AB8AEA8A1D /* RxCocoa.release.xcconfig */, + B9ECEDC5B8D579BEB835DFDEB9046C52 /* DDView.swift */, ); - name = "Support Files"; - path = "../Target Support Files/RxCocoa"; + name = DDView; sourceTree = ""; }; - BD7EC8BD7EE2A10662B316FE07C8C3EE /* DDScrollView */ = { + BF3DB338D40A3D4E395F642471F1CBFC /* Overlay */ = { isa = PBXGroup; children = ( - B58B992A585D4EB8BB2BB7DB0625FDD7 /* DDScrollView.swift */, - ); - name = DDScrollView; - sourceTree = ""; - }; - BEB106B16043CF1E0112974522D3FBD4 /* UINavigationItem+DDCategory */ = { - isa = PBXGroup; - children = ( - 271DC27C2C97DCB807D0E4EAED6C02B7 /* UINavigationItem+DDCategory.h */, - 985CB67B7ACF5BA01E446A84379ADB01 /* UINavigationItem+DDCategory.m */, - ); - name = "UINavigationItem+DDCategory"; - sourceTree = ""; - }; - C1EF339B5E805F0FE627540A95066116 /* DDNetworkingOfAlamofireKit_Private */ = { - isa = PBXGroup; - children = ( - AD8F1F15CDE8CF670C950CF038DE1F90 /* DDAF.swift */, - 4F985D8E9B815F9E4A7232388ECC0EC1 /* DDAlamofire.swift */, - 273917F5E5C7E32A224BB72546426A44 /* Support Files */, - ); - name = DDNetworkingOfAlamofireKit_Private; - path = DDNetworkingOfAlamofireKit_Private; - sourceTree = ""; - }; - C26812C4A950185006E8C4B4588F0061 /* MapKit */ = { - isa = PBXGroup; - children = ( - 11BC256610DB359EA9B92C007DFBBC7E /* MKAnnotationView+WebCache.h */, - 2CE97EE2B7A3CD85FD69E3D8F826F2EB /* MKAnnotationView+WebCache.m */, - E5A842AC03240159C2D7A373C53EEDD3 /* SDWebImageMapKit.h */, - ); - name = MapKit; - sourceTree = ""; - }; - C27E793D3C96FD760A8C3E40A2705A5B /* UITabBarController+DDCategory */ = { - isa = PBXGroup; - children = ( - 7D457398AD0A36F0DDD72B046A387B2C /* UITabBarController+DDCategory.h */, - FB8513A8DE688E94B560FFA2BD70FEB4 /* UITabBarController+DDCategory.m */, - ); - name = "UITabBarController+DDCategory"; - sourceTree = ""; - }; - C2E45A7D23B64C6B55F60F2C057E8D9E /* Overlay */ = { - isa = PBXGroup; - children = ( - B4CB308A06446D2A73A68F930B5D04D8 /* MABaseOverlay+DDCategory.h */, - 4B66138500F5FE5625B962EC540FFA08 /* MABaseOverlay+DDCategory.m */, + E06781D7B5DE80C2713CA0D5AE9B60DF /* MABaseOverlay+DDCategory.h */, + C3EB24F4485698DF0313E5B14C03D447 /* MABaseOverlay+DDCategory.m */, ); name = Overlay; sourceTree = ""; }; - C5B3023A59070F5FE84D969BA3D2A8BF /* DDBaseTableView */ = { + BFAAE6BCAE55FD78F1B336043AC66A35 /* Support Files */ = { isa = PBXGroup; children = ( - 3DEC0246C9CE3F03DAFAB667BC9038DC /* DDBaseTableView.h */, - 07FA13CEA097E4AAD46BA385250D6929 /* DDBaseTableView.m */, + 71A7EEB1C47A7E3198A6AF60FC62E221 /* DDProgressHUDKit_Private.modulemap */, + AEF7DEA2C28D9475A26FFCF7D0F43353 /* DDProgressHUDKit_Private-dummy.m */, + 242E4C5F280D6D8DDFD21AF74E6C9233 /* DDProgressHUDKit_Private-prefix.pch */, + 72EC0B2A42D1B3D51A37987D533572E8 /* DDProgressHUDKit_Private-umbrella.h */, + D7606AAF9B3469C3A8E9BABB5B5D8298 /* DDProgressHUDKit_Private.debug.xcconfig */, + D88A57E0029FEF793BB477D6BD6761EC /* DDProgressHUDKit_Private.release.xcconfig */, ); - name = DDBaseTableView; + name = "Support Files"; + path = "../Target Support Files/DDProgressHUDKit_Private"; sourceTree = ""; }; - C64CC69D784AECB57840EDA51655CC16 /* DDMASearch */ = { + BFC454BEA02294D5F394B7E7696E32BA /* Core */ = { isa = PBXGroup; children = ( - D5886F33EF778DF727B1D6EE738A61B5 /* DDMASearch.h */, - 42A5F7B3DA5278625FEC28DD31FA1A0C /* DDMASearch.m */, + 2E3AF6E52FF4E796B60018BCAF921F14 /* NSBezierPath+SDRoundedCorners.h */, + F9257AB7E37A2115907120E5B17A1EED /* NSBezierPath+SDRoundedCorners.m */, + 09F7D2E7C9DB8F796D68D5765F3F9431 /* NSButton+WebCache.h */, + B0F5C1B77C4DFBC89FCC0D6F1B649AA4 /* NSButton+WebCache.m */, + BA919820C7DC7DC7A3EF3AF5DA84CD93 /* NSData+ImageContentType.h */, + 415712A434FFF7D19381559A03540D32 /* NSData+ImageContentType.m */, + A006594DBE451C7B706148C14E740C98 /* NSImage+Compatibility.h */, + 12329F74B8F5ED5590CC69C6AEB393AA /* NSImage+Compatibility.m */, + 7D692E191D5A31E9F9F5176425ED7090 /* SDAnimatedImage.h */, + FAAA4A6D4A5E73151C7CE5B52BA51F89 /* SDAnimatedImage.m */, + C9A889FED6B708012C5F48904D4C41F3 /* SDAnimatedImagePlayer.h */, + BA2F69C3200D9F1B94E8644DAAFA3758 /* SDAnimatedImagePlayer.m */, + 97795CE8B6FA13C48BB309F86B8E814E /* SDAnimatedImageRep.h */, + E5F93560FC2C7A8AA71FC772667FF1A3 /* SDAnimatedImageRep.m */, + 29FB5B40453AF7C6CC5769DC995B0EDD /* SDAnimatedImageView.h */, + 12A4A336045BC0B40DB025D6F491EE26 /* SDAnimatedImageView.m */, + 8E8A684D5AC3AC69C9F81671547F8CAA /* SDAnimatedImageView+WebCache.h */, + 5C5C5DF271E13762140E478E0B86A60E /* SDAnimatedImageView+WebCache.m */, + 42557D5F13A9A26D67F53810DF2D4AFB /* SDAssociatedObject.h */, + 8B578F82B80DEB9A94BF0A4CB575273C /* SDAssociatedObject.m */, + FF92EACA368FAB1532C0EC79209A48A7 /* SDAsyncBlockOperation.h */, + 3E3FB624BCADCA3DEAE2F3779026AEEC /* SDAsyncBlockOperation.m */, + 5C74DE09F8408F94BA65FAA86FA7784A /* SDDeviceHelper.h */, + 8D570C112416E8D8300D3C014ECF3429 /* SDDeviceHelper.m */, + 45EF0A218958CF51F0197F9EF66109D9 /* SDDiskCache.h */, + 10076D03A2C1594266879172E57A97F1 /* SDDiskCache.m */, + 5BFC3A1322AF5748E37FF4BC1B8AAF33 /* SDDisplayLink.h */, + 73FBC91F0B352BDC2DC1B1F28A44CFC3 /* SDDisplayLink.m */, + 7161FD57350902AECABFE98E777A0DF2 /* SDFileAttributeHelper.h */, + B93C9B1E9CAE4AA1A81684408EBE7421 /* SDFileAttributeHelper.m */, + FAAFE1127015814792CD62384937C84E /* SDGraphicsImageRenderer.h */, + D547B7EC123F580B0C8078B97398B638 /* SDGraphicsImageRenderer.m */, + E8CFEAF0FFA89ADD774F1AC90DDAC0E8 /* SDImageAPNGCoder.h */, + 2F01D43E87A09342667E2389BEE515CF /* SDImageAPNGCoder.m */, + 8BEA14CDD06609B781449028E6AE3369 /* SDImageAssetManager.h */, + C9FA719873C60C24D39842F2458992B3 /* SDImageAssetManager.m */, + 7E4F089093B7EA428A2A77E6772C6E84 /* SDImageAWebPCoder.h */, + 57549EBD6346758EB39174143BD235B7 /* SDImageAWebPCoder.m */, + 051BA53CB2192FF6D24C7F99747C8FDB /* SDImageCache.h */, + 8339572E701F72A6351C88A4011B9050 /* SDImageCache.m */, + 93195349FE16D7CBCBF5530FA8E207A1 /* SDImageCacheConfig.h */, + 1A99C320D0B8CC707AD90CDAE1641751 /* SDImageCacheConfig.m */, + AD82D375FA48F410FCE1A8103D22A9C9 /* SDImageCacheDefine.h */, + 7141078F3B6E34C10F24EDAC1DF45276 /* SDImageCacheDefine.m */, + 116D3EAFD40C577B2129B15287B2C59D /* SDImageCachesManager.h */, + 40B6E1DB42A71F22EB136A5C69D993E6 /* SDImageCachesManager.m */, + C35B805FA8F697BD5BF39C8B592CA1A4 /* SDImageCachesManagerOperation.h */, + D0551D44470D5A9C9044C6A992F8CB74 /* SDImageCachesManagerOperation.m */, + 399515456B2D238C4E62CBEBE8BFE8B4 /* SDImageCoder.h */, + 77E5E3382F3E9A1F4EBB361EA51F90D5 /* SDImageCoder.m */, + 33F547B7B60AE95D9BE75E69263E8212 /* SDImageCoderHelper.h */, + DA20B67B6F3CB9D1D49DAD9403C65C47 /* SDImageCoderHelper.m */, + 74AEFEEE14F4D14CCD3B1BD558A6CF45 /* SDImageCodersManager.h */, + 51EBA7400403C8380E5099940E7D57C5 /* SDImageCodersManager.m */, + 4CF16EB9FB2C62DF04298E680DB7FBF6 /* SDImageFrame.h */, + ACA9D816A5BFFC71D3DAAEE9BB33A387 /* SDImageFrame.m */, + 1A4F8FD648081A3FA0E9481699E9BFAA /* SDImageGIFCoder.h */, + 573D340189D2AE61E6D0F924527E48E4 /* SDImageGIFCoder.m */, + 6BE4E3D63762739C388C505F63DB6277 /* SDImageGraphics.h */, + 9CD808051F30303382AE76758822EB7E /* SDImageGraphics.m */, + 8A6C4BC8BD1E4F1B6A5617AED2488B12 /* SDImageHEICCoder.h */, + F39C7DC5C8AEA909746794BE8A37DCF9 /* SDImageHEICCoder.m */, + 56227AE775CD6E1B379A7746CF01131A /* SDImageIOAnimatedCoder.h */, + 1C27224308E926D6CED76DDD40C340F0 /* SDImageIOAnimatedCoder.m */, + FAEB70F7E89629819E6352D65B72E37F /* SDImageIOAnimatedCoderInternal.h */, + 0F8FA6F87D4192760BED3F1DDCDF771F /* SDImageIOCoder.h */, + C6167FB726839DC880D86CDA93B64D10 /* SDImageIOCoder.m */, + 097D55AD7298F8DA7BD811924DF2FA7F /* SDImageLoader.h */, + 9554B6C53CEF59FF3124837EAB1A05C4 /* SDImageLoader.m */, + 54FC966BFAF90C012BE6DABE0105D873 /* SDImageLoadersManager.h */, + FE5DE668F50BE4095450E30672792B55 /* SDImageLoadersManager.m */, + 1C59BB130807F6D550642F3D750E40AA /* SDImageTransformer.h */, + 766B6947AAFF5ABDA10B93CDB391BC72 /* SDImageTransformer.m */, + D9C966704CE79EF9539C9BDF5CA9D346 /* SDInternalMacros.h */, + D45E1EAE02C54199896AF1626C1785EF /* SDInternalMacros.m */, + 26507EB4300CCB37EBAF50B26684BBF6 /* SDMemoryCache.h */, + 9AB63A8D2DFFD91C683D442599E5AFD7 /* SDMemoryCache.m */, + CDC1E06BD99C0082E2E7169902D8A03B /* SDmetamacros.h */, + B7B349E830B45ADB89E33A896487E04F /* SDWeakProxy.h */, + 55839B1F12E9A7641E179EF55A520DE0 /* SDWeakProxy.m */, + C0620E30D560801C592DCBDEE95B78BE /* SDWebImage.h */, + 05B5BE576D8D1CAC569EE43EB76E62D7 /* SDWebImageCacheKeyFilter.h */, + 3215F98470867A2FCB4E605785C27CB5 /* SDWebImageCacheKeyFilter.m */, + ECB168F76E634E9E8D7B8D5744FD68DE /* SDWebImageCacheSerializer.h */, + 83970BDB8172C4F8BD4F6D84DFE861EB /* SDWebImageCacheSerializer.m */, + CD6C5B5712F24543E9686ACF3F7180E0 /* SDWebImageCompat.h */, + A62C7AED05AFA7022D1DD6F203907AFC /* SDWebImageCompat.m */, + 96C749560C78C4DCA700A3EC0CCA6ABA /* SDWebImageDefine.h */, + 1AAF8AB7F98E7FBEFBA7A8185B481935 /* SDWebImageDefine.m */, + FCC5DC18D8B6ACAF7102214971196A2B /* SDWebImageDownloader.h */, + AB9A7ED70E056014316D5B9946FD9C58 /* SDWebImageDownloader.m */, + 99FBC6A3FF72C9C93EC26EB55681A3F7 /* SDWebImageDownloaderConfig.h */, + C1131D66AFE877FB9229D8A0A587BB9C /* SDWebImageDownloaderConfig.m */, + EF3571AB946075130C467D7B52E57B27 /* SDWebImageDownloaderDecryptor.h */, + 33FDE16A5277EC7BA28DA5C74ECC367D /* SDWebImageDownloaderDecryptor.m */, + 9F75183CDE076D8CCE6404A74A0A9C4D /* SDWebImageDownloaderOperation.h */, + 674A9A6D363769623DB7EDEB7B082716 /* SDWebImageDownloaderOperation.m */, + AA81EBE5C38E65C5B4B36C77A876C330 /* SDWebImageDownloaderRequestModifier.h */, + C5A4AABC29A6330BDFCFA1AFAE3B5213 /* SDWebImageDownloaderRequestModifier.m */, + 5118EEA7FBCE09CB70C52A5122825D1B /* SDWebImageDownloaderResponseModifier.h */, + 9BB63ED86C11EC69FD582F92685E5689 /* SDWebImageDownloaderResponseModifier.m */, + A236D223D62C020CF0F1A1D5BA118FB1 /* SDWebImageError.h */, + 30DCE5AC180C302B663E5373ADBD6769 /* SDWebImageError.m */, + 5FBCB3F1DDCCE67EEA1A285E89C414C0 /* SDWebImageIndicator.h */, + 2ADBB69FF1BE40BBFAA006BD803A3F2F /* SDWebImageIndicator.m */, + 58EF50AA09AD8E0D5AB1A14FF1BA6DDA /* SDWebImageManager.h */, + B5A50B006A6B5F82E978EE34682CF652 /* SDWebImageManager.m */, + 32C1A959F514B7502F8CA5C6AFA186D1 /* SDWebImageOperation.h */, + D52676D7FF93EADA44F726BF34B13A02 /* SDWebImageOperation.m */, + 3D9996BD70338BDB9BF8703FAFFDBA70 /* SDWebImageOptionsProcessor.h */, + C2F1D29858616113ACA6B53DAB94F499 /* SDWebImageOptionsProcessor.m */, + DDA32CD6A5C753C2C1F36030926B731B /* SDWebImagePrefetcher.h */, + 80CC449142B606B9E2AFB01AA5928B28 /* SDWebImagePrefetcher.m */, + DC420F976245C2E3022F83DC7B4D3881 /* SDWebImageTransition.h */, + 787C2921957C0B7F9445C0D727AFFF01 /* SDWebImageTransition.m */, + 081E5C402ACBD0B56D7B56AB8E8F3A00 /* SDWebImageTransitionInternal.h */, + 770E1B3EBC3640ED238C98349449026E /* UIButton+WebCache.h */, + 4196E0258D2495B44EB2C947F1F40EFB /* UIButton+WebCache.m */, + 1F5D5731FD78A7C35393153B615F88C5 /* UIColor+SDHexString.h */, + 7E4FC5C5B4343E8DE91CB31C605EDB8C /* UIColor+SDHexString.m */, + 03401D6508115645BE1A11726E428603 /* UIImage+ExtendedCacheData.h */, + DF26E990F49A258AB52A06D13796BBBD /* UIImage+ExtendedCacheData.m */, + CDB7E7BE996331DFE30986CEAD96F9E9 /* UIImage+ForceDecode.h */, + 3E6850B62AE527DFF6DA66A3009D736D /* UIImage+ForceDecode.m */, + 19C56CF2A70806FCBCD97D965F5DC0E2 /* UIImage+GIF.h */, + 910C3C2B34CD96383D0909CCA35275A2 /* UIImage+GIF.m */, + 3AF10A8C2B0D16227BD534F00A18EB04 /* UIImage+MemoryCacheCost.h */, + 8F68F5BEDE99B5164FE9BDDB198A70B5 /* UIImage+MemoryCacheCost.m */, + 19377254733005E955657128E33E1A6F /* UIImage+Metadata.h */, + 3E7D32E5BF69B7556FCADF853E3231A9 /* UIImage+Metadata.m */, + 2C5BA44FF41AA4CD65CEE4EC878C5577 /* UIImage+MultiFormat.h */, + 65A42E42CDABEEFE9AAD8313C4AC429A /* UIImage+MultiFormat.m */, + 3A5283D5CDCF7F930F4EBD8F066BDA4D /* UIImage+Transform.h */, + 7E0CBFB4660D7C05DFAC5B142B9C5118 /* UIImage+Transform.m */, + A715C6F02D6033EB5FE5B49C4BB39B6A /* UIImageView+HighlightedWebCache.h */, + 844CE0BC14316FBD13467CD96FBED46D /* UIImageView+HighlightedWebCache.m */, + 9A93C52AF91D91D00889A4AAB0B4D433 /* UIImageView+WebCache.h */, + 614E7E4CA2E24BFAC369071F8431B717 /* UIImageView+WebCache.m */, + DB4FCD3FC94B3DF92D64C7E6DF7BC4B3 /* UIView+WebCache.h */, + 5ED17DE16B93FE1EB23A0BBBD8923887 /* UIView+WebCache.m */, + B4D649A72A0FBB2BF64F58C6991FD1E4 /* UIView+WebCacheOperation.h */, + 418576B499736076EB0BA9C49A6CCCB8 /* UIView+WebCacheOperation.m */, ); - name = DDMASearch; + name = Core; sourceTree = ""; }; - C65915CE248E9F71885CD4CDAC150804 /* DDUtilsSwiftKit_Private */ = { + C011768CD96FC65421AC1E578AB900BC /* DDBaseViewController */ = { isa = PBXGroup; children = ( - D17C9DD8391D8BBA2C7EFFC047B117C3 /* ApplicationInfo */, - 71AF92AF1CCE41A5CDE38DC5093851EA /* DeviceInfo */, - 2B13C7B0960D03C25AACDFCFF80FC818 /* FileManager */, - B01A7D12817A1355972F3E2E4E8192B8 /* Support Files */, - AC8315B967FE459CC37117378D2A2C54 /* UrlLinks */, + CA7E506535DBB32097276C5F234E50C4 /* DDBaseViewController.h */, + FBD2A9F38E80A5B854035F6E481BA91C /* DDBaseViewController.m */, + 62AA07FCE520802478748E03B492206A /* Resources */, ); - name = DDUtilsSwiftKit_Private; - path = DDUtilsSwiftKit_Private; + name = DDBaseViewController; + sourceTree = ""; + }; + C3620A1F8C511DF1290AB594BD8540B2 /* AMapNavi-NO-IDFA */ = { + isa = PBXGroup; + children = ( + 3CEA965E2B5B8DF81084049EDDB5235F /* AMapNaviBaseManager.h */, + CF3813D38A26E07C0EFD923B301F323F /* AMapNaviCommonObj.h */, + 60236FAC5287C49CFD84161E4DB92EE6 /* AMapNaviCompositeAnnotation.h */, + 8E3519DEB50BF147D8784AD688071A10 /* AMapNaviCompositeManager.h */, + A15C2FBE201937681EDAF46673D44B02 /* AMapNaviCompositeUserConfig.h */, + F0D12838E134791FD8B8C121DC53207B /* AMapNaviDriveDataRepresentable.h */, + E4BC9C0979D185B4718E845A86B47B85 /* AMapNaviDriveManager.h */, + 75AE48F1E611E1FC57FD128C217AEDAA /* AMapNaviDriveView.h */, + 3E371F103D80A5C5A2DDFB2FB39F2526 /* AMapNaviEleBikeDataRepresentable.h */, + 43557F21A43221E5EA5D40D4D9FEFD97 /* AMapNaviEleBikeManager.h */, + D462A4B4DB8C8B40BC818DB0776504F4 /* AMapNaviHeaderHandler.h */, + 9B184774F18A4C5C92CA4069F11BB6A7 /* AMapNaviHUDView.h */, + 6AABCA807BB2C7EA8E3A8CD1CC1DE64C /* AMapNaviInfo.h */, + D43C24EE3A9DE22E56F4F295102378F2 /* AMapNaviKit.h */, + 34C0423C439638DEAA0AD83515D1439B /* AMapNaviLocation.h */, + E9842D31A9EEFEFA22232D83EC96D6C9 /* AMapNaviManagerConfig.h */, + 575746534C48723BC6C28D3281705762 /* AMapNaviRideDataRepresentable.h */, + E93DCFE2E5C22480B870D1301A1DC422 /* AMapNaviRideManager.h */, + 1FD8A32D512C40D754E44C9DC3B771BE /* AMapNaviRideView.h */, + B8805202893A18AFF8B3ED98F3B3E2AE /* AMapNaviRoute.h */, + 6226BDBDEA6ED89C716F660EED0BD145 /* AMapNaviStatisticsInfo.h */, + 7CD47A1BD39ECCC27A08C2AAA472351B /* AMapNaviTrafficBarView.h */, + 8C88B993B8C132FC65135B7CD0F6DF08 /* AMapNaviTravelManager.h */, + 9C037CEA2B3A309B335DD6117A98F1C9 /* AMapNaviVersion.h */, + 9705DA0895B3EA90BA65069399FB79DD /* AMapNaviWalkDataRepresentable.h */, + 9D20AB7550D12EF036C4BD6A2D23C2DA /* AMapNaviWalkManager.h */, + 5A83D27B322DDC2E4744E7D6A9BB9816 /* AMapNaviWalkView.h */, + 7E4785A66D79CA1271B35D4B9F3C8507 /* MAAnimatedAnnotation.h */, + B45B58DD580CD6D14A8184D57ACB0066 /* MAAnnotation.h */, + 4DE352C39F2C0A20C1E421D0AE65B83B /* MAAnnotationMoveAnimation.h */, + 938B02946B5075F3A78DB7CE2F053694 /* MAAnnotationView.h */, + 6D274B300358F4520D7BB80B31F75985 /* MAArc.h */, + B4CFC1035E1AAE5B4465F80CB345CDC6 /* MAArcRenderer.h */, + 4D80CFE6C1CCDF18F45FAB74BF53F3E4 /* MABaseOverlay.h */, + 4A7342030BB7B8B358C33F99CAE40E70 /* MACircle.h */, + 1A2A45B5E4896678A3B84E99DD436039 /* MACircleRenderer.h */, + 9796BD53CE2CC24B4E7178D36F566E96 /* MAConfig.h */, + 26E78BD5FC32215B65E95514969DDDA2 /* MACustomBuildingOverlay.h */, + C1D9CBF421F9E05D47EBAA021E5E6BAC /* MACustomBuildingOverlayRenderer.h */, + 6683C6E87648354B6357637E7403F3E4 /* MACustomCalloutView.h */, + AFA33FAA4ED25516686ACF26C1290333 /* MAGeodesicPolyline.h */, + 9F32DFF1A7B79E99C1AC7F41FBB0B1FC /* MAGeometry.h */, + 2736D0DCE22AAB9DA94E6406E9BB71EB /* MAGltfOverlay.h */, + 27E2A3A98DDCE32BBC890AA4DAF2127D /* MAGltfOverlayRenderer.h */, + 2EC2F7BED63C64F28AA65BD7B25A61A4 /* MAGroundOverlay.h */, + 49C457F4B30A502F5CB678135D7AEDB2 /* MAGroundOverlayRenderer.h */, + AD9FAAC80F32588E0BFD6FB58D36B15B /* MAHeatMapTileOverlay.h */, + 4960EAF001A840DC2C7C5AD25FEBE28B /* MAHeatMapVectorGridOverlay.h */, + 74E27D744C60FEAFC554F9A024382533 /* MAHeatMapVectorGridOverlayRenderer.h */, + C8089DA26BABA8964F548DF76BBE1F25 /* MAHeatMapVectorOverlay.h */, + 359D99688C36585ED1AC1C583B3B20CC /* MAHeatMapVectorOverlayRender.h */, + 2C412CF3FDA3A33E826EF4504893471B /* MAIndoorInfo.h */, + 06AD5FB52419005F20815434AA453A42 /* MALineDrawType.h */, + 00B3B25C64476F85A3F7A2A0B23E182B /* MAMapAccessibilityIdentifier.h */, + 8468E2C4206CC25A5A8913C850E82F32 /* MAMapCustomStyleOptions.h */, + 85D4DBE558FB915425BB625CF856E6C5 /* MAMapKit.h */, + 2E9594BEBA6789D3BF4232BD9ECD2AFE /* MAMapStatus.h */, + 704E1B50A2EDF3D679B4361DD012E45D /* MAMapVersion.h */, + 5E9A4F347C383FD9ABCB5E9FB3C558AC /* MAMapView.h */, + A5B92B9DD7E11F79990198C76793D5D5 /* MAMultiColoredPolylineRenderer.h */, + 692B100705A504E8120FD2DC75A46993 /* MAMultiPoint.h */, + 38FE20A4392B6C1C37B12107CC19D53E /* MAMultiPointOverlay.h */, + 4C379F668412281F2FDCFF3FE37E8A6C /* MAMultiPointOverlayRenderer.h */, + A86BF9EFA111BAE02F60AFFEAD619EF4 /* MAMultiPolyline.h */, + 7722C1C9D15E69BC935160C37BAD3C8D /* MAMultiTexturePolylineRenderer.h */, + A408C5DDE0B5681E5B78480168CAE122 /* MAMVTTileOverlay.h */, + 94D5CD70EAE400B7A7BDF7DCD151B7C2 /* MAMVTTileOverlayRenderer.h */, + 3AEEEFD95098C323DFA3B33969BE5333 /* MAOfflineCity.h */, + AA5BF5EDEC0A3759F73E1C15610E9F70 /* MAOfflineItem.h */, + 904BD843339854345D1210277999EE10 /* MAOfflineItemCommonCity.h */, + A65D61B32897A1D0893431A2B85890CE /* MAOfflineItemMunicipality.h */, + E5291D5DC0B71BA4EF26AE0CC1C6BBE6 /* MAOfflineItemNationWide.h */, + 050F16DB2CBDAB93A9D77C31F931607F /* MAOfflineMap.h */, + DC9F01F7E77FC3F02CBD3605B590470A /* MAOfflineMapViewController.h */, + 9AF83BC04EFB67D93C26CD1DDB29B2E0 /* MAOfflineProvince.h */, + 2AA1EC1952D263A77C915AFAEC91B876 /* MAOverlay.h */, + 6EFFB940E3D21863AF8785A75B240D9C /* MAOverlayPathRenderer.h */, + E48FBBBEB39CCD5157A99F3D40C4D4BC /* MAOverlayRenderer.h */, + B5FF0FF13C4F9B1ECE12A15750A6A120 /* MAParticleOverlay.h */, + 0EACC7D0FC7D81D43E10FACEDD2FB4F4 /* MAParticleOverlayOptions.h */, + AB72DA33BB01C8F020C36D64A2E13D8F /* MAParticleOverlayRenderer.h */, + 9DEEDACA0AD6781F733C759A960CA824 /* MAPathShowRange.h */, + 40AA1E749EE38E18136003816BDC4AAF /* MAPinAnnotationView.h */, + 16C32707552F7339A83EED2DE21747AB /* MAPointAnnotation.h */, + A59C4B8A784E102E1E4C09F6839D0B77 /* MAPolygon.h */, + 99BD08888952B4ADFC4A63CDC13D95D8 /* MAPolygonRenderer.h */, + AEA01DF61C6407B9CDA9D513AA89D631 /* MAPolyline.h */, + FC78F66723760DF2E1A85287196BA8BB /* MAPolylineRenderer.h */, + 246DD005FE72D8AFB15ED94629772925 /* MAShape.h */, + 4A1C652E01570F5F4317E5E029A9F8E4 /* MATileOverlay.h */, + 96DA6B16191783F2BB7A23146BF136FD /* MATileOverlayRenderer.h */, + CD657A088DAEA5B486197B7757B6757D /* MATouchPoi.h */, + CCDD405D2CACCD34CB88DC13A028528E /* MATraceLocation.h */, + 8D8F4D582A6A733E5F93FD957403DEF7 /* MATraceManager.h */, + 1A9117C665F3DBE47DD02469FDD738FD /* MAUserLocation.h */, + 94BC52C4F8595D2886F185194CBEE714 /* MAUserLocationRepresentation.h */, + F501F548B27A3875898CBCECE28ED6AC /* Frameworks */, + D151EA0F0C331F9F57CC803AB0CB6E89 /* Resources */, + 4F46733FABF5231242E8F76434F65C54 /* Support Files */, + ); + name = "AMapNavi-NO-IDFA"; + path = "AMapNavi-NO-IDFA"; + sourceTree = ""; + }; + C6C7F84C4A72B03773649BCB81D7BC6B /* AMapSearch-NO-IDFA */ = { + isa = PBXGroup; + children = ( + E63087B438B9A22D416CE6A32C3067F9 /* AMapCommonObj.h */, + DCD176F57B3E48F540E83B13C9D1C26E /* AMapNearbySearchManager.h */, + 46AEE67C01D0B9C9124EFD7BB097F513 /* AMapNearbyUploadInfo.h */, + CF24B514D6255FA778A0A56806D75A4B /* AMapSearchAPI.h */, + E632E45183A44A8818C53E4D8F08F8F6 /* AMapSearchError.h */, + 9F6C24C9FF2E5F8198DCD3E589F1EBB1 /* AMapSearchKit.h */, + 5C8F56EF68F9D21059B27046C4E4D140 /* AMapSearchObj.h */, + 8580AF676EEAEFF706921E0BCE3FA2E0 /* AMapSearchVersion.h */, + 1477FD7666025C236073B784C68E2E20 /* Frameworks */, + 029407C736CC65F51F7533479228E894 /* Support Files */, + ); + name = "AMapSearch-NO-IDFA"; + path = "AMapSearch-NO-IDFA"; + sourceTree = ""; + }; + C6EB97A839CE7EB0D9B0236F87B217AA /* Resources */ = { + isa = PBXGroup; + children = ( + 73817A468E3633742396D024AD025E6A /* MJRefresh.bundle */, + ); + name = Resources; sourceTree = ""; }; C75853DD0219D4027452952F5BD8530A /* Targets Support Files */ = { @@ -6084,204 +6109,249 @@ name = "Targets Support Files"; sourceTree = ""; }; - C7A05CAD7A35CF98EF961A76D1C1BD64 /* DDViewController */ = { + C951AF0E8D951E9EBA23C6979C2BB944 /* Frameworks */ = { isa = PBXGroup; children = ( - B210E62E7E50FA3CBE127345A9F4A884 /* DDViewController.swift */, + 157D5E57858CF3184E2D48690C8EBF16 /* jcore-ios-4.2.1.xcframework */, ); - name = DDViewController; + name = Frameworks; sourceTree = ""; }; - C7F5DE6D9539B2116E1D3E7D36BC3151 /* RxCocoa */ = { + CB4B95282027AF56CC4432D5681843DD /* DDMATrackManager */ = { isa = PBXGroup; children = ( - 42AFF5E4167F1AAB0C38B6D04AF48FF0 /* _RX.h */, - 15592CAF3A93120CE0198A039024E10F /* _RX.m */, - 1068152D2EF51248E7CC22802E41CBCC /* _RXDelegateProxy.h */, - 2BE1AF4101D5E139FF57742189DED998 /* _RXDelegateProxy.m */, - C88E3188BA7AF942D1FA7C974083D95F /* _RXKVOObserver.h */, - 8AE5076DACC40E21C87335A76DC898D4 /* _RXKVOObserver.m */, - 94A01E83D7BA91468C474B99384EE0D0 /* _RXObjCRuntime.h */, - 1A3A303562921D64DF80A79B6C1D7FCF /* _RXObjCRuntime.m */, - AC14C2976D6079C72BABBC524433A222 /* Bag.swift */, - E8C49867A1B7DD27C702C0A687DCCE55 /* BehaviorRelay+Driver.swift */, - 897E717674DFA392A2C33CF18161907B /* ControlEvent.swift */, - B05760E088C44F4773E9B308F558B9F6 /* ControlEvent+Driver.swift */, - C40FF4E2E866ECD39362F72377471EB8 /* ControlEvent+Signal.swift */, - FFE0B4B0AFE7D95A1FA935DCA780F2E6 /* ControlProperty.swift */, - A98A467CBA2AE60E30DBA048C3C04FDC /* ControlProperty+Driver.swift */, - 4760783B09E40542C7873933BECCBFF1 /* ControlTarget.swift */, - D70FB6D3ED988646CDCDA1119A91238E /* DelegateProxy.swift */, - F1941DC9F9DA94904A2E255C4CC5D230 /* DelegateProxyType.swift */, - F7B78F698810A0591022F198B0486335 /* DispatchQueue+Extensions.swift */, - B506DA3C8289CBE81DDBAF24891B135F /* Driver.swift */, - 02BF9C5967569BA29EAF7CFC6674992A /* Driver+Subscription.swift */, - B4784DA17975837AC6A1260AC753942D /* Infallible+Bind.swift */, - C7A2C1CEE4F24D36F16B60F5E6F88E91 /* InfiniteSequence.swift */, - B76415160DF7F93FF45B44C30B94F6CE /* ItemEvents.swift */, - 4CDBEAC2DAD087C559400956814D4839 /* KVORepresentable.swift */, - 404CEB52EF15A5EAF66C8A5C26A2189E /* KVORepresentable+CoreGraphics.swift */, - F16536DAA77ED0535ACF08A801C3752F /* KVORepresentable+Swift.swift */, - CE2D2AED7DDB9D52895804D55B53C874 /* NotificationCenter+Rx.swift */, - 7841DECC6CD83F3386AE7335DD4AD9CC /* NSButton+Rx.swift */, - 3E8E12E076DE37165D6768298B761E78 /* NSControl+Rx.swift */, - 59E03709C9CE3BD5C40979CFCC2C05CE /* NSObject+Rx.swift */, - DCEE93B89F877907EDEDF35837EEB69D /* NSObject+Rx+KVORepresentable.swift */, - 29FBEA5D9CBA481C1FD1C39CC9087173 /* NSObject+Rx+RawRepresentable.swift */, - 6E2F7FCEB4F7B11A24843AA042E5CD82 /* NSSlider+Rx.swift */, - CEA42E366894AB71108DF72F7DE96837 /* NSTextField+Rx.swift */, - 560573034F3383B435CBB2F95AF59B2C /* NSTextStorage+Rx.swift */, - BBBD402D4B1A0F17CBF107CF4CCAFB85 /* NSTextView+Rx.swift */, - 79B9A7893C1F94F144E666ABB214222F /* NSView+Rx.swift */, - 5CA6BB9B6A43FA42F4BFA0B1BF2698AA /* Observable+Bind.swift */, - 757E44065C4EBA90A12EE25D4E988F36 /* ObservableConvertibleType+Driver.swift */, - 1BE4D837B0B86270E94A66C6621DD744 /* ObservableConvertibleType+SharedSequence.swift */, - 2FBE6873B0C89E6BAB94AE9BEDD667CE /* ObservableConvertibleType+Signal.swift */, - D9A7D92D806D8C7CCED28E85C8BBC789 /* Platform.Darwin.swift */, - 2C883774E369C0F5862125ECD434BC24 /* Platform.Linux.swift */, - ADF8EDE599BD19CA803994AC9838E8FE /* PriorityQueue.swift */, - BECAAD109009CA7B14C5C3F17516B80E /* PublishRelay+Signal.swift */, - 346A7BA293D6FC8483EC393283E87CE9 /* Queue.swift */, - B14C177DF0421F096BF87F6CD71F13E7 /* RecursiveLock.swift */, - B355B796317567F12CB7DA54B807B9A2 /* RxCocoa.h */, - 4113C8ED94FBCD13D365DB0F00746A7F /* RxCocoa.swift */, - 0621A1A82709D12B551256E0A8DCF213 /* RxCocoaObjCRuntimeError+Extensions.swift */, - 5BE31722680616822B35EB06F13FF9CE /* RxCocoaRuntime.h */, - 00D20C4C1F970E3E4CFF73E4F37008D6 /* RxCollectionViewDataSourcePrefetchingProxy.swift */, - EDCA3E72F9B597E30F679F49F75C1248 /* RxCollectionViewDataSourceProxy.swift */, - A80C07CCBD047C169152C1EFA16BC2CC /* RxCollectionViewDataSourceType.swift */, - 20422D1E4E74FD8DB3FB1E917DE53AC8 /* RxCollectionViewDelegateProxy.swift */, - 538B16B9C94F4B82990777F8A50D0C55 /* RxCollectionViewReactiveArrayDataSource.swift */, - 5ACBECA1503B0C8B243129948D2065DD /* RxNavigationControllerDelegateProxy.swift */, - BD06A6592E10B1AA8536DD4E0F68594D /* RxPickerViewAdapter.swift */, - D4117C597DE1692CE8789DB702543828 /* RxPickerViewDataSourceProxy.swift */, - 6AF816381D84B741E8FD12AB73909B4E /* RxPickerViewDataSourceType.swift */, - C0F39A19B87F0AADE9A36F8C092E68A9 /* RxPickerViewDelegateProxy.swift */, - 742E8DF0EF46EDB3CDF4073C16B7AE34 /* RxScrollViewDelegateProxy.swift */, - 339C2A6152F51EA6AF9CA57D40E54E6A /* RxSearchBarDelegateProxy.swift */, - 073E35FB94CABC121A278062FD177FA4 /* RxSearchControllerDelegateProxy.swift */, - 1A893797B0F1B377CFA94E91DF9AECF7 /* RxTabBarControllerDelegateProxy.swift */, - C3861B49B9CDC8661EAD6383D750FB37 /* RxTabBarDelegateProxy.swift */, - BFE98D61E00FBF2F1AC83471FCC00012 /* RxTableViewDataSourcePrefetchingProxy.swift */, - DB624DFCA58354E87A6A4642564AE62B /* RxTableViewDataSourceProxy.swift */, - B0ABDC43E9DA5EC3D5E8418AB59B6DC4 /* RxTableViewDataSourceType.swift */, - EB309216660748833C0D73A9BFEE9325 /* RxTableViewDelegateProxy.swift */, - 02ABE119D91795701827AEEA87EFD224 /* RxTableViewReactiveArrayDataSource.swift */, - 7EDE67DAD4A3F72D4A31CD81DD02F8B3 /* RxTarget.swift */, - 59A13368B0FFCA3C8A50C99ED30FF5A0 /* RxTextStorageDelegateProxy.swift */, - 0FD669CF3EA8DE0C2942DD07C16B30E9 /* RxTextViewDelegateProxy.swift */, - B5133A03F61B7459A68E50BDB209BF64 /* RxWKNavigationDelegateProxy.swift */, - 27DA64E3F20EB1C1EC08004508E2C16E /* SchedulerType+SharedSequence.swift */, - B4B59B01E852D0C48BDA0BE1085896D5 /* SectionedViewDataSourceType.swift */, - 8E5E79F05719FA8B3FB969608F509571 /* SharedSequence.swift */, - 8EC63266F1A25D8738A3BB41782AFC91 /* SharedSequence+Concurrency.swift */, - F2F54B572E0B69402185F8ADBFCAB9BD /* SharedSequence+Operators.swift */, - 32EAB44870B9BE5FF389C54AF303C863 /* SharedSequence+Operators+arity.swift */, - 86DC26E1C0701A192C2804300A80F339 /* Signal.swift */, - DB0E4FB4D6900EC78ACBA96F5E96A2F7 /* Signal+Subscription.swift */, - EC87D7530DB76143050FD101A281B8B3 /* TextInput.swift */, - 9CB96FC1D8DEECCCAC04C3A2285F2807 /* UIActivityIndicatorView+Rx.swift */, - B2DAAA88BBCD7084DE97F2CE01EA9585 /* UIApplication+Rx.swift */, - 7843B75D775810205B085DD861C1F03F /* UIBarButtonItem+Rx.swift */, - E27684FB42170ECF7B074A5B07A6980A /* UIButton+Rx.swift */, - 5EABEFBD7CF387EA5363ACEB8798AF28 /* UICollectionView+Rx.swift */, - 27867E8B8A05DC2157DBFE83F620C286 /* UIControl+Rx.swift */, - F7596FA4A53EE264922BF4A75414E32F /* UIDatePicker+Rx.swift */, - C16BCEBF8B14C05C1C168CF5066D490F /* UIGestureRecognizer+Rx.swift */, - 3C92185A2626CC518730C6C24F19F24E /* UINavigationController+Rx.swift */, - C5E42D0B25C03CE671ABDE16E5377BE4 /* UIPickerView+Rx.swift */, - 512A7192BE9B597992A75FCC3D929D06 /* UIRefreshControl+Rx.swift */, - 2F5C9A218E5415CFA35CA923E6EC4496 /* UIScrollView+Rx.swift */, - CAF84A0D6E4DAD25836F4C3BB1C4D978 /* UISearchBar+Rx.swift */, - ED944B712524B9218887B7B2A4E4C80D /* UISearchController+Rx.swift */, - 115AE99B48C7DA31E3E6CE5F23873A5B /* UISegmentedControl+Rx.swift */, - 9BB4FA6AC50A5946A9E67F9E0F8ED0A4 /* UISlider+Rx.swift */, - A5D484E42F0E7A19057BDA48F89F5720 /* UIStepper+Rx.swift */, - 21C35D978DC1A48371A558E2F5FD5458 /* UISwitch+Rx.swift */, - 366C157EEC0CEC5951E19F411CD4ADEC /* UITabBar+Rx.swift */, - C328946E28BB6CE7648ED67BB516A3EE /* UITabBarController+Rx.swift */, - 741E78F844F2A9C483529D5DEEDB2FFF /* UITableView+Rx.swift */, - 58EB768D5C4E64483333DC60FD2DCA45 /* UITextField+Rx.swift */, - D6F8AE33F7159DCA3B9D151ECE2BECA7 /* UITextView+Rx.swift */, - 73928D14094B4689950A28CFF3C5A0F8 /* URLSession+Rx.swift */, - 1DC323E839BF784EB9C9F36F4A2E2734 /* WKWebView+Rx.swift */, - BD3DABDDDA8917612146FDC7433D0AF1 /* Support Files */, + B73D0E3E5524D99DD115DB1865363FEA /* DDMATrackManager.h */, + 3A6946E3778D6DC2C13697F173C8331D /* DDMATrackManager.m */, ); - name = RxCocoa; - path = RxCocoa; + name = DDMATrackManager; sourceTree = ""; }; - C89D5AC0B6EF728423180D415B26E5D4 /* NSBundle+DDCategory */ = { + CB79603CCBAE208AB4431E6583E37B0F /* Pods */ = { isa = PBXGroup; children = ( - 29432EDCCC5432693311FB3A1E4390F0 /* NSBundle+DDCategory.h */, - C060210364045E3C55FC24892C50B322 /* NSBundle+DDCategory.m */, + 862A81309CC833CF018D3F7C02FE6F32 /* Alamofire */, + B16D5627EF0D604200E74EC809F3D200 /* AMapFoundation-NO-IDFA */, + 1CA6DD88C26EC8BC6032AE7D46AA9FD1 /* AMapLocation-NO-IDFA */, + C3620A1F8C511DF1290AB594BD8540B2 /* AMapNavi-NO-IDFA */, + C6C7F84C4A72B03773649BCB81D7BC6B /* AMapSearch-NO-IDFA */, + 399BB633B7383834D10E19FF3D4A2756 /* AMapTrack-NO-IDFA */, + 52FED9ABD0E208465A5013529CE3E5EF /* BRPickerView */, + B3D0B5196517D7C08214F65087D072E0 /* Bugly */, + DB037C1F2D137716FF2F99A74A5303DA /* DDAudioPlayerKit_Private */, + DA3B9B57F659DAE9D0625715BD7C8114 /* DDAutoUIKit_Private */, + 505A81956C06ACE994A9D88B36F90849 /* DDBasicControlsKit_Private */, + 869EFEF8C44C66C2C02683C55802FFA0 /* DDCategoryKit_Private */, + 143655BA548569B19B37D05498D1D559 /* DDColorKit_Private */, + 3E2A6630731FB53B1EDDC3FB07B137F0 /* DDControlsKit_Private */, + BC6244C5E3A6C26E402B1DD89382DC37 /* DDDateKit_Private */, + 34256EF572335B9A42CFF4C3D8FE7D62 /* DDFontKit_Private */, + 31E450A8E529B8412FF8072F187E61C9 /* DDLogKit_Private */, + 17439836FE961EE5BF1EAA3ECB42AF1E /* DDMAMapKit_Private */, + CF0C705776097A59E300E866578BF25F /* DDNetworkingOfAlamofireKit_Private */, + 20913A7302F88465CF8A32249A5DF6A1 /* DDPersistenceKit_Private */, + 0947097DB036F200446803A32647BB58 /* DDProgressHUDKit_Private */, + 66A03FED0010D20C609E327D146BAEDD /* DDTimerSwiftKit_Private */, + 01AC19621C479575C896ABEC5BCA9F87 /* DDToastKit_Private */, + 46AF96947BE9C91BAF049BCD2A7AD31B /* DDUtilsSwiftKit_Private */, + 0AE0D5212AC3B6E2AE2CD02CAD2385B4 /* DDWebImageKit_Private */, + FE4802F52EAAE54C93559BD107D89119 /* DDZFPlayerKit_Private */, + B5F0AFE87D7AF74A9EC7E11005681A61 /* ESTabBarController-swift */, + 2414A7D7CB098F23DEFA58839825E6CB /* IQKeyboardManagerSwift */, + 17832D50336800A5F706C9C9F89A1726 /* JCore */, + 0838BDA2D420D0467F50163FFC8DD2A9 /* JPush */, + 0C4E32B77016849213546C481C22E7A5 /* JPushExtension */, + 5AE99018DA71FC74CF693CB525BE2DAD /* JXCategoryView */, + A7033E5E96F060EED1A6161F9C345185 /* Kingfisher */, + 4AB74D237C6907FCDB95F638E6C388C7 /* MJRefresh */, + E59CA764E50F3D20B3572429474580F9 /* RxCocoa */, + 13756B7648FD4BC69686647E820A49CC /* RxRelay */, + CCA6DCB9C3549BD923448BA177D1AFA9 /* RxSwift */, + 43F133695D7273DDC875DF181F5768DA /* SnapKit */, + A47721B2D373F4FFD8B0AF9366686CE5 /* SwiftEntryKit */, + 64FF446DFF261878536CAB8398BDBE40 /* SwiftyRSA */, + DC9D6DBB97D8821B377A74962DDDEE53 /* ZLPhotoBrowser */, ); - name = "NSBundle+DDCategory"; + name = Pods; sourceTree = ""; }; - CC68D5B083BF956025DEC577A826789E /* DDBaseTextView */ = { + CCA6DCB9C3549BD923448BA177D1AFA9 /* RxSwift */ = { isa = PBXGroup; children = ( - B00D3687235637519CE9A162E5BB3AD1 /* DDBaseTextView.h */, - 1D0E7E5057462F655D8F4E52508E671F /* DDBaseTextView.m */, + 953CF3FF2D694E7D51C8340D7A4AA9E6 /* AddRef.swift */, + 0A7B59AAC6E01A3567809323235B2261 /* Amb.swift */, + 92A1D0D97078E98FB87C120217562479 /* AnonymousDisposable.swift */, + 9CB5971F9ED2AAEB23FD6EFE689A4BE4 /* AnonymousObserver.swift */, + B0A5E2143F94BF6522848A46BAAAAB2C /* AnyObserver.swift */, + 3667D48D78F4EB9E9A9A8982E3A1F6BA /* AsMaybe.swift */, + B401C5BDB0EE0FDF670F962EC5A6FB42 /* AsSingle.swift */, + AFF73BF54B3E9B8EBA2ECD20D3D7CF55 /* AsyncLock.swift */, + C6C8D677B166F29318F8622DE9A027D8 /* AsyncSubject.swift */, + 3FF4587CF94C7858297417E9CB2B1625 /* AtomicInt.swift */, + 9E722947585C05E002BBAABE96FCC6B6 /* Bag.swift */, + 688847A899CA9D29452FB72F219FB4A5 /* Bag+Rx.swift */, + B19F4E5342F19A3EDF819802D9F91F20 /* BehaviorSubject.swift */, + 44F077736BE1EEE086217ADE1CE83296 /* BinaryDisposable.swift */, + EDA62D90A6EF18A3A06FB0047BB4FBC2 /* Binder.swift */, + AF74A5E916E091D3EF3775EBAE93BF3F /* BooleanDisposable.swift */, + C9784281ACB2D7C2250D7EE2F61CD434 /* Buffer.swift */, + FF6E8F7D25ECF33B09FA952CE6EEDE59 /* Cancelable.swift */, + 149E0EBE3D08C3F6A2CFB834CEBB8562 /* Catch.swift */, + F380C5D34907A0E2146FBEDD873DE75D /* CombineLatest.swift */, + 02ADB14AF5456465D9166F44567CCE0C /* CombineLatest+arity.swift */, + 7FB1E26331EFCCFD6350B17A064756EC /* CombineLatest+Collection.swift */, + C34D216497732A44544F47481406400C /* CompactMap.swift */, + FCEE53B07BD954B681873FBB74FC12CB /* Completable.swift */, + 6339D4A4812FEC1EAB770EB448D57E5A /* Completable+AndThen.swift */, + E7DB509EC577AF23023320DFBABB4DAA /* CompositeDisposable.swift */, + BE54042610CD5021652EE0303692E65D /* Concat.swift */, + AE1B17E31649C1CE911EB3C8EE16F83E /* ConcurrentDispatchQueueScheduler.swift */, + 46AF650B6387318653732241EE6C7F84 /* ConcurrentMainScheduler.swift */, + 5B70E30F33A95BAF13F8A49DB969F860 /* ConnectableObservableType.swift */, + A830C26521C532751DB622B4D379B501 /* Create.swift */, + C17C898D9A47EE5A5C2A1354F9B9A906 /* CurrentThreadScheduler.swift */, + 4B3A9D01AB4924136619B4FCCBD9A510 /* Date+Dispatch.swift */, + 2B420DC9E7E878F705D9118F5CE92256 /* Debounce.swift */, + DAC5D322C3E7C85FB85CF8A95F7D9FBC /* Debug.swift */, + AA4F6B68BCECD6440DEECF0F4BCED04A /* Decode.swift */, + 1B0C75E56DF0CA9B77277AFE7D089A7E /* DefaultIfEmpty.swift */, + 8CC42ABCEA6FE16E2511E008BD56A121 /* Deferred.swift */, + F36B19F3BB62251835321071E1D44A0A /* Delay.swift */, + 779ED11063FBD714E51333AF36ED5209 /* DelaySubscription.swift */, + 936FCA55D6AC3E19A384D8E1AF0FA50B /* Dematerialize.swift */, + F65C8C0533DCFF9A8AF83591B1C66855 /* DispatchQueue+Extensions.swift */, + AF268500FC0ED762949E63422B790739 /* DispatchQueueConfiguration.swift */, + C1BD4BCBFF2205C91FBE2FBF1E963ACA /* Disposable.swift */, + DD0A4B773F3497967CA6047F3BBE64C8 /* Disposables.swift */, + C121B61163D889285F9E307ADE5EAFA8 /* DisposeBag.swift */, + 70CA38B9B302CB892D83B42C9D260996 /* DisposeBase.swift */, + 373509CBF26220BD6D3A6892AFA34762 /* DistinctUntilChanged.swift */, + 63419DC0BF3A8E6707B28DD5DEC2804F /* Do.swift */, + D25C6967D8373406CD6C51C689D66DC8 /* ElementAt.swift */, + BBD2651733A27E35D22EDB7006D5478D /* Empty.swift */, + A35FBB2AC4CAC09ADCFA5FD239A3DC69 /* Enumerated.swift */, + 3C93DF9F137469B6087FF40ED2C39675 /* Error.swift */, + 9CBD83D52B3A482D5D31D9499E095405 /* Errors.swift */, + 0BD5EAC0031F82E3E2E469DF874AF715 /* Event.swift */, + F952889F3F23D8E918EA06EEB05E9E53 /* Filter.swift */, + BF697E5581829F53A837CA4F94F1C2B3 /* First.swift */, + DCC0513B7BC3798F7F3017E3F5F1F884 /* Generate.swift */, + 41DA497EF073626C5D9A197F3F90A790 /* GroupBy.swift */, + 2FDFF23D0CA9275C1C9B3BF37FC20772 /* GroupedObservable.swift */, + 290E927FC45FEC741770263CB43552BC /* HistoricalScheduler.swift */, + CFCD7365B39C984D4DD7614F53B3369B /* HistoricalSchedulerTimeConverter.swift */, + 37823DB9A4881236466DB30127339D61 /* ImmediateSchedulerType.swift */, + 400211ECF73A18F5EF80A57BF4FAC8E6 /* Infallible.swift */, + 4F5C75F27D5781CEE260ED6440510EA8 /* Infallible+CombineLatest+arity.swift */, + E734E813B60F46993A6A3BDB5218CEEE /* Infallible+Concurrency.swift */, + 15DA3ADBEAC86681642ECC349F4440FC /* Infallible+Create.swift */, + C989A5E3A0C940065085747D06AF2C15 /* Infallible+Operators.swift */, + AFDADAAEC5AFF73C0D5758118E696E4D /* Infallible+Zip+arity.swift */, + AA5C696C22AB834D1BE5C85C00880A12 /* InfiniteSequence.swift */, + 88C0FDBDD3131A48271ABA3AC630739F /* InvocableScheduledItem.swift */, + 51AD81CDD5814ACB79200B169B425A0A /* InvocableType.swift */, + EA1C69EF18EA03567A5AB5856EA13A3E /* Just.swift */, + 3BD69EF40759F9D8FA64ED40014A9891 /* Lock.swift */, + 821A51399AA8014383227F9EF07762E8 /* LockOwnerType.swift */, + 7A3DC87B2C6A39B7CEBC890582EAA58D /* MainScheduler.swift */, + 1615A11842BF97FF0AB14145E054EDB7 /* Map.swift */, + 253569B5607BC7CDC1692A171D3F00C5 /* Materialize.swift */, + DE9F7B227F17F41307D3E31581F1072D /* Maybe.swift */, + D0440522426DB3AF3678746967417BAF /* Merge.swift */, + 52675871FE5D8FD60A740327292ACABC /* Multicast.swift */, + 1BB675B7481C947546D1269F1A55B716 /* Never.swift */, + 43EEEE384195CEBADB7B3EA9107DCA45 /* NopDisposable.swift */, + E149949266077CA716C0F64C4A679EDC /* Observable.swift */, + 61B97D6EFAEBABB126F08996452C5C2D /* Observable+Concurrency.swift */, + A438275CD02B434CCA172C62742F143A /* ObservableConvertibleType.swift */, + 62B1828F05879B6F721502FE2006F6EC /* ObservableConvertibleType+Infallible.swift */, + 1DF9904B080AB593E51305111BF571A5 /* ObservableType.swift */, + 1251C85209716C617C7B9F371BC3DEAE /* ObservableType+Extensions.swift */, + B93C321456BC9DB8999A599AA84293D6 /* ObservableType+PrimitiveSequence.swift */, + E07FE5BB474F004DA115A4CBA2ADEDDD /* ObserveOn.swift */, + D6A19355B7723280626F510E715EE27E /* ObserverBase.swift */, + 109DEBF28F16126F32DDDCE9500BF311 /* ObserverType.swift */, + 844B14AFA346AEC662C06514D3F2909E /* OperationQueueScheduler.swift */, + 5D8B384A69484CA60996D0C597D70630 /* Optional.swift */, + F65966031F0AE0AF112AAA5B1829ED64 /* Platform.Darwin.swift */, + 8EDA3613935AF40D8DB29CDE75D50025 /* Platform.Linux.swift */, + 5A3F3F200A8F91B60E91D136A96A72AC /* PrimitiveSequence.swift */, + 3A1AB87A7484DFD8846AA2132C2A1C52 /* PrimitiveSequence+Concurrency.swift */, + 60B5E16461A4E42F463FABB5D52B974B /* PrimitiveSequence+Zip+arity.swift */, + 974FA2645992FB57B2251A6B656D45AB /* PriorityQueue.swift */, + 935A60179E482420807581C62CECC8B5 /* Producer.swift */, + 227C901806BEBB3B2BCE64C2FAFC82DA /* PublishSubject.swift */, + 5C3C85ACBFE971066F7BADFAF22796A8 /* Queue.swift */, + 5B57D2A6BB14FABAC2CB1250A4A956E0 /* Range.swift */, + F5496498F906246971438B7605E35C37 /* Reactive.swift */, + 04ADAC8C01EA757A396D3761DCD700BD /* RecursiveLock.swift */, + E17653FB4A421EDAD142B7FA280AD1EE /* RecursiveScheduler.swift */, + 2E6DFAFE27EEC553B733AE781B308FDB /* Reduce.swift */, + 940B2DE0CE005687375D4B5CF4576335 /* RefCountDisposable.swift */, + 5367AB4D26D6B38E8AF4332BE5E5CE53 /* Repeat.swift */, + 4AD83821B8BE69287642F1191B5C530F /* ReplaySubject.swift */, + B8D9026E6AD733D4F82F478DF11DF6FD /* RetryWhen.swift */, + 3DEB92004F24D012A2DD2A749EA68696 /* Rx.swift */, + A88FDEC296D66AC6FD5CE6DEC2002FCA /* RxMutableBox.swift */, + C5BABAD0DB889E399D6337FF47931FC4 /* Sample.swift */, + C097AFF1B8C2C891B31FD8EFD9BC3A35 /* Scan.swift */, + BB1BCE3AC517287CE470EFD855396EF3 /* ScheduledDisposable.swift */, + A1D71C8008A798B55A6A430FFD318DE8 /* ScheduledItem.swift */, + 9D57D19629CE260314DE6E8DB370E35D /* ScheduledItemType.swift */, + CFBD3DE3DBE50C35DC8C125936E8C594 /* SchedulerServices+Emulation.swift */, + 0FE35758BD8F68C0937204A63AD8C001 /* SchedulerType.swift */, + 422D0406870D7669AE5338E20EDB217C /* Sequence.swift */, + 5D74D0A422C3B16B8DA4F849EF7E9F8A /* SerialDispatchQueueScheduler.swift */, + E20129BA89498DA454383EA31532A751 /* SerialDisposable.swift */, + 9F81CC6D2F90366A5CEFD1D0CA455A37 /* ShareReplayScope.swift */, + E8B3DD439BC3748B0A4B65C42D2854B4 /* Single.swift */, + 81497325EC740F6F6E8CF05DA8DB27B2 /* SingleAssignmentDisposable.swift */, + D26F5BBECDC3294562AD41764B614AB6 /* SingleAsync.swift */, + C31BD0A86D6F1766685BA2FF1AD9144E /* Sink.swift */, + 10963CD3644E0716EE62F49301E46B79 /* Skip.swift */, + 608A7E1D20A7A205087553870E508436 /* SkipUntil.swift */, + D87D38F8DCD8D3B5BEF78D23FDD2E7B0 /* SkipWhile.swift */, + 0DAD147264FA2FBE6ED5247E9B66774D /* StartWith.swift */, + 7BB27990636087FB8595A96CC780733A /* SubjectType.swift */, + 1AB8E151032EACAC5DF0370A209F5024 /* SubscribeOn.swift */, + 498408C41F764921B2B91F75343B37C0 /* SubscriptionDisposable.swift */, + 4457A40FC3FCC29E9A078124E59297AE /* SwiftSupport.swift */, + 58218155F660EF1DBF61626281ED8C79 /* Switch.swift */, + AA9DCE00A1CC7C0A1E8963EC44BC3F0C /* SwitchIfEmpty.swift */, + 07C7BB6A20C3D9D02A2634F44201E6DB /* SynchronizedDisposeType.swift */, + 968B75F61B67C9F78C8926BFB0A3041F /* SynchronizedOnType.swift */, + 7D0C5B8270C483F02144AA8D18C90901 /* SynchronizedUnsubscribeType.swift */, + 434CFEDAB464EEA10B068B7300D13E51 /* TailRecursiveSink.swift */, + 73C066DE0E3EF2B198218157AC11EF02 /* Take.swift */, + DA0A6C7B87A91E79A318418AE7E08F59 /* TakeLast.swift */, + D28BADFD21FD34580D06439BF6E9EB6C /* TakeWithPredicate.swift */, + A1FD2BAD4E1D02181AE2E2D81F6E5490 /* Throttle.swift */, + 61B7B6AFE657B0FF398ACB00652BA68F /* Timeout.swift */, + 41AF1F2AF9D17DF44C12C7DD6B6A5117 /* Timer.swift */, + 56DB8AFA9B7E354F4FAB90269E7E5EC9 /* ToArray.swift */, + 806B5B56C01097586DC8023B631BBE14 /* Using.swift */, + 5C5DCF0D1CBE62281BD83194F96341BC /* VirtualTimeConverterType.swift */, + 3A1ACA8A0153DF4092625A188EED2169 /* VirtualTimeScheduler.swift */, + 599A7B590ACA6E4769E8DF5F97A0063E /* Window.swift */, + 9816E7B4E8EC58385B4CBC42517ADB10 /* WithLatestFrom.swift */, + 0598E7DDE673DDF7484F63904625B4DE /* WithUnretained.swift */, + 8234D79DB09F470ABBDD887A72BA9570 /* Zip.swift */, + 5A902D49CF099405F20016D58DE2DED3 /* Zip+arity.swift */, + D833F99829076C9F074DCD0531EFEAA8 /* Zip+Collection.swift */, + D6FB1BAE20E2188328F0BF676C6854C2 /* Support Files */, ); - name = DDBaseTextView; + name = RxSwift; + path = RxSwift; sourceTree = ""; }; - CCF85D2D5487AE71D613E1FC5964A914 /* SnapKit */ = { + CF0C705776097A59E300E866578BF25F /* DDNetworkingOfAlamofireKit_Private */ = { isa = PBXGroup; children = ( - 6DB3B3078B263C93768051E31C556659 /* Constraint.swift */, - 9D8211385C6B50829DFD7B6D81D2BCD3 /* ConstraintAttributes.swift */, - 9AA1EADCBECF746A40161126D7FF6259 /* ConstraintConfig.swift */, - 982ECA931A70E8CA08E11F2A9403EAFD /* ConstraintConstantTarget.swift */, - 99211DAE7C096A7D965DE4912178709C /* ConstraintDescription.swift */, - 5CF15644D62C9CF63073D6AD99E6493B /* ConstraintDirectionalInsets.swift */, - 8A7FA337B0F7386D1447BD33A3E1910C /* ConstraintDirectionalInsetTarget.swift */, - 9DA7D44F47D0AE92476114B4A6E3259A /* ConstraintDSL.swift */, - FEF61169EFB951016571C2CC1E329D47 /* ConstraintInsets.swift */, - 50F9BE04765266AAAC4A4EC04406F05F /* ConstraintInsetTarget.swift */, - 282D7124F31EF80A3F99C92CE1C7C639 /* ConstraintItem.swift */, - 0A3EC880FE2B8C0BDB59287FB1C6D1B4 /* ConstraintLayoutGuide.swift */, - EBBB11792460CBC6551C2718F353D0AD /* ConstraintLayoutGuide+Extensions.swift */, - 76BE111FB993C38F2F5FF734B6967FFD /* ConstraintLayoutGuideDSL.swift */, - A9B7CBC1F9794E96B4E20B046CDE8A30 /* ConstraintLayoutSupport.swift */, - DD77B65A144AD2D2150F445522144789 /* ConstraintLayoutSupportDSL.swift */, - A9569643BAC1BFEE9C781C30A603ACF2 /* ConstraintMaker.swift */, - 80FAB26D30EA39FFCFCE983115953C8D /* ConstraintMakerEditable.swift */, - DE87F54785CE5A753ECD3B7635752855 /* ConstraintMakerExtendable.swift */, - C0181110767F7B26C86A5CD95E9D0328 /* ConstraintMakerFinalizable.swift */, - 7592FB61E085EC16C9DB94249F455327 /* ConstraintMakerPrioritizable.swift */, - 2073F87C6D23FB4C08394F7AF94D01AC /* ConstraintMakerRelatable.swift */, - D0BD2BEEDF911D1C192487DDFA65BCBD /* ConstraintMakerRelatable+Extensions.swift */, - 23F066A38F0BF399965EB84BC9A90B8D /* ConstraintMultiplierTarget.swift */, - 7875619CA78736446C19C99FD76D9087 /* ConstraintOffsetTarget.swift */, - 9ED7DA4EDAF57C531F5BAE1A4089B0B7 /* ConstraintPriority.swift */, - 4CD3A91D15618FC3C13994628FD21243 /* ConstraintPriorityTarget.swift */, - 6620B1CC2216E4C9E02CDEDD906C842A /* ConstraintRelatableTarget.swift */, - 0B9CAB0DE89C0BFCBEDDE2F08E332CF7 /* ConstraintRelation.swift */, - 5335B99B27D3308852CEEB5161ACA4C2 /* ConstraintView.swift */, - AFF5711C237875521FB7A31DB9785240 /* ConstraintView+Extensions.swift */, - 1DD865475CC7F8FA72B9919D6A1D6FBA /* ConstraintViewDSL.swift */, - 58509EAB55EB365485F8E73337CA8F50 /* Debugging.swift */, - 8A18186314BEE2254B0BCFEB6D00D5FE /* LayoutConstraint.swift */, - AAA982518F09F8225962D06C2F751884 /* LayoutConstraintItem.swift */, - 86DCB045DD4968B5826BDCE4151714FA /* Typealiases.swift */, - FC0EEB14DE1EDCA76ADF706C778C095C /* UILayoutSupport+Extensions.swift */, - 7C746692B8E6C53CF2C1F7E65794BE20 /* Support Files */, + 98CB7238F9A57FDE98F1C618823FBD5C /* DDAF.swift */, + 83AE347DC32BAC35F18EC1AB8EFDB289 /* DDAlamofire.swift */, + DC79BA4E38F0044F1AEBB9F1096553C3 /* Support Files */, ); - name = SnapKit; - path = SnapKit; - sourceTree = ""; - }; - CE01A318BCD7B22148D9DDC4892A1E30 /* DDWebImage */ = { - isa = PBXGroup; - children = ( - B6BBAE085040BC9BC785838BCA07D8EE /* UIImageView+DDWebCache.h */, - 686EFF145D54132D4D0B03136324C53C /* UIImageView+DDWebCache.m */, - ); - name = DDWebImage; + name = DDNetworkingOfAlamofireKit_Private; + path = DDNetworkingOfAlamofireKit_Private; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { @@ -6289,79 +6359,121 @@ children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, - 955E8ACB428E0620C279C95163D3B54F /* Pods */, + CB79603CCBAE208AB4431E6583E37B0F /* Pods */, 27CDD0DD5E92BE6144CB082499A69238 /* Products */, C75853DD0219D4027452952F5BD8530A /* Targets Support Files */, ); sourceTree = ""; }; - D0DE001F303A16557C7268AC65095DF8 /* Frameworks */ = { + CF29F7476FF5E386DDCB4875CCEFB453 /* Support Files */ = { isa = PBXGroup; children = ( - 07BE5A812FE9D7C903912CDD409219A6 /* IJKMediaFramework.framework */, + C8A8489140566ECA8EDA4D728B332DF4 /* DDColorKit_Private.modulemap */, + E0AF86A226EE7B78FAF8A1A18C44F469 /* DDColorKit_Private-dummy.m */, + CDD1DD5925E3B14369E344D3506EAEF3 /* DDColorKit_Private-prefix.pch */, + BCEE8BAC139BD80F60365DAF802BF8AE /* DDColorKit_Private-umbrella.h */, + 927A1F1AC870032B4A7CDEAC436FF1E9 /* DDColorKit_Private.debug.xcconfig */, + 8C4DC6F83AB9F81E340D5B148CA739BB /* DDColorKit_Private.release.xcconfig */, ); - name = Frameworks; + name = "Support Files"; + path = "../Target Support Files/DDColorKit_Private"; sourceTree = ""; }; - D17C9DD8391D8BBA2C7EFFC047B117C3 /* ApplicationInfo */ = { + CFCE8D4F13BCA42091BE611EC11C4F03 /* ApplicationInfo */ = { isa = PBXGroup; children = ( - C3BD0964A6F8D1D6F6A8DDC56EEC9402 /* ApplicationInfo.swift */, + A531AD70769E1396BB66543117414125 /* ApplicationInfo.swift */, ); name = ApplicationInfo; sourceTree = ""; }; - D231A48FBEAF02C2007C9590DE93D9FC /* UITableView+DDCategory */ = { + D0915F23EB6415B727BA6736AC9A7FDA /* DDBaseImage */ = { isa = PBXGroup; children = ( - A2B32F0FBA845545E001CDEC8EB8EE3E /* UITableView+DDCategory.h */, - 5386EF67B7415DA8A846212CB3814C04 /* UITableView+DDCategory.m */, + A9C059A3D5DB2FA7379E9C9BA5526458 /* DDBaseImage.h */, + AD83B4509F3F1CD3C9E05C7C52414CE7 /* DDBaseImage.m */, ); - name = "UITableView+DDCategory"; + name = DDBaseImage; sourceTree = ""; }; - D3606809614D7922C069D44F90FD0399 /* Support Files */ = { + D151EA0F0C331F9F57CC803AB0CB6E89 /* Resources */ = { isa = PBXGroup; children = ( - DD570F755886F17D3B53335C90F4B0FC /* MJRefresh.modulemap */, - DADC90B2BBC9C7A1F28B16F5D10B2AB7 /* MJRefresh-dummy.m */, - 7FA52F6784A8AC0D4C05672C386D5D3C /* MJRefresh-prefix.pch */, - 062DDB33C6E18D36A77C4A3EAAEC87C0 /* MJRefresh-umbrella.h */, - 1ACE7652E6C9AF597184643F45EC253B /* MJRefresh.debug.xcconfig */, - F91A7A89EE1DD219751D3FD315064E4B /* MJRefresh.release.xcconfig */, + A6CB500FEAE9FB17FF0CD13C096A8785 /* AMap.bundle */, + 2B14377420F487586B958101587AA8AA /* AMapNavi.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + D175DFADAC4F1256AAD3B3EF2D3356A7 /* AddressPickerView */ = { + isa = PBXGroup; + children = ( + 25A2DEB47C7C6C38DE3079489E65FFF3 /* BRAddressModel.h */, + 21C4F5A3DAC4DDD6756FB22ECD673F94 /* BRAddressModel.m */, + 49729CA1E733EE9DFA06A5F4E180945F /* BRAddressPickerView.h */, + 7B43E9C15A4E70FA5A32A182E1948DB6 /* BRAddressPickerView.m */, + B73D1BB47113447104DB6A7A155DF3E6 /* Resources */, + ); + name = AddressPickerView; + sourceTree = ""; + }; + D2F3B770D42E8619DC377ADF7C402BE7 /* DatePickerView */ = { + isa = PBXGroup; + children = ( + 9C592E35BF3019AADA6CB853EE49FA09 /* BRDatePickerView.h */, + 20B6D10CE1EA2CC1F2289F56B4BA9C52 /* BRDatePickerView.m */, + 483B487265D43F02EC9913E734AFD0A4 /* BRDatePickerView+BR.h */, + C81D53F63D09D4F31DA50B009D962D36 /* BRDatePickerView+BR.m */, + F61E032198739A4870C53D72D9AD0BE7 /* NSDate+BRPickerView.h */, + A20B398A6CC241B39BCA9C2F2BDB08A9 /* NSDate+BRPickerView.m */, + ); + name = DatePickerView; + sourceTree = ""; + }; + D5CCBCF8C2946DFF4E77173F554B34E0 /* UIFont+DDCategory */ = { + isa = PBXGroup; + children = ( + 4443E5360C55550FA7EA871AAD12EA2B /* UIFont+DDCategory.h */, + 06848B23C75BA91EF719A27ECEE5150D /* UIFont+DDCategory.m */, + ); + name = "UIFont+DDCategory"; + sourceTree = ""; + }; + D68C5FC15735120C6D0183A964106439 /* DDBaseLabel */ = { + isa = PBXGroup; + children = ( + 63290D034B47854412A7ADEC135B525F /* DDBaseLabel.h */, + 61443FC3DFF69856B4148D8A6E81EB44 /* DDBaseLabel.m */, + ); + name = DDBaseLabel; + sourceTree = ""; + }; + D6FB1BAE20E2188328F0BF676C6854C2 /* Support Files */ = { + isa = PBXGroup; + children = ( + 9CAEB3C7EA0B2DCC1CA34D5BB76D73BC /* RxSwift.modulemap */, + 29C345A668B64C44B7B0A74B0206470F /* RxSwift-dummy.m */, + 36C9C18CC42223BE667D8F0C182D1D56 /* RxSwift-prefix.pch */, + 769BCA6DE32067F47887B1DB030BA1B6 /* RxSwift-umbrella.h */, + C3BFBF760F1C3A2D7641DA056C02D903 /* RxSwift.debug.xcconfig */, + DAC7038C6A95B0C20D9EBA2157B13FF2 /* RxSwift.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/MJRefresh"; + path = "../Target Support Files/RxSwift"; sourceTree = ""; }; - D46C7859F5FD685CA396DEA4F92ED26B /* SDWebImage */ = { + D7F174C4E7720C28AD045BCCE6ED2869 /* Support Files */ = { isa = PBXGroup; children = ( - A8DF3EC20A67C084615A3F3FD6978C31 /* Core */, - C26812C4A950185006E8C4B4588F0061 /* MapKit */, + A1DD483855F07169C649DD40668A0E7A /* DDAudioPlayerKit_Private.modulemap */, + 23667F434A1D0EDA99357240B9ACA071 /* DDAudioPlayerKit_Private-dummy.m */, + 98E63787CD0A843D42822D8966948AC3 /* DDAudioPlayerKit_Private-prefix.pch */, + C99EDFB2E551B870D8E8300A27ED9D3C /* DDAudioPlayerKit_Private-umbrella.h */, + 1780C08F8DCAEC4F2BD176907EF082A4 /* DDAudioPlayerKit_Private.debug.xcconfig */, + 09A1D3229C8D052062027ABBB1539377 /* DDAudioPlayerKit_Private.release.xcconfig */, ); - name = SDWebImage; - sourceTree = ""; - }; - D5EBB9EBB22B854B6E4CCDB0A0DD7818 /* DDTimerSwiftKit_Private */ = { - isa = PBXGroup; - children = ( - 951B5575159EC6BED724E4E6ED9BC5AD /* GCDTimer.swift */, - 46E4D2945ED74548CDB8029A55B847E1 /* Support Files */, - ); - name = DDTimerSwiftKit_Private; - path = DDTimerSwiftKit_Private; - sourceTree = ""; - }; - D68A8DD0368DD7B36605D0AC417BF90A /* DDColorKit_Private */ = { - isa = PBXGroup; - children = ( - D1E5B89FE2BD8A0B0D3B2D9A4B27068C /* ColorUtil.swift */, - 7E7BD7C686CF13C3C55090FDCFD388C1 /* UIColor+Hue.swift */, - 0870BF026127C20EB80E7E62EADB34DE /* Support Files */, - ); - name = DDColorKit_Private; - path = DDColorKit_Private; + name = "Support Files"; + path = "../Target Support Files/DDAudioPlayerKit_Private"; sourceTree = ""; }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { @@ -6371,192 +6483,239 @@ name = Frameworks; sourceTree = ""; }; - D8C7C2AD5687ADD5E815BDEFB521E93F /* Kingfisher */ = { + DA3B9B57F659DAE9D0625715BD7C8114 /* DDAutoUIKit_Private */ = { isa = PBXGroup; children = ( - B93F032484DDAF18E61E57B25D90D36E /* AnimatedImageView.swift */, - 27EB391616D427D471D8EB2DBF510931 /* AuthenticationChallengeResponsable.swift */, - 08E46A417F995AC6613569AB8A4ECF93 /* AVAssetImageDataProvider.swift */, - 391B2BDE22603532A69DA3183B9889A8 /* Box.swift */, - DB970411C4735ECD3EA57171615447BC /* CacheSerializer.swift */, - D05F0F35506B1255CD38C56E37E93813 /* CallbackQueue.swift */, - 54672C2A5C209836AADD03D2D892E9E5 /* CPListItem+Kingfisher.swift */, - ED812C5DAFE92E0FE4A1E67B683840C5 /* Delegate.swift */, - ACB732F84CAA84751166CEAAAD9DCD8B /* DiskStorage.swift */, - 15BFF5C6E6682F26915F98663252A32F /* ExtensionHelpers.swift */, - 9293EE51E0287851A010D0AAF85A6B3C /* Filter.swift */, - 842663C6E92F695503DEF0BDF90FF6B2 /* FormatIndicatedCacheSerializer.swift */, - D01D009193A941A003AC0517D76DE454 /* GIFAnimatedImage.swift */, - B5B09F3B56D2F9CA22294C192F477BEB /* GraphicsContext.swift */, - 05692E2644C9553991BB866D88887C35 /* Image.swift */, - 1A5C5ED621289AE94E383AA5F3845B8E /* ImageBinder.swift */, - FCF3BF8314160B0D0A97BA7AFD00B9E5 /* ImageCache.swift */, - 3FB7ADB70FD266CCCE0EEF823CBD32F0 /* ImageContext.swift */, - F55C2E002D6A9DFD619C3356B154FB28 /* ImageDataProcessor.swift */, - 12DD950669C9B3775079F542F4E99B86 /* ImageDataProvider.swift */, - 9C12FD1A28A40DF2B57355EE6DC72BA9 /* ImageDownloader.swift */, - B4A23E63B70F4027F910FF9823B0A5CA /* ImageDownloaderDelegate.swift */, - 6043EB364EE370D3951635830DCE78A4 /* ImageDrawing.swift */, - 797042713E274AA76DF91C1EBFFA1320 /* ImageFormat.swift */, - 6286647755CFF561CEDA7FB8B9639D7C /* ImageModifier.swift */, - 7E68705B11B244C7E145B9E820FFE739 /* ImagePrefetcher.swift */, - 7C3EC2559E8A3B6A447C753B9D45CEC5 /* ImageProcessor.swift */, - CB0D6EDBBAFBAB3C0412FF4A4299B71D /* ImageProgressive.swift */, - F289594E61B9C3547D5D9FB34C5C1409 /* ImageTransition.swift */, - C8ED51CB709A5C22E282B9EA5A763792 /* ImageView+Kingfisher.swift */, - 5AC2B76D9D1AE189CBEF5336C1214F99 /* Indicator.swift */, - C8315FE5AA39135DA77E2D07472BE719 /* KF.swift */, - 3EE914869B44DC1FBBD1CDD946DF2DD5 /* KFAnimatedImage.swift */, - D678316C117EC91A4AC5159DE80A92F0 /* KFImage.swift */, - FF5C841B7C33D8103A0A0F9FF3BA67B0 /* KFImageOptions.swift */, - 2DA6006EE90D86899E8A7B8E7F9B2983 /* KFImageProtocol.swift */, - 01D0EA99062418CCAB1182100B3FFEFC /* KFImageRenderer.swift */, - 677D4317C802402AD89CF1AD51C3CA5D /* KFOptionsSetter.swift */, - 6CB7DBF821CDB12D47CD37DD36020D26 /* Kingfisher.swift */, - 4AD77A5A95E9ABAA202BCDBEE365504B /* KingfisherError.swift */, - EBBE521080A95E316C04B0F2E4939996 /* KingfisherManager.swift */, - 217C866C59E4E876CAFEA4A8B18EED9A /* KingfisherOptionsInfo.swift */, - 24AB60430C88BAE9A51BB73EDF64E5B7 /* MemoryStorage.swift */, - 264D957F0C6D44F8ED6DFEF13A47CA89 /* NSButton+Kingfisher.swift */, - 9ADF60D662FBC8EFC87BB28D21A86E3D /* NSTextAttachment+Kingfisher.swift */, - 81AE312979BD48363A3F57B2019A76CA /* Placeholder.swift */, - 712075C261C7E4FD8A48EF269F00C315 /* RedirectHandler.swift */, - 2EDA71E4655ACBB46694E637A6E3BDCB /* RequestModifier.swift */, - C97E9525A94CDAA9F9FD8C7A3E12D63F /* Resource.swift */, - 4AC82AD522F7CA26F3D020316D2D9F13 /* Result.swift */, - 90EB38753169305615F79B311EBD4AB9 /* RetryStrategy.swift */, - 0E23994B38823A2C0B09406E96E37D71 /* Runtime.swift */, - 69CA75EE729B8CA939077B808C8C64EC /* SessionDataTask.swift */, - AADA96E2E0642032A7525A05A35E83B5 /* SessionDelegate.swift */, - 5E28C397C02D3520116ADA4BFA361602 /* SizeExtensions.swift */, - 5493A12366B21CAF8960EE36E60C8C4F /* Source.swift */, - D6DDAF1A1ED7AAFC0172CF5F31EC2D4B /* Storage.swift */, - 8C986179E83B509C37AFFC2840AADD5B /* String+MD5.swift */, - D10392DBBF45DE4D23794FCCB748DE71 /* TVMonogramView+Kingfisher.swift */, - F6CCD4C2D194D0F35697C8664EFA7E56 /* UIButton+Kingfisher.swift */, - DAB9CC1539698C9F00995A0EB6E34BBB /* WKInterfaceImage+Kingfisher.swift */, - BBD10664F67026ACE301FC97681DDCC2 /* Support Files */, + C058BCFE672D5791D938C8E04CD9BA55 /* AutoUI.swift */, + 7469CBA367F18E25ABE98C1D4762DCC2 /* Support Files */, ); - name = Kingfisher; - path = Kingfisher; + name = DDAutoUIKit_Private; + path = DDAutoUIKit_Private; sourceTree = ""; }; - DC706FF1390D89B8C3C352C9193120D8 /* Base */ = { + DB037C1F2D137716FF2F99A74A5303DA /* DDAudioPlayerKit_Private */ = { isa = PBXGroup; children = ( - AC55ED7E828E08DF03D9F36813E44D2A /* BRBaseView.h */, - CFB658FC4FDDCDD612FC03C10F5EC8A5 /* BRBaseView.m */, - 716203801373EFC5D8CF145D3D1E3AB5 /* BRPickerStyle.h */, - BAE15B51CE41A8E6F222EF552783DB5C /* BRPickerStyle.m */, - 2C7505690BF8923788AFD38D392D2462 /* BRPickerViewMacro.h */, - 428BB213BB5CB7CF5DD1520FAD9BC61D /* NSBundle+BRPickerView.h */, - D19DE406AA047CD1C100910EE6A46463 /* NSBundle+BRPickerView.m */, - B2AF2A8A92656B91E291C7FAC2136E47 /* Resources */, + 53AACF49D169396199F59562A14A9B40 /* DDAudioService.swift */, + 8CE87AD2396F79DE4134FE95D84EA276 /* DDSpeechSynthesizer.swift */, + D7F174C4E7720C28AD045BCCE6ED2869 /* Support Files */, ); - name = Base; + name = DDAudioPlayerKit_Private; + path = DDAudioPlayerKit_Private; sourceTree = ""; }; - DC8792369EB73805E79F551C6D42C63F /* ESTabBarController-swift */ = { + DB153D01B7C0F4241C67D27EEFCDE6DC /* UIImageView+DDCategory */ = { isa = PBXGroup; children = ( - 5A558292A0FA9F6DA3ED27C424AA45C5 /* ESTabBar.swift */, - 8066F3F18A2F0BBE74C6C051B7A1C73C /* ESTabBarController.swift */, - D2C790694D3AA49873E2CBB0B13284FC /* ESTabBarItem.swift */, - 32583965F8BE185C5BB2B774ADDDC881 /* ESTabBarItemBadgeView.swift */, - AEA3A07AED3ABF0E987811BE34F3BD03 /* ESTabBarItemContainer.swift */, - 1F508EB41ABEA68EA374915014019AF1 /* ESTabBarItemContentView.swift */, - C28ADE09E86BBD513D57E6FAEF8F4BF4 /* ESTabBarItemMoreContentView.swift */, - AB1565A01CE25F9EFDF186ADEE1DFFBF /* Resources */, - 110C5907BDA4A7ECF902E1E6DA5026F3 /* Support Files */, + 1F22983D02B664189D884F954DC89577 /* UIImageView+DDCategory.h */, + FFD2DD6C44BEEFE07B7C888B111ADB65 /* UIImageView+DDCategory.m */, ); - name = "ESTabBarController-swift"; - path = "ESTabBarController-swift"; + name = "UIImageView+DDCategory"; sourceTree = ""; }; - DDA4966C63F94739E5FB95671831513F /* Support Files */ = { + DBDF6EFEB7E2EF700D00C13766849896 /* MapView */ = { isa = PBXGroup; children = ( - 1FFD4C7D986D5A9ABF7146B92D6428E3 /* AMapNavi-NO-IDFA.debug.xcconfig */, - BE3A167EC879F9AFA8856D0491ED4FB3 /* AMapNavi-NO-IDFA.release.xcconfig */, + 8167D5C063A75E87C93E22879E010180 /* DDMAMapView.h */, + 51F629C031E3CF2FB48180D108266F71 /* DDMAMapView.m */, + ); + name = MapView; + sourceTree = ""; + }; + DC79BA4E38F0044F1AEBB9F1096553C3 /* Support Files */ = { + isa = PBXGroup; + children = ( + 6CFD54157EE6B877B3A82C7F7C73375F /* DDNetworkingOfAlamofireKit_Private.modulemap */, + 9A08C41467C4ACA046B611788505A1C5 /* DDNetworkingOfAlamofireKit_Private-dummy.m */, + 87F37E51663E541A5D8B2E91ABCFFE20 /* DDNetworkingOfAlamofireKit_Private-prefix.pch */, + 9BAF558CDB1ACF2F42CDD6F6141D187C /* DDNetworkingOfAlamofireKit_Private-umbrella.h */, + BE39C38E34567D084D08F3F203E57E2E /* DDNetworkingOfAlamofireKit_Private.debug.xcconfig */, + AC43FAA7E3C12560AA886DE857F93BA2 /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/AMapNavi-NO-IDFA"; + path = "../Target Support Files/DDNetworkingOfAlamofireKit_Private"; sourceTree = ""; }; - DF8E7C7E33AD64B9DAF31EED7AC314EC /* DDPersistenceKit_Private */ = { + DC9D6DBB97D8821B377A74962DDDEE53 /* ZLPhotoBrowser */ = { isa = PBXGroup; children = ( - F48B31330181A6CEA6285D68D1930D47 /* DDKeychain.swift */, - 43B8A48B7C417EFC18754D0F37463276 /* Support Files */, + 6C6A10972E4920D1119664C000E8D689 /* Core */, + F726CBE70F839B05F88828888AE8CE04 /* Resources */, + 30C88B9858B6711FE1F81C87ED95CF3F /* Support Files */, ); - name = DDPersistenceKit_Private; - path = DDPersistenceKit_Private; + name = ZLPhotoBrowser; + path = ZLPhotoBrowser; sourceTree = ""; }; - E1370C83C058469F1FB3103F9CAC2F11 /* UITableViewCell+DDCategory */ = { + DE38E30BE37F81240942C210228C559C /* UIViewController+DDCategory */ = { isa = PBXGroup; children = ( - 501A9F199AE7F1476E60BA55080100C0 /* UITableViewCell+DDCategory.h */, - A0DF86A8859EA3632FA00A9B5AA19945 /* UITableViewCell+DDCategory.m */, + 9E23A92691502180D23A68331E29F362 /* UIViewController+DDCategory.h */, + CA6DFF43188781594F72C45869D3D810 /* UIViewController+DDCategory.m */, ); - name = "UITableViewCell+DDCategory"; + name = "UIViewController+DDCategory"; sourceTree = ""; }; - E16DDBF280AAE7D418BC191B91ABA8C1 /* UITextField+DDCategory */ = { + E33643C235CF09E3A9488A2900E7C0F2 /* Frameworks */ = { isa = PBXGroup; children = ( - 708BE8750E187F3FD16DE168DB5850BF /* UITextField+DDCategory.h */, - 9B4135DD76E0E5DDCC281D0EC00561E9 /* UITextField+DDCategory.m */, - ); - name = "UITextField+DDCategory"; - sourceTree = ""; - }; - E2A469D7F93DF4B96A7E9804E6E9FC21 /* Support Files */ = { - isa = PBXGroup; - children = ( - 4249F397EFF56F60B4492677A318880C /* JPush-xcframeworks.sh */, - 85971ECD34AD930163CB8649D33A557C /* JPush.debug.xcconfig */, - C2B5BE12966E4BFC22AE6A701FD66E8A /* JPush.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/JPush"; - sourceTree = ""; - }; - E3836DD8D31FD85B35B19EF71ADDBA38 /* DDTransitionAnimation */ = { - isa = PBXGroup; - children = ( - CF86069B5E64D44181476909B6BCB38E /* DDViewControllerAnimatedTransition.h */, - 8BD14E8FA1A6F6595A796FABF0E1A2B0 /* DDViewControllerAnimatedTransition.m */, - ); - name = DDTransitionAnimation; - sourceTree = ""; - }; - E83705DCF0EECE1C8FF7E4A9D275AFD3 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 0128DC284C15E608A75AD80CCEFED959 /* AMapSearchKit.framework */, + DEF51AE613081B188EDB8BAC4FBF7569 /* AMapLocationKit.framework */, ); name = Frameworks; sourceTree = ""; }; - E95FEAC7FA583ACD4ADE9DC241F86A20 /* UIImage+DDCategory */ = { + E59CA764E50F3D20B3572429474580F9 /* RxCocoa */ = { isa = PBXGroup; children = ( - 8401B25624A44A362A28E544C9474B18 /* UIImage+DDCategory.h */, - 63D0CE3DC397FB3F291FA4A78C327CA8 /* UIImage+DDCategory.m */, + 0EE7B33AFFF74BF666E6DCF8AD495093 /* _RX.h */, + 7373A506072C533C303FBDB01375DAAC /* _RX.m */, + 767BB055D159AF2A3A495E4C46FCC901 /* _RXDelegateProxy.h */, + 7EEFD3500E275F334FC5C3FAED22C19C /* _RXDelegateProxy.m */, + D62C83D50BFED5A4B6B6351ABE1536C8 /* _RXKVOObserver.h */, + 88E4D80B0F0D44BD66BCF685DD9C462D /* _RXKVOObserver.m */, + 3E189C0003B00E49B74050ACD7FC65DB /* _RXObjCRuntime.h */, + C99FE6BA7DFE2B09AFD87A8B9384095D /* _RXObjCRuntime.m */, + 4C2A9E7C637231DC6FE721DBDB627E4B /* Bag.swift */, + A788760BE0D2EF4CFE65B330573CDE01 /* BehaviorRelay+Driver.swift */, + BB8088C49642EBEE3519DC987805B43D /* ControlEvent.swift */, + DEE9361B2BA7FAA41C595FC2582601D9 /* ControlEvent+Driver.swift */, + 54E1B14F3A004FC83C932AF31BF2AC09 /* ControlEvent+Signal.swift */, + 18436F4693AEBC2EDEACD10272721DF5 /* ControlProperty.swift */, + B545480560F1C724C5E6029068B80140 /* ControlProperty+Driver.swift */, + 4C1B1A69BE4480B37E9CCCFC00E5FE56 /* ControlTarget.swift */, + 8E316776F77F45F6F00C395E01C3D553 /* DelegateProxy.swift */, + 73F744CE5E0E9B9F8F2C3023FDE73FF6 /* DelegateProxyType.swift */, + DE78ED761D06FDE3C6A57D02D09D5A7C /* DispatchQueue+Extensions.swift */, + 217353BBD997FEDD07AC1E006782A2EE /* Driver.swift */, + 684D01417759D26059765DBD103935E7 /* Driver+Subscription.swift */, + 42379670954CB9100261148A12A2A754 /* Infallible+Bind.swift */, + 2DCA1D5196E0C449181AE06F962959AB /* InfiniteSequence.swift */, + C2618B28A7F9A7728D42E28F08EC3888 /* ItemEvents.swift */, + DD6A00003DCF476B5B5C7CD84A4FF86D /* KVORepresentable.swift */, + CC631F3699254A910FFE708DB2E5C67A /* KVORepresentable+CoreGraphics.swift */, + F3DD7B37D9361E1A1F0624333F4892D6 /* KVORepresentable+Swift.swift */, + 96611FB30B33CA7B989BD4F9ACE90FAC /* NotificationCenter+Rx.swift */, + 0F00EBA0CC49C54513B299B4D73663EF /* NSButton+Rx.swift */, + 4CF4CA085924366252B4AC04BE382C92 /* NSControl+Rx.swift */, + F92DAF49F4F56C344C9D459A7E93A47F /* NSObject+Rx.swift */, + A7A8ABF24AA53C255B3EFB5344ACDFFD /* NSObject+Rx+KVORepresentable.swift */, + B0B0C6CF37E5637050400DE2181AC707 /* NSObject+Rx+RawRepresentable.swift */, + A300462831ECE9BB9DAC511335E5FD95 /* NSSlider+Rx.swift */, + 4212E078321E7E7B1165889060125DCC /* NSTextField+Rx.swift */, + 0FE5A60DF91E96F0F10C756A85D274BB /* NSTextStorage+Rx.swift */, + 12FFF6F7F693F3BB234800879918D57A /* NSTextView+Rx.swift */, + 22AEEDDA173FD7544482C5B759F88974 /* NSView+Rx.swift */, + 199451E1057EB30B4F6597AE95CA1CC4 /* Observable+Bind.swift */, + 29EE5F2D2B9F6E7178A70E8FFA12F663 /* ObservableConvertibleType+Driver.swift */, + B336A0BF037A407DE633D95F37D0E9E6 /* ObservableConvertibleType+SharedSequence.swift */, + AD6684E1FA8C54AFC92D5FB4D158832A /* ObservableConvertibleType+Signal.swift */, + 106058C76A549394D008ABF56DCD29C8 /* Platform.Darwin.swift */, + 042B16BEFD36308DABC26C34A19823CC /* Platform.Linux.swift */, + 04EE0EBD02463316BE1F289617518D8E /* PriorityQueue.swift */, + B92F5DE6EDC55DB5A29243A5B800516A /* PublishRelay+Signal.swift */, + 206578216F1E192490699C70AAEB7632 /* Queue.swift */, + 5D1ACD67FC90851792AFDB29EAEF27CE /* RecursiveLock.swift */, + 9025425A4177AF0D67BC5F5796447746 /* RxCocoa.h */, + 9276DB5CE2C8238F22D1D8D7114CDF6E /* RxCocoa.swift */, + 1D5F1E5E3E2084D1B61C8124D66FF6AB /* RxCocoaObjCRuntimeError+Extensions.swift */, + ADFEBD6AF0319D99F5E1F215718A82CC /* RxCocoaRuntime.h */, + A3965656818EAD818DC5956FFCB491E7 /* RxCollectionViewDataSourcePrefetchingProxy.swift */, + C99EFD48AE56A50A5C6B8A95616C2B28 /* RxCollectionViewDataSourceProxy.swift */, + C9422BCE04EF9FDF7731F727B1871ACC /* RxCollectionViewDataSourceType.swift */, + 6B225AA8AA8FCAA7D49D7E3E6A7F4A4F /* RxCollectionViewDelegateProxy.swift */, + 66C2A0D04E50B558D318DA910AD6F6AF /* RxCollectionViewReactiveArrayDataSource.swift */, + AF175BCF03100B8F14F9DF4698265BCF /* RxNavigationControllerDelegateProxy.swift */, + 185958D2BB6C4837F0905CE716E82B50 /* RxPickerViewAdapter.swift */, + F0F237E167C347BB69215017CFE30122 /* RxPickerViewDataSourceProxy.swift */, + 4F4DF89C004F58AAB1A8DE49587F3B49 /* RxPickerViewDataSourceType.swift */, + 71F61D591EFBBE0F4E5CD8FCDCAE47D1 /* RxPickerViewDelegateProxy.swift */, + 25FEB7887415C9D27CEE1AA31063DDAB /* RxScrollViewDelegateProxy.swift */, + C4350C29094821EFDC1B06A3C11183F2 /* RxSearchBarDelegateProxy.swift */, + 26C02A007CB73331CC3CC0B9F14690D2 /* RxSearchControllerDelegateProxy.swift */, + 4BAE1B51063D993A5EFCA256214FF97F /* RxTabBarControllerDelegateProxy.swift */, + DDDF3BEE0A9AA78EFB976893E987A6FB /* RxTabBarDelegateProxy.swift */, + D3E10375E5768292EEC184DFEB9301F3 /* RxTableViewDataSourcePrefetchingProxy.swift */, + 22913BCCD6BFD108964E1970FBEF5781 /* RxTableViewDataSourceProxy.swift */, + 8C666B74A169FA98F3FFC12AF54248FD /* RxTableViewDataSourceType.swift */, + 04F09DEB4460226E152BE7C0845F6C63 /* RxTableViewDelegateProxy.swift */, + D0D16C957D8EA73812F8C94BD9839EC2 /* RxTableViewReactiveArrayDataSource.swift */, + F0E88E1804BD36C799E5D7F8E7468B13 /* RxTarget.swift */, + 113C279E26EF1A354F6C5903C633DBFB /* RxTextStorageDelegateProxy.swift */, + 6F17AA20CDC09FD8FBC3B61C56938FD3 /* RxTextViewDelegateProxy.swift */, + 56D70808BD83201F066C36E48D2532A4 /* RxWKNavigationDelegateProxy.swift */, + E4A0682B73EADA16C42403C4E10F2A12 /* SchedulerType+SharedSequence.swift */, + 8D4B25B38EB7F625A533C41F7A63B3D2 /* SectionedViewDataSourceType.swift */, + A5CE3C7E1B5625A398DBB84016A72F64 /* SharedSequence.swift */, + A98545823367190E0273717AF190E554 /* SharedSequence+Concurrency.swift */, + 68443807C91B3F869EDE10F7C28F5A48 /* SharedSequence+Operators.swift */, + 3AF905524A3B1FC4EDB46CF9D9FF1875 /* SharedSequence+Operators+arity.swift */, + 5CA93006BC9E074E370A7DD13B1443B8 /* Signal.swift */, + 03AD58EE70814C745F8D212420ECA322 /* Signal+Subscription.swift */, + F90CC454C0F2A8E82FC1C8D5EDD95EA2 /* TextInput.swift */, + D04829CC1B4D29D3E71931EB1F362EA6 /* UIActivityIndicatorView+Rx.swift */, + BFA0B4ADBA7A655A623B55A77AB3F393 /* UIApplication+Rx.swift */, + 172CA6C2DE6F83236959926EFB63D859 /* UIBarButtonItem+Rx.swift */, + AC7C613A9C853720F480F2B7E381C709 /* UIButton+Rx.swift */, + 04E04463C5F453870A53A7E2F5492ED6 /* UICollectionView+Rx.swift */, + 2AE8B7F8D62D93BC27053C5698F252FF /* UIControl+Rx.swift */, + 4BC7AFDACD488425AF0DA64F831F7ECF /* UIDatePicker+Rx.swift */, + 25C18D2ED6904B58299AE0D9D68D1827 /* UIGestureRecognizer+Rx.swift */, + 9D0A0350C270DBEAFE5F5B6703D7D716 /* UINavigationController+Rx.swift */, + 25A7C94C223765D5352599C368C2AB96 /* UIPickerView+Rx.swift */, + 98E6927F5F9CA3F5029AFE8A90231918 /* UIRefreshControl+Rx.swift */, + 456D85333EC2AF51BDB8ED4656976324 /* UIScrollView+Rx.swift */, + 0367BA5D256555C97DCDC38BFA1B3254 /* UISearchBar+Rx.swift */, + A292BD1DA40FF7CD44D5F6FCF9DB47C0 /* UISearchController+Rx.swift */, + 92A1FC1EFAC21F297A057B8E8B2F9F7C /* UISegmentedControl+Rx.swift */, + 745324BFC876CE97033B3DC956709856 /* UISlider+Rx.swift */, + 14528C5646AD08C6BD7757FC6C312568 /* UIStepper+Rx.swift */, + 7C648F392A023CF7B9989C59E61DFB63 /* UISwitch+Rx.swift */, + 8A8692AE767E7EF7D3585D1AFB64BB9F /* UITabBar+Rx.swift */, + 64E4D00D4327305747EB9C212259DB50 /* UITabBarController+Rx.swift */, + CAEF301C32F7A78E006E5B503606BA42 /* UITableView+Rx.swift */, + 77B022AD37E2DE1CFA87023184B71B24 /* UITextField+Rx.swift */, + 6F6156B556B076A4B9408EC4444CF56D /* UITextView+Rx.swift */, + 498024A42237B97424CD53452A1785C8 /* URLSession+Rx.swift */, + 4D482B38E3F1BA8F457443686D6B5AB0 /* WKWebView+Rx.swift */, + 04AC567D76E5B188C122A858B54C067B /* Support Files */, ); - name = "UIImage+DDCategory"; + name = RxCocoa; + path = RxCocoa; sourceTree = ""; }; - EA5910B39F49AE056CE60E14BD99EF9D /* DDBaseNavigationController */ = { + E647F7D9F13CC8BA89FD098784CC6C72 /* Frameworks */ = { isa = PBXGroup; children = ( - E8457101209DE2B5A13D5BEC8EDDB323 /* DDBaseNavigationController.h */, - 116BB0872C9EBB9F68AAF275261CBE2D /* DDBaseNavigationController.m */, - 62B652C6768A5D68E417B31DE2214DB0 /* DDNavigationControllerDelegateReceiver.h */, - 71C56D6FE2C0E1B0D503196DF09C7A12 /* DDNavigationControllerDelegateReceiver.m */, + F1DA3E0CFEC46A80560A01E5382DDD5A /* jpush-extension-ios-2.0.1.xcframework */, ); - name = DDBaseNavigationController; + name = Frameworks; + sourceTree = ""; + }; + E692A3CAFF7A2566CE51EFBEF83A8562 /* UISwitch+DDCategory */ = { + isa = PBXGroup; + children = ( + 92AC33A1E1ECB9099CD946A8B7680767 /* UISwitch+DDCategory.h */, + DA7C542A8A0FEF11F40CAD6B4B783081 /* UISwitch+DDCategory.m */, + ); + name = "UISwitch+DDCategory"; + sourceTree = ""; + }; + E69E5D9EFC37B4E8DCD427A43CA9019E /* DDBaseImageView */ = { + isa = PBXGroup; + children = ( + B2A4AC94A106CB444D55A3070F70FBD2 /* DDBaseImageView.h */, + 5C2D7260426F88BA7D0B8F13FFCE24BE /* DDBaseImageView.m */, + ); + name = DDBaseImageView; + sourceTree = ""; + }; + E7BCB2896557F3B30896A7A76B52658F /* UINavigationBar+DDCategory */ = { + isa = PBXGroup; + children = ( + D096A66A7BEE99520FA331B561FDE88D /* UINavigationBar+DDCategory.h */, + 5CAC48F6B20494CE156685ACBB595423 /* UINavigationBar+DDCategory.m */, + ); + name = "UINavigationBar+DDCategory"; sourceTree = ""; }; ECFEDF123D996446174017D5A67EDBEB /* Pods-OrderSchedulingNotificationService */ = { @@ -6573,199 +6732,85 @@ path = "Target Support Files/Pods-OrderSchedulingNotificationService"; sourceTree = ""; }; - ED1015A4A506B5A6A5CBF928F5DD5769 /* DDBaseAnimation */ = { + EF4A61E433EEADD3E0CDB4100FA65852 /* Support Files */ = { isa = PBXGroup; children = ( - E3836DD8D31FD85B35B19EF71ADDBA38 /* DDTransitionAnimation */, + 4143CB6BC609E3B0C55CDCB262048484 /* JCore-xcframeworks.sh */, + 7EA821B861F99F932833744748A753B1 /* JCore.debug.xcconfig */, + F19F5369A2C30CBEB436D563F27A627D /* JCore.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/JCore"; + sourceTree = ""; + }; + F1456EB9D97FBA74943ED92DB3BE458E /* DDBaseAnimation */ = { + isa = PBXGroup; + children = ( + 9BA363F724B2B92DBF5B50160980F13E /* DDTransitionAnimation */, ); name = DDBaseAnimation; sourceTree = ""; }; - ED8489C3806B871F349EC0CC3DADE11A /* DDButton */ = { + F1FB5340A84CAAD6B52B2585C5F0356A /* DDMASearch */ = { isa = PBXGroup; children = ( - DEA2368A58CDACFDE20D6D1F2BC6DDE0 /* DDButton.swift */, + 0364DE9DE9160B4FA7D6B950AA386194 /* DDMASearch.h */, + 9497B3B2C8BBA7CB89EF01382C75DDCE /* DDMASearch.m */, ); - name = DDButton; + name = DDMASearch; sourceTree = ""; }; - EDC30DD410091A304E68D4FE4E169B9D /* AMapFoundation-NO-IDFA */ = { + F4484797CF04107EF44BC59E034E402A /* Support Files */ = { isa = PBXGroup; children = ( - 906F867283F8DF4F20AC5259348732AF /* AMapFoundationConst.h */, - 9A9D1504967D03226085E5C48C859A15 /* AMapFoundationKit.h */, - DB5D541FB6D9AC9EFCEED74F791E43CD /* AMapFoundationVersion.h */, - 9574FBB9ABACE0C10D0181C717259D85 /* AMapServices.h */, - 4C07ECECC24CC76C80EDF7838D38E4A9 /* AMapURLSearch.h */, - CCA7A07265A140074AF6831472C5F5E1 /* AMapURLSearchConfig.h */, - 280840CA64E5DDE7D388A8A799F735DB /* AMapURLSearchType.h */, - 84B3A8626BDAE2D63428B475ABE922B3 /* AMapUtility.h */, - A7A4437EA9C2CAC86F9CD2B4D3975D6D /* Frameworks */, - AACD06FF035A007F9A8E6BFFF838E1CB /* Support Files */, - ); - name = "AMapFoundation-NO-IDFA"; - path = "AMapFoundation-NO-IDFA"; - sourceTree = ""; - }; - EE24D03BDE243AA45A9824BC282447DF /* ijkplayer */ = { - isa = PBXGroup; - children = ( - 71A5F2E0746C8344D74501AE109E6080 /* ZFIJKPlayerManager.h */, - E4DB94A4A958913F4DEAAC5961BB80B9 /* ZFIJKPlayerManager.m */, - D0DE001F303A16557C7268AC65095DF8 /* Frameworks */, - ); - name = ijkplayer; - sourceTree = ""; - }; - F10756722A098C438501C240F02D272F /* JXCategoryView */ = { - isa = PBXGroup; - children = ( - D4624618AC29973CA5CAC6A9D7005664 /* JXCategoryBaseCell.h */, - C67C6724F31CC33E0E6006D76AE4A7F2 /* JXCategoryBaseCell.m */, - 1B0292668A5955F282EED93CB6DED521 /* JXCategoryBaseCellModel.h */, - A3B282A4B58052B382A0CF2218CD95A6 /* JXCategoryBaseCellModel.m */, - 9F33CC9785E07D71C6234832E1CB198B /* JXCategoryBaseView.h */, - 9375E2CF150DCDC067F3831BFB3E4317 /* JXCategoryBaseView.m */, - AA0C9FC33E3E3EC10BD4C13CD647DB76 /* JXCategoryCollectionView.h */, - C12E4B65F0F161EB8E92BA3F5B6D43E9 /* JXCategoryCollectionView.m */, - 0AE10BB627FA715E039B5C0237B0D4DB /* JXCategoryDotCell.h */, - ABD687ADEBACFF2F6ACF83DCF14BE1D2 /* JXCategoryDotCell.m */, - 0B9125A3B47E8794D3F0EFB133D96169 /* JXCategoryDotCellModel.h */, - 6884FC4C71BAB5068C043BCAB0E2EC37 /* JXCategoryDotCellModel.m */, - E0E3C2428DDE22E0D42A4EDD8A65BE40 /* JXCategoryDotView.h */, - 62226814162AA6EED062D8FA248950BF /* JXCategoryDotView.m */, - FCAB0AA2CD7584C71B227EFE07A72652 /* JXCategoryFactory.h */, - 9BF6A94F6968D9C848B3D9FA972CDEB3 /* JXCategoryFactory.m */, - 0860D31ABF0729C6270013AEF0C938E7 /* JXCategoryImageCell.h */, - E3A8D9246FDEB24724530F52E840D0D1 /* JXCategoryImageCell.m */, - 918BFF266753E88CD5590614F7B8509B /* JXCategoryImageCellModel.h */, - F9E0B0BE0D9CD1ADF71FD9BA9AE55704 /* JXCategoryImageCellModel.m */, - 524B2A33545F13651301317573D49492 /* JXCategoryImageView.h */, - E976394F1E27CF9995D498FA1D7640EF /* JXCategoryImageView.m */, - 4B1636BB779E1B06200E7BA12F4B56EA /* JXCategoryIndicatorBackgroundView.h */, - 5FF66C6BE62F32172CF049BC4D7920D6 /* JXCategoryIndicatorBackgroundView.m */, - B93A9BB30CD31ED985932B1C23FA812F /* JXCategoryIndicatorBallView.h */, - 09BFB08AE8AE4E82BD025F7B802797BE /* JXCategoryIndicatorBallView.m */, - C5ABA828B468E724249D9BFEDCCDD082 /* JXCategoryIndicatorCell.h */, - 60314A6B6456E8A6441E5AAC53399452 /* JXCategoryIndicatorCell.m */, - CB7E977B6E943E626C7977D2A1745257 /* JXCategoryIndicatorCellModel.h */, - B69057783FB74D8CBED25ABDDAF08602 /* JXCategoryIndicatorCellModel.m */, - ABE9CBDE3FC3DB8B17CA2F4DF35287AD /* JXCategoryIndicatorComponentView.h */, - 00762648F87378B421D9E8CDFE71A057 /* JXCategoryIndicatorComponentView.m */, - DA5EDA8AEBC1D4EBDE58EACAF14EAAE5 /* JXCategoryIndicatorDotLineView.h */, - 9774C45D2319A4161B9A9291E63750A3 /* JXCategoryIndicatorDotLineView.m */, - E70CE3782A5F0EA3093963B09A8F7BA0 /* JXCategoryIndicatorImageView.h */, - B8B4E170B30220ED1ABFC02EA22F60C7 /* JXCategoryIndicatorImageView.m */, - A5E64A2EE6431B19A716DBDEF3B30A75 /* JXCategoryIndicatorLineView.h */, - 062373D2B5395BB15D1631C91C264690 /* JXCategoryIndicatorLineView.m */, - CB822E6C500EE56E8F7B092F27EB2FD8 /* JXCategoryIndicatorParamsModel.h */, - D0EEC141105B6EE53CEDC1EDF464374C /* JXCategoryIndicatorParamsModel.m */, - 81C3F55AC49722C3EDAD764F5ACEE159 /* JXCategoryIndicatorProtocol.h */, - 22FC17AF43D343B080C6CA75FDBBDD57 /* JXCategoryIndicatorRainbowLineView.h */, - 3CD0D764119E17C6F7EF48E8D95A4101 /* JXCategoryIndicatorRainbowLineView.m */, - F6BA70E7A77F1435FA4EE77F92141727 /* JXCategoryIndicatorTriangleView.h */, - 55A4F48C4DD1485D12FAAA496C0967A8 /* JXCategoryIndicatorTriangleView.m */, - 4B562E39CE0F2547A1F5D9F9AE7121EA /* JXCategoryIndicatorView.h */, - DF1F1BA51D352DA3324609CD1F94C48E /* JXCategoryIndicatorView.m */, - 7609FEE06A1D3532D1C50F784992CA35 /* JXCategoryListContainerRTLCell.h */, - EB9F950077FA14FEE9802FB20BC2E686 /* JXCategoryListContainerRTLCell.m */, - 909F57C6E5AF478B7941E17B5F43D267 /* JXCategoryListContainerView.h */, - 4E04AF4D03DE53ED30E33004A282BDDD /* JXCategoryListContainerView.m */, - 34CDD1CE37AFFBCF7003739F05D75EA0 /* JXCategoryNumberCell.h */, - 9FEC7F3CDD90F13DAB8D5602D5FAAF59 /* JXCategoryNumberCell.m */, - 3F04B1853928E65D1147C54AA9AA215B /* JXCategoryNumberCellModel.h */, - 3F641FC0A6633569487EC5A9C670088E /* JXCategoryNumberCellModel.m */, - B969ACE825F0987C14FA58E931DFC01B /* JXCategoryNumberView.h */, - EB7F24947F4EFB11CCB19E5596531B14 /* JXCategoryNumberView.m */, - E401ECF7473809EDA233D3291AA24643 /* JXCategoryTitleCell.h */, - D409A3AB540AB9E35D4AD5C1DDCC1B5A /* JXCategoryTitleCell.m */, - A1FAE616ACA192AC2B4835DE33A95F75 /* JXCategoryTitleCellModel.h */, - 7172FA29C95820A6FDE07CF7CE98CA1D /* JXCategoryTitleCellModel.m */, - ACF3E42C7C5F35D5AEC97F85FBC70F77 /* JXCategoryTitleImageCell.h */, - 9A1531875C67B4ABB5AAEF9A33DD2FC5 /* JXCategoryTitleImageCell.m */, - 6E86E613AE9E514FF0F3492B965D90DD /* JXCategoryTitleImageCellModel.h */, - 6ABD8E3DD900F702E6FC12C729380C11 /* JXCategoryTitleImageCellModel.m */, - CF076568CD19BB280A4E2AE5F00A9E81 /* JXCategoryTitleImageView.h */, - 76BE4167DFC20F1CB2B487BBC72288F9 /* JXCategoryTitleImageView.m */, - 7601532A59A8000731085A66E9F9F56C /* JXCategoryTitleVerticalZoomCell.h */, - 45477B3077E56B158D2A0B3597158935 /* JXCategoryTitleVerticalZoomCell.m */, - FB48A633C15265654DAC3B807921794D /* JXCategoryTitleVerticalZoomCellModel.h */, - FD7AD4C562A08C6A2483BF35A7988CA7 /* JXCategoryTitleVerticalZoomCellModel.m */, - A17FB5545E866C560CE22CA9A33E96A9 /* JXCategoryTitleVerticalZoomView.h */, - C15F2F15A6C86BD8CC2F988F189F47D4 /* JXCategoryTitleVerticalZoomView.m */, - B743BD461CDD7E3B19621C9A8BC31DED /* JXCategoryTitleView.h */, - E15E4EADCA685276B8A1AC900814D556 /* JXCategoryTitleView.m */, - 771F6EA238053C8C0E8B89BB2E8EF73B /* JXCategoryView.h */, - 7254EBAA62F272CBF1EEB5BA22B06E77 /* JXCategoryViewAnimator.h */, - 7600AA3E434EC03D93F059A0B28A028B /* JXCategoryViewAnimator.m */, - 227D5C20DAC5A6882624BCFF84BFCF3D /* JXCategoryViewDefines.h */, - 01A475B134DD14A921A42BE8DE4DB594 /* RTLManager.h */, - 96A63E634069584FCCD26090DA876DE5 /* RTLManager.m */, - 7958F91CC026C5C7181A4224C319C7A3 /* UIColor+JXAdd.h */, - 980F4BADC38AC667A1001E772CDF612B /* UIColor+JXAdd.m */, - 3D4169D4C5E080AF7111CD0DFE3DC096 /* Support Files */, - ); - name = JXCategoryView; - path = JXCategoryView; - sourceTree = ""; - }; - F1894C69CC4156313AD79ED52418C39C /* UIViewController+DDCategory */ = { - isa = PBXGroup; - children = ( - 76C4DA99D194B23B019F5B7674229250 /* UIViewController+DDCategory.h */, - 9D6236BA8C308683039C38766A1F971A /* UIViewController+DDCategory.m */, - ); - name = "UIViewController+DDCategory"; - sourceTree = ""; - }; - F1B4B9575A5A9B53CC7ED9666E54F47C /* Sources */ = { - isa = PBXGroup; - children = ( - 5D3931F588A03B73CDA356A19706E32B /* Resources */, - ); - name = Sources; - sourceTree = ""; - }; - F98694A00944B661A6B97E800585A51C /* Support Files */ = { - isa = PBXGroup; - children = ( - CA160D9C840C9C92BDE46D95F085F7CF /* DDControlsKit_Private.modulemap */, - 852AAAD4B161A6E1FC5953FA74B53188 /* DDControlsKit_Private-dummy.m */, - D876E2642A6CF882B1DAB11985E3A787 /* DDControlsKit_Private-prefix.pch */, - 8D90494C68EB284EC36FEDDBD7B48491 /* DDControlsKit_Private-umbrella.h */, - 095AEB4D2B39A75A3C5CDB20D42CCFD9 /* DDControlsKit_Private.debug.xcconfig */, - DA00B4D6DD3233157D07880E5049A07D /* DDControlsKit_Private.release.xcconfig */, + C5C437B57F6267154B51FA60533A916D /* JPush-xcframeworks.sh */, + 6A9B731C7C9133C11F69006BDCA26F50 /* JPush.debug.xcconfig */, + 4C54F9CD91183CE4ADEC1F83999D3950 /* JPush.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/DDControlsKit_Private"; + path = "../Target Support Files/JPush"; sourceTree = ""; }; - FB602ADD216E0C5099C6C6914FA9925D /* Support Files */ = { + F501F548B27A3875898CBCECE28ED6AC /* Frameworks */ = { isa = PBXGroup; children = ( - EA6B9B12BF83DDD3D3B9BA9257F95C3D /* DDWebImageKit_Private.modulemap */, - EF3D182C900BFDABDC1B8997FAF5738F /* DDWebImageKit_Private-dummy.m */, - 07C87AB00B467E1A54C7A824E629F0EF /* DDWebImageKit_Private-prefix.pch */, - 718BF6A47EFBD4E03A36F0DACD6E0505 /* DDWebImageKit_Private-umbrella.h */, - 5515E2A60DD640F4433982A0F55BC343 /* DDWebImageKit_Private.debug.xcconfig */, - C16CFFA10E10AC68D34D9C45D8627AE5 /* DDWebImageKit_Private.release.xcconfig */, + 16A88B0F2E7CE77CF00D82E7D5A39E82 /* AMapNaviKit.framework */, ); - name = "Support Files"; - path = "../Target Support Files/DDWebImageKit_Private"; + name = Frameworks; sourceTree = ""; }; - FBC988B1AE83920229C2A6BA796E15B8 /* Support Files */ = { + F726CBE70F839B05F88828888AE8CE04 /* Resources */ = { isa = PBXGroup; children = ( - 9F9FACDB39F8C71D28C209FBC8EAA374 /* BRPickerView.modulemap */, - C4FA30701774D87202960971019C48C4 /* BRPickerView-dummy.m */, - 0BD7484B8382516B76A6BBF7D36C7213 /* BRPickerView-prefix.pch */, - C6A774B057A711719B7985ECF2457F71 /* BRPickerView-umbrella.h */, - 13CD0B97A5CB9BCBB452F8D951B61292 /* BRPickerView.debug.xcconfig */, - 2DBCDA3159346DB0B5B1268A5B555A35 /* BRPickerView.release.xcconfig */, + BCD19CFE18A33C6C4726C8B7A290E134 /* ZLPhotoBrowser.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + FE4802F52EAAE54C93559BD107D89119 /* DDZFPlayerKit_Private */ = { + isa = PBXGroup; + children = ( + A9ADCA37D3E112AA3874EF8EB56C3EEE /* ControlView */, + 50CF73AE5EF8342B860932C36A6EEA30 /* Core */, + 2ADBC6ECC7119AAEE4B94D64499544C4 /* ijkplayer */, + 197E7E1D6355F8F64E947C000C523F17 /* Support Files */, + ); + name = DDZFPlayerKit_Private; + path = DDZFPlayerKit_Private; + sourceTree = ""; + }; + FFD774937DB7BD992C7090234506050A /* Support Files */ = { + isa = PBXGroup; + children = ( + 6F50CECDEF96020D649ABEBAFB15A3CF /* Kingfisher.modulemap */, + 900AF2390E6431427C998DCE7EFB2624 /* Kingfisher-dummy.m */, + F7A93B417FB7A04FFD0F23F003EBBAF2 /* Kingfisher-prefix.pch */, + AC435BCDB1D6D0921B24985828F65ABB /* Kingfisher-umbrella.h */, + AA19C8D8B918C79F66601E7BD259C04E /* Kingfisher.debug.xcconfig */, + FE368C984EA9F1C0E750A90989284556 /* Kingfisher.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/BRPickerView"; + path = "../Target Support Files/Kingfisher"; sourceTree = ""; }; /* End PBXGroup section */ @@ -6881,6 +6926,37 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 21718AF52139A0E7359E1119AEDA98D7 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 432F9B4E6023BA249378CAF9EDBB5CCA /* DDBaseAttributedString.h in Headers */, + 011A1EBE3B8FEAEC24BA46DA5217CA60 /* DDBaseButton.h in Headers */, + F5F6F5A843B2EDC770A466CBA835F1B1 /* DDBaseCollectionView.h in Headers */, + B39CB141B9670AEF45DD1C127E168D12 /* DDBaseCollectionViewCell.h in Headers */, + 9B32CCFFA0C3806B0187E0ECBC35C0B7 /* DDBaseImage.h in Headers */, + F516F3D6A4D4372838C9043170D9D653 /* DDBaseImageView.h in Headers */, + DE4F489481A1E3AD69973B943DE2E414 /* DDBaseLabel.h in Headers */, + 065E058B7EFAEF60F0FE94916FBF3CFF /* DDBaseModel.h in Headers */, + 708122038CA6D6697142EB3BD7A03014 /* DDBaseMutableAttributedString.h in Headers */, + D04ED0B157FFAD652458CA96D31C61BE /* DDBaseNavigationController.h in Headers */, + 316ECCB1FEC71196E803E0DDCED7C651 /* DDBaseScrollView.h in Headers */, + B063BA956EB9BCA0B53896A0E792A264 /* DDBaseSwitch.h in Headers */, + 8BF878796834ECEA997A949F8D4E1EAE /* DDBaseTabBarController.h in Headers */, + 52E0B9ED085280B6B8F67219F7EA366E /* DDBaseTableView.h in Headers */, + 665C707285723F3A68DEDF48EB6117F7 /* DDBaseTableViewCell.h in Headers */, + 0D536CBD733C8354E24D5753892BB371 /* DDBaseTextField.h in Headers */, + A4D3C0FF0EC1462586B769D06F7A9A1C /* DDBaseTextView.h in Headers */, + 4CFBCFBE0205E6688F8E47137BD45C15 /* DDBaseView.h in Headers */, + DEAAA0FB6DAC4E8D6E9F37F3FFF7FAE9 /* DDBaseViewController.h in Headers */, + D01491958316B3D143C1F82521420141 /* DDBaseViewModel.h in Headers */, + F17BED9A66F08C6647EB4CCED0A8EA8C /* DDBasicControls.h in Headers */, + 32E95A874664AF103BB1075B97BCB00C /* DDBasicControlsKit_Private-umbrella.h in Headers */, + 2D2CDCF93A57C458A459F5A968528E34 /* DDNavigationControllerDelegateReceiver.h in Headers */, + 24E92B843F6FA24594FB1963D297E1C1 /* DDViewControllerAnimatedTransition.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 25DC13C11DF47FD9E8A342C5518BD7E7 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -6902,14 +6978,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 29C83E34F5845F22FCE5E81350938170 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 14A07FB54656F5EFD62FD80EABCB4D08 /* RxSwift-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 2A41190E065BFC59481951F25FD5ECCD /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -6970,11 +7038,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2CFC383A63C07182D75180390249C677 /* Headers */ = { + 2B77852BCBA606F06F4A567C73692FC4 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 57FC45421D90ECEC4BFDD97D2F19FB9E /* Kingfisher-umbrella.h in Headers */, + 80A0B2E794F9DAFA3D2934CC99B0DCE7 /* RxRelay-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6986,6 +7054,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 3AF10DE8E0AEAD6C06E3262359463882 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 9F189A3AC2056A2D5A95A21C0C6DFF3A /* RxSwift-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 3FEB4E2AEB147194E5DB6081FB1E7381 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -7014,46 +7090,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4899553901EE5AB615DD660418D56AA1 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - A53E0D0EC57D01B1204E6B09FCDABF70 /* CALayer+DDCategory.h in Headers */, - 4591BA154B3F857C738AFDB9B28461B5 /* DDCategory.h in Headers */, - 1906C4D8AC7C7C9109E94729E96187F9 /* DDCategoryKit_Private-umbrella.h in Headers */, - 7B11736F617525245D4679CD2782FB11 /* NSAttributedString+DDCategory.h in Headers */, - 5BC3B430288A8F5ECFFE9444C8323A95 /* NSBundle+DDCategory.h in Headers */, - 48A713B2366964DAF4D1B0D628C95A81 /* NSMutableAttributedString+DDCategory.h in Headers */, - 147A9850A856D92DE71E4105291FFE48 /* NSMutableParagraphStyle+DDCategory.h in Headers */, - 568F1FAE5DAE25264020340462FC6DFF /* NSObject+DDCategory.h in Headers */, - 619BD8E82F2F43F5D3D8D6A3496CE9BB /* NSThread+DDCategory.h in Headers */, - 099304E6BA24A210A7D45D93B5ED67B0 /* NSURL+DDCategory.h in Headers */, - 6A6383D19FF985A850154722F2BAC12E /* UIApplication+DDCategory.h in Headers */, - 5992938E905947DC3FAFDB7602E383E8 /* UIBarButtonItem+DDCategory.h in Headers */, - F650B6D361BB92D1749DD237C148C25B /* UIButton+DDCategory.h in Headers */, - 941A98BBA25324C6D0B2A1A5B4D48F6C /* UICollectionView+DDCategory.h in Headers */, - 8F2F37F426CB2C3E4EEC25034ACC1388 /* UICollectionViewCell+DDCategory.h in Headers */, - ED4CC55A75B1E9D7CA05B94B3CE2CA26 /* UIFont+DDCategory.h in Headers */, - 855818B53CDD3E3102ED4CEDC16FF11F /* UIImage+DDCategory.h in Headers */, - 7C6612D6212B9BCA43CEA708B1989C23 /* UIImageView+DDCategory.h in Headers */, - 485764B5F9286604D6A98F746CAA326C /* UILabel+DDCategory.h in Headers */, - 276B6A8A1507153CF07CE4D49B4B6A6D /* UINavigationBar+DDCategory.h in Headers */, - 53B0764704EEAFB1F1AB85BCA26D7324 /* UINavigationController+DDCategory.h in Headers */, - C6E3A7066D6E47CA3C58BCE4E03E7DEF /* UINavigationItem+DDCategory.h in Headers */, - 5D630D2F33419B7500AF2D51E0F6E3FC /* UIScreen+DDCategory.h in Headers */, - 8D9E90F44186EB6E5F232F94AE2B49A3 /* UIScrollView+DDCategory.h in Headers */, - CCA10F76E74E00B9FE34413884C4E868 /* UISwitch+DDCategory.h in Headers */, - 62205927FF7EEB992A9BE9BBC3A00EF2 /* UITabBarController+DDCategory.h in Headers */, - 154C244100E806342F1CF418A5C69FE7 /* UITableView+DDCategory.h in Headers */, - ABAB0AC650654642877CA726554C8A85 /* UITableViewCell+DDCategory.h in Headers */, - D39C67D7F82F199C163D94AE5555AED9 /* UITextField+DDCategory.h in Headers */, - 3F67AD396C9B4D06116E69539EDE330C /* UITextView+DDCategory.h in Headers */, - FAA4CBE7A94E748A7BD93AD4585C16F6 /* UIView+DDCategory.h in Headers */, - BBCCC000664972C17D606E086C60EAE5 /* UIViewController+DDCategory.h in Headers */, - C3AD7B3E1A245AD30EC7A7FC2CBBD356 /* UIWindow+DDCategory.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 5E052E8D1CE35F445A62E5D30932A959 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -7081,33 +7117,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 60E3AE3CBB3D114DE51193203312A0EF /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - C2EB891FD0EB8D39EB663383C86A0A51 /* DDBaseAttributedString.h in Headers */, - 5E72F5BCF8F32B1B613D8D1045780B87 /* DDBaseButton.h in Headers */, - FCAFE484DF0EAA99D16FB0739DBF01EB /* DDBaseCollectionView.h in Headers */, - 0C58B0D722795E334B3FAF064FAD0F21 /* DDBaseCollectionViewCell.h in Headers */, - B38F7C6E3277F52A1B16B5B62F8BE0D8 /* DDBaseImage.h in Headers */, - 254FC85A5869DC5E11712EB878B2BD92 /* DDBaseImageView.h in Headers */, - D48F7F03D93ACEF235C2805BD090A8E8 /* DDBaseLabel.h in Headers */, - 3DFD9C3AA94590DEB57E60323D7493F8 /* DDBaseMutableAttributedString.h in Headers */, - 1C5E6AA4F88D15A08088B69889559FD2 /* DDBaseNavigationController.h in Headers */, - A6A88AED55AF15B200D729C12B111805 /* DDBaseScrollView.h in Headers */, - A6D41E81954BD5AE4FD84D7837C4C4DF /* DDBaseSwitch.h in Headers */, - 98A6A3DB14D596B5D70C78B00B315BD4 /* DDBaseTableView.h in Headers */, - 40322DC308FB06758FB929D98C1FF167 /* DDBaseTableViewCell.h in Headers */, - 92730B4EBB36A0845E64B0CCC0468C7B /* DDBaseTextField.h in Headers */, - FCC6D9564C9BB160850216A9ED75491D /* DDBaseTextView.h in Headers */, - 8C7FC675F85CD906964F33C106BD2F63 /* DDBaseView.h in Headers */, - 8963A3DAF031290FC09A2188831C63B5 /* DDBaseViewController.h in Headers */, - E7388F57583B964A9BFD154FA12A486B /* DDBasicControlsKit_Private-umbrella.h in Headers */, - 0C4B16846CA2632E7F3C6F36435EEA1F /* DDNavigationControllerDelegateReceiver.h in Headers */, - 054D8AA8AAE8142B5F52F98F2D32478C /* DDViewControllerAnimatedTransition.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 78CB62404BB42411C48B82E288A4EA60 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -7207,11 +7216,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C02B65465905B0B7994E37C5B0A7DD2C /* Headers */ = { + B2C08EE833919862FCEA80326098BFC5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 62AA511D566BEA64B2DF7CEF1AF91B9E /* RxRelay-umbrella.h in Headers */, + A9E46EB18EE0D1E0129C09C44B1B4725 /* Kingfisher-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7223,11 +7232,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D84C09E4747E9C1568B0231538EDDA3F /* Headers */ = { + C629F57E089FF027E6C16F254EF3045A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - E452BC4F93B01D84D77A13381345A7D2 /* SnapKit-umbrella.h in Headers */, + E0A89DA4868F7CF7A5AACF7765FCBFAD /* SnapKit-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7305,6 +7314,46 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + FEE87FCE14DB1F8B74522C8A6D86BA9B /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 7B7C2392853D6829366CC3AC2412E53F /* CALayer+DDCategory.h in Headers */, + 4108B798335CF1676AD8A70E3881D4CD /* DDCategory.h in Headers */, + 45F97BF0CECC1003C55AFF491DD3D05C /* DDCategoryKit_Private-umbrella.h in Headers */, + D42C4CDC084AB2D2B170F0393AC9BE20 /* NSAttributedString+DDCategory.h in Headers */, + 54092003880B4FEA0C018A3ED9CE7F2F /* NSBundle+DDCategory.h in Headers */, + 3390AF4C23AD240C91F53A3A21699910 /* NSMutableAttributedString+DDCategory.h in Headers */, + C6E490B0E80A0D245B2BFC4B7F913831 /* NSMutableParagraphStyle+DDCategory.h in Headers */, + D9AA8B4EA7925F6A775A005760C1E1A6 /* NSObject+DDCategory.h in Headers */, + 042DE4E784D5CCB4FA7F73F4D6F46367 /* NSThread+DDCategory.h in Headers */, + F8D7F2DD638C3D575DFEBDCF58514868 /* NSURL+DDCategory.h in Headers */, + F6CC665ECC6B5DC553D7E3F19EAD0C65 /* UIApplication+DDCategory.h in Headers */, + B2C5F63141BFE45AA4C780DC0C55C8A6 /* UIBarButtonItem+DDCategory.h in Headers */, + A5588452163DC3F1615D8D01178FEAEB /* UIButton+DDCategory.h in Headers */, + 16211381F6F3B3DBB7A193AC000A4224 /* UICollectionView+DDCategory.h in Headers */, + E5CAE8413C26208D9E8ECBD35532F50B /* UICollectionViewCell+DDCategory.h in Headers */, + 4039879CF20E4A8D49410A9C869EF078 /* UIFont+DDCategory.h in Headers */, + EAB461EDD0B86B22F8743038A0078FA9 /* UIImage+DDCategory.h in Headers */, + 36699973AC3B381C11068CAD5226A147 /* UIImageView+DDCategory.h in Headers */, + 669E3656A503EDF2977801C770778AAE /* UILabel+DDCategory.h in Headers */, + 567C4B0C375327BC017CECC699117BC8 /* UINavigationBar+DDCategory.h in Headers */, + FB93BFD463E794368CF501B065C31034 /* UINavigationController+DDCategory.h in Headers */, + 10BE789B6AB216E4B26F0F8A120B2BBD /* UINavigationItem+DDCategory.h in Headers */, + 1707C8BBA7169C290322CF62C7B7DFAA /* UIScreen+DDCategory.h in Headers */, + 8E8270B517CF34A1ABF90B3CFCBFAB77 /* UIScrollView+DDCategory.h in Headers */, + 8DB01ED2B3E2795549E0F5FC49B35D92 /* UISwitch+DDCategory.h in Headers */, + F12EB53C336660D086638E8CD56C67AA /* UITabBarController+DDCategory.h in Headers */, + 79B72E633EDCC372F9F267CF04736306 /* UITableView+DDCategory.h in Headers */, + 44249E35075C9A99ED0B179EDFF7FAF6 /* UITableViewCell+DDCategory.h in Headers */, + 4B679F955E4CAB26B5FE7368B2F99F1A /* UITextField+DDCategory.h in Headers */, + FBDFCD081BBCFC13948DD0197E13F073 /* UITextView+DDCategory.h in Headers */, + 30C0B4658AC7B7E2E39B7663F458ED84 /* UIView+DDCategory.h in Headers */, + BC833E90536AEA35025BE5EB4961D929 /* UIViewController+DDCategory.h in Headers */, + 64E2AFB7C52B6E7A9DDC5D04F0F8B853 /* UIWindow+DDCategory.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ @@ -7320,7 +7369,7 @@ buildRules = ( ); dependencies = ( - D0B69902310958ED296725B34CD01D40 /* PBXTargetDependency */, + EC2B8D039D1E2F6C53BA7CA4260359FB /* PBXTargetDependency */, ); name = DDControlsKit_Private; productName = DDControlsKit_Private; @@ -7329,17 +7378,17 @@ }; 087B100C5691B6A3C04A45198E6C32F6 /* DDBasicControlsKit_Private */ = { isa = PBXNativeTarget; - buildConfigurationList = 236B03B8C0CBFBF891D760AFF4E4356A /* Build configuration list for PBXNativeTarget "DDBasicControlsKit_Private" */; + buildConfigurationList = ADFF35896AEF363010BAB413E213D106 /* Build configuration list for PBXNativeTarget "DDBasicControlsKit_Private" */; buildPhases = ( - 60E3AE3CBB3D114DE51193203312A0EF /* Headers */, - 2C92AF87AEA9474524B56577FCA02A10 /* Sources */, - 4A0A4A290EBED704470793351C854798 /* Frameworks */, + 21718AF52139A0E7359E1119AEDA98D7 /* Headers */, + F623158EE9B44DBBE9E3438E4A6F4A7E /* Sources */, + 9F55DEE06F31302485599F36FF5B115D /* Frameworks */, ); buildRules = ( ); dependencies = ( - 5AD18562F68B580A63650AA10B082166 /* PBXTargetDependency */, - DE2892E6F375A897803267980DEC00A5 /* PBXTargetDependency */, + 9AD067763B7A112B36412C00C137EB4C /* PBXTargetDependency */, + 4F6D0E9E206257B1642586B4B5829677 /* PBXTargetDependency */, ); name = DDBasicControlsKit_Private; productName = DDBasicControlsKit_Private; @@ -7358,7 +7407,7 @@ buildRules = ( ); dependencies = ( - 02E54B971D32F2D86F44EF092F9331C9 /* PBXTargetDependency */, + D9AF99992AD690E446C21AAAC84FAB69 /* PBXTargetDependency */, ); name = DDTimerSwiftKit_Private; productName = DDTimerSwiftKit_Private; @@ -7367,12 +7416,12 @@ }; 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */ = { isa = PBXNativeTarget; - buildConfigurationList = A8914093F789C3EF7232BFBD4277F1AD /* Build configuration list for PBXNativeTarget "SnapKit" */; + buildConfigurationList = CA3A2D1D6C10BCD6DB627B616B6FE4D2 /* Build configuration list for PBXNativeTarget "SnapKit" */; buildPhases = ( - D84C09E4747E9C1568B0231538EDDA3F /* Headers */, - 303B8A3CDE3C31EF8F080455FD140EB2 /* Sources */, - 8F8B497C1C9C0E017ECA50B0D4D9C384 /* Frameworks */, - D2B101BEC3CF27B12225B1B2988B05FF /* Copy generated compatibility header */, + C629F57E089FF027E6C16F254EF3045A /* Headers */, + 29E465ED994721D0267CCB2472022EB9 /* Sources */, + A7C3BFA7240E8DB2F1CFEBF5A1CE9AD9 /* Frameworks */, + 1FE65C4F22405D1E0992700C879E3273 /* Copy generated compatibility header */, ); buildRules = ( ); @@ -7448,9 +7497,9 @@ buildRules = ( ); dependencies = ( - E15E8BE95F758744B206B8221592BC0B /* PBXTargetDependency */, - C0C0551C9F05FE54CAC168DCC4067C0D /* PBXTargetDependency */, - 1965C64FF06A8AE7464A52FD01467321 /* PBXTargetDependency */, + 5C1F9AD2CB6574A55E083888DD9E17FB /* PBXTargetDependency */, + 5D3471F892D2BC7ACF426D864BF800E4 /* PBXTargetDependency */, + F9E768EA395E63B1BEFE6F9C0DCB4608 /* PBXTargetDependency */, ); name = DDProgressHUDKit_Private; productName = DDProgressHUDKit_Private; @@ -7477,17 +7526,17 @@ }; 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */ = { isa = PBXNativeTarget; - buildConfigurationList = ECE489E4E85D35B9B885D01E86C8BF8A /* Build configuration list for PBXNativeTarget "RxRelay" */; + buildConfigurationList = 301EADBC1C0496E7DBEB5BF3D8891F0B /* Build configuration list for PBXNativeTarget "RxRelay" */; buildPhases = ( - C02B65465905B0B7994E37C5B0A7DD2C /* Headers */, - 9948E3AE6AC257C0A7E73775128578C3 /* Sources */, - C76095DF760CCADD6353FBA34CAC82C6 /* Frameworks */, - 99D6DDA5C3F8542EF5C5230FD4A582F2 /* Copy generated compatibility header */, + 2B77852BCBA606F06F4A567C73692FC4 /* Headers */, + 9E427219D7B2BC2CDFF0BC366803EF09 /* Sources */, + 185163A4AB41406448BCA36CF8C44CE1 /* Frameworks */, + ABBB7466A3A021A560E0E2BD6EE6DB9A /* Copy generated compatibility header */, ); buildRules = ( ); dependencies = ( - F4275E5E8859DFA4CB9111413E60D9B5 /* PBXTargetDependency */, + 3AA108A1CFB53023DE9939BE9E8E3919 /* PBXTargetDependency */, ); name = RxRelay; productName = RxRelay; @@ -7531,11 +7580,11 @@ }; 5C23965029860967865B3429B5E29092 /* DDBasicControlsKit_Private-DDBaseViewController */ = { isa = PBXNativeTarget; - buildConfigurationList = 7C95A47DF318598B17AF73DC202F0659 /* Build configuration list for PBXNativeTarget "DDBasicControlsKit_Private-DDBaseViewController" */; + buildConfigurationList = E71775DFA47E1392CD537C585D6D458D /* Build configuration list for PBXNativeTarget "DDBasicControlsKit_Private-DDBaseViewController" */; buildPhases = ( - 5919120A8C25696B8C81639720FF619F /* Sources */, - 422C1CC0228953C2AF0131805280C74B /* Frameworks */, - 44C2038B3B7B08B7D001DB46D5B86326 /* Resources */, + EAAA6AB8A97A769CB6DFED6B356E6389 /* Sources */, + EBDC5C6ED69F08B5CBAA7127560BD0C4 /* Frameworks */, + 7F7D153C72397605E02742B4413EBDC0 /* Resources */, ); buildRules = ( ); @@ -7548,11 +7597,11 @@ }; 6056870867CC4728BCEF2E5EBDD1DCB3 /* DDMAMapKit_Private-DDMAMapKit_Private */ = { isa = PBXNativeTarget; - buildConfigurationList = A7797DB020BF6F2ADB9186C81D36E3E2 /* Build configuration list for PBXNativeTarget "DDMAMapKit_Private-DDMAMapKit_Private" */; + buildConfigurationList = EFE7D2759B3D2A3C6DD9B67530E89C9A /* Build configuration list for PBXNativeTarget "DDMAMapKit_Private-DDMAMapKit_Private" */; buildPhases = ( - 83AFF7AD71DD0183A8B6E47D4CEA1041 /* Sources */, - FC4065FE4C0D5CD99B0F38B028886964 /* Frameworks */, - D0D81A05D4CEDFFDF980393ABDCB1A9C /* Resources */, + C83E1019D48381E948DB4E7B34428C42 /* Sources */, + BB9D512D2B1640871D2EB3064F23ACBC /* Frameworks */, + 44C4BB93E5208AB1D386462E2372C67E /* Resources */, ); buildRules = ( ); @@ -7591,7 +7640,7 @@ buildRules = ( ); dependencies = ( - 2ECF4F3BBA6D79D1AAE0B3DD3F874352 /* PBXTargetDependency */, + 9DE0B78C005CDBF99B517D61B9CC3183 /* PBXTargetDependency */, ); name = "Pods-OrderSchedulingNotificationService"; productName = "Pods-OrderSchedulingNotificationService"; @@ -7609,46 +7658,46 @@ buildRules = ( ); dependencies = ( - 77AF4A2944E51013642155115DC615B5 /* PBXTargetDependency */, - 9F2B84243902D7112D7843CB7CF1C5B2 /* PBXTargetDependency */, - 423DBBA9D1EB7F8251098D05D1DC6A96 /* PBXTargetDependency */, - 798C059F30DDC0DEA582BA6FD97DCFD9 /* PBXTargetDependency */, - 1360CA6B889FAD9B5C9D0D9C513CCF5C /* PBXTargetDependency */, - 58A759F85488628BCCCBAA513F6AA88C /* PBXTargetDependency */, - CD9D4C629C972E4CF009D774BE58BF60 /* PBXTargetDependency */, - B5CA965B672DBDF115E7AC0C98F4B9A3 /* PBXTargetDependency */, - 94377EDE68C359AF7ED4A1F10D432829 /* PBXTargetDependency */, - 51A7B574D63A930FB8BA844346717A07 /* PBXTargetDependency */, - F4308E39791798503A91B4E7C5433AD9 /* PBXTargetDependency */, - 51A952B3C28515ED4A850461712283D5 /* PBXTargetDependency */, - 68B8011BA4D34CE96CA0B7688D0C9F81 /* PBXTargetDependency */, - B4AD1A0259B12A5EEA5C91804F70070E /* PBXTargetDependency */, - 6E8CA8819A8D3089E031A32E665761A7 /* PBXTargetDependency */, - F703442205953DCA12E58D8DB44AEEFF /* PBXTargetDependency */, - 8D924242400A3DC884DBA269422C945C /* PBXTargetDependency */, - 2027A16D9B42908782167F8E9A0E8DBE /* PBXTargetDependency */, - E0620538A67DAF5EF198A45B46B02671 /* PBXTargetDependency */, - A9319D76A61F34032B6E97002A13310E /* PBXTargetDependency */, - 054FE7832F10350B0DD1DFD2A1CA7541 /* PBXTargetDependency */, - A8F8E2CA61BA11EA11F6A3E04AC1146E /* PBXTargetDependency */, - E35D4C4F0B8DECBCF9BF5BE29DDAAF0B /* PBXTargetDependency */, - 1E2CD7BE0D1F863FA257AD401A3296BC /* PBXTargetDependency */, - 687269EDF2A4F8BB32210F1BE864C971 /* PBXTargetDependency */, - 0C8F81B74C1AA244259F85ECE191DDBB /* PBXTargetDependency */, - CD71864E932649212CB4CC7FC091A528 /* PBXTargetDependency */, - B70A6587C54AB0952CF86124D24EBA48 /* PBXTargetDependency */, - 2E5D6C23CA055C0EDB32FF1C69B40CDC /* PBXTargetDependency */, - F8B33391DB759149A413987B88C2CB63 /* PBXTargetDependency */, - AE7C30E1F0A03F3813B082914767F152 /* PBXTargetDependency */, - 04E18205DE5C8E1DECA8DB6390B8D878 /* PBXTargetDependency */, - 7E568561FECBFD1DEE2828867678C2EE /* PBXTargetDependency */, - 149E18125620C9AC4AF1E41DE673F0F8 /* PBXTargetDependency */, - FA233FB8BF7CC1233796D5BE4489B656 /* PBXTargetDependency */, - 2ACA4E6956B5C9300490388B0E0C4AE2 /* PBXTargetDependency */, - 546574D2053AE4314C54003773F9D60A /* PBXTargetDependency */, - 88D4B8C0BE08CE2B178A888C1E00CD8D /* PBXTargetDependency */, - 2B4D117F30ABA622DCAEE58091D44BC8 /* PBXTargetDependency */, - 380FA48817D0520C5F2D33D35462B0B0 /* PBXTargetDependency */, + 1859D2E4DF995F6B552B73E15E944C88 /* PBXTargetDependency */, + 285A244CDABCB39EAF36D4007E87E539 /* PBXTargetDependency */, + A12F3C11EF7C07A5198FDB1768A3BF6A /* PBXTargetDependency */, + 4AADD8D534A0C82B9F613837F73C48B2 /* PBXTargetDependency */, + 40DDAC43D46B35EF1B5B0F4BA31CBF7C /* PBXTargetDependency */, + 30008935BF9E39FEFE56A89E53B47DA3 /* PBXTargetDependency */, + 10247B54F2CCA1099C37898467D08AF3 /* PBXTargetDependency */, + 585B6F7E602DECD4D93542770F1BE882 /* PBXTargetDependency */, + 3BE1EFDEA6F2D5E88B5A04A9713E3894 /* PBXTargetDependency */, + A84480D633CCBE73A7F35B97E623BA2F /* PBXTargetDependency */, + 26860F2C2700B6D60AC143CD93060CAF /* PBXTargetDependency */, + 494A23F857C95B69A35C75FAF2EF59E3 /* PBXTargetDependency */, + AC8DABFC6546F8EC09D45568E54980DC /* PBXTargetDependency */, + 94CC59570546A62F89A2F0D2AC90691E /* PBXTargetDependency */, + 0D005A1D3A22D33521B004EEDDCF8E16 /* PBXTargetDependency */, + 7F8E49A39389674A9D3893CA35F7784F /* PBXTargetDependency */, + FF61DFBB381B3B97E7513DF5051E8AC3 /* PBXTargetDependency */, + F6BFDBAA38405A091B9FBECDACF2539B /* PBXTargetDependency */, + 53ACBC71611D4706AAA478CB453BFAB7 /* PBXTargetDependency */, + 36F4E1E5A4774EC9AF08AF9E57B95804 /* PBXTargetDependency */, + 32D4748EB2788B092CFE2057179C3DC5 /* PBXTargetDependency */, + 1B453CA45AAD410CC046507A92CED4DF /* PBXTargetDependency */, + 168C9B6D3B32E8945537A617E1CD5F09 /* PBXTargetDependency */, + ED986E137B009F17F8FFF22859768691 /* PBXTargetDependency */, + 2586FE271865B46E3B45CB210CD9045A /* PBXTargetDependency */, + AD05B45DC3B8794BCEA4C069F1C0A41B /* PBXTargetDependency */, + 1FD68C1BE6AFD3E6F81452FE786DCBC9 /* PBXTargetDependency */, + 73EC6A559FA709354F9B01B17269316D /* PBXTargetDependency */, + 00C820B8CC11F51BFF7EA57E4C0D38F9 /* PBXTargetDependency */, + B4B127B7C132A31FD692D20A756F0741 /* PBXTargetDependency */, + CEC0A914E387197BA0DC5D6B84FF708B /* PBXTargetDependency */, + 132513C774AC493E4A62746B8E9CD924 /* PBXTargetDependency */, + 6ADAEB422586D80F89850A8C45F12F0F /* PBXTargetDependency */, + 638059844AB481254DD1A05C317E19FF /* PBXTargetDependency */, + C5A49DF89607659B2DDC07C0458D1D47 /* PBXTargetDependency */, + 2CA7AC28CA7CB154DB2FEFCCFA2001FA /* PBXTargetDependency */, + 6B0B4146B050AAFDDF5DB5822F2F51B4 /* PBXTargetDependency */, + DEFD827ADAECFA198FB0BF819DFEA62E /* PBXTargetDependency */, + 5C9C8B5F0CF597B866B9FFE738893361 /* PBXTargetDependency */, + 4F2C5532C7E9EFA7DB9549FE26ACDE72 /* PBXTargetDependency */, ); name = "Pods-OrderScheduling"; productName = "Pods-OrderScheduling"; @@ -7667,8 +7716,8 @@ buildRules = ( ); dependencies = ( - AB405B59DADAC8431FDF45A15CE73C1A /* PBXTargetDependency */, - E5C415A3070574DB0542D07D9DF3BAD2 /* PBXTargetDependency */, + C1F4822E08EB65180CC3BEEB50081958 /* PBXTargetDependency */, + 78FD8213E6ADFDE9475E0ADD229D9DDF /* PBXTargetDependency */, ); name = RxCocoa; productName = RxCocoa; @@ -7677,11 +7726,11 @@ }; 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */ = { isa = PBXNativeTarget; - buildConfigurationList = 92D398CB55D3771AEC920521598DDDD8 /* Build configuration list for PBXNativeTarget "DDCategoryKit_Private" */; + buildConfigurationList = 3DD2F12D4D2F93ACF5E6EF69394C4B15 /* Build configuration list for PBXNativeTarget "DDCategoryKit_Private" */; buildPhases = ( - 4899553901EE5AB615DD660418D56AA1 /* Headers */, - ECCC45FEECD93FEABC170EDDD8162529 /* Sources */, - 9A4603E98A024055EA89426B2A9A5DBD /* Frameworks */, + FEE87FCE14DB1F8B74522C8A6D86BA9B /* Headers */, + DE42DB55D1B37E2E15291C599A9D1025 /* Sources */, + CEAF7311D291BCC70F1EEB17DCD7A22B /* Frameworks */, ); buildRules = ( ); @@ -7774,13 +7823,13 @@ buildRules = ( ); dependencies = ( - 1B7CEC026739ED1B0293411D2F67D213 /* PBXTargetDependency */, - 084FA2E2C1D7329AED644055731FA510 /* PBXTargetDependency */, - C86636E6AFBA50DDDC4B84E053E93E95 /* PBXTargetDependency */, - CF6F340DF5273ED4B90B74288A3E5B65 /* PBXTargetDependency */, - F9617EF4F3BAF0BC5EFB45186A77B0AE /* PBXTargetDependency */, - 7116AF993A8BAED224A0AAA06A0ABBD2 /* PBXTargetDependency */, - 7D2A9C004AE55E8FC6681D265D91C67A /* PBXTargetDependency */, + 3CE8D9DA494AFB05DF627F22C606C781 /* PBXTargetDependency */, + 6BAA498D2416D07F9EA545D7515C563D /* PBXTargetDependency */, + 984987CDB8FF34ADE9846D605B7386F0 /* PBXTargetDependency */, + 1F9CF6A7C90C6673E9B7C9B6893158CD /* PBXTargetDependency */, + E37BA1FAA0C5AABF0666EDD7E8FEC9B4 /* PBXTargetDependency */, + 1F897595707AF5454FA4F6FC874060EE /* PBXTargetDependency */, + 1F8276CF536A5B2CC6E68215719E742E /* PBXTargetDependency */, ); name = DDMAMapKit_Private; productName = DDMAMapKit_Private; @@ -7817,9 +7866,9 @@ buildRules = ( ); dependencies = ( - FDD4FE01EB0AAF2822205304FB03DBF4 /* PBXTargetDependency */, - D71A726284F9CE2F30E3EE4AB1D3E03F /* PBXTargetDependency */, - 0F6980B9679A19576A86DA140B2D8E2C /* PBXTargetDependency */, + D68CCD2F199746F96A52C4260208FDD3 /* PBXTargetDependency */, + C91550FBB2768B72E0CFB18320B1EFEF /* PBXTargetDependency */, + D9789B07729F7B2CBA48EC35EF8BA08C /* PBXTargetDependency */, ); name = DDNetworkingOfAlamofireKit_Private; productName = DDNetworkingOfAlamofireKit_Private; @@ -7899,12 +7948,12 @@ }; E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */ = { isa = PBXNativeTarget; - buildConfigurationList = A8EDFEA56DD31572CE60F0BF143D6656 /* Build configuration list for PBXNativeTarget "Kingfisher" */; + buildConfigurationList = 571BBAD93A2404A1BA813C2197D9788F /* Build configuration list for PBXNativeTarget "Kingfisher" */; buildPhases = ( - 2CFC383A63C07182D75180390249C677 /* Headers */, - 8B9592B135BB95A652FDD5D6A138E309 /* Sources */, - 28F9A693798DF53CBEFD287EF99A47C4 /* Frameworks */, - F99B18AE2AE4710965DAF7E5A75C6DFF /* Copy generated compatibility header */, + B2C08EE833919862FCEA80326098BFC5 /* Headers */, + E38001EAC60FC28107EBA1C42DFCD709 /* Sources */, + 352FF9D4A3004647CAC02F26852580F2 /* Frameworks */, + 45752EAF86349EC0EC97C5358ED7CF7C /* Copy generated compatibility header */, ); buildRules = ( ); @@ -7917,12 +7966,12 @@ }; EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */ = { isa = PBXNativeTarget; - buildConfigurationList = 9E0A533EE547D0DAB2400181BB838A66 /* Build configuration list for PBXNativeTarget "RxSwift" */; + buildConfigurationList = 53F295397685813244AF72ABB6CB819E /* Build configuration list for PBXNativeTarget "RxSwift" */; buildPhases = ( - 29C83E34F5845F22FCE5E81350938170 /* Headers */, - 657DC62B5A334DDC627CB4C94CCC8F25 /* Sources */, - 96458AF18D00E7BB5940873E79844C92 /* Frameworks */, - 294757D04ECDFA2C536CA393C1F353A9 /* Copy generated compatibility header */, + 3AF10DE8E0AEAD6C06E3262359463882 /* Headers */, + 917531F1FC7ADE7E1E8979E7E87114FC /* Sources */, + 5AD59E74E28630690A6DB1FA86604EFB /* Frameworks */, + FE5BD2A4B855150B2985D85E2D662406 /* Copy generated compatibility header */, ); buildRules = ( ); @@ -8077,19 +8126,19 @@ /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 44C2038B3B7B08B7D001DB46D5B86326 /* Resources */ = { + 44C4BB93E5208AB1D386462E2372C67E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 415486C406B7F4398FDBBFCA7C6FAA8F /* DDBaseViewController.xcassets in Resources */, + A04D18D31E122D027996BEAB2A61544F /* Sources_DDMAMap in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D0D81A05D4CEDFFDF980393ABDCB1A9C /* Resources */ = { + 7F7D153C72397605E02742B4413EBDC0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - CA019A42C6A1BDC21A06601B1E2C9497 /* Sources_DDMAMap in Resources */, + 8A63E7761E38FF2DE0840CE466E53222 /* DDBaseViewController.xcassets in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -8168,6 +8217,30 @@ shellPath = /bin/sh; shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/Alamofire/Alamofire.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/Alamofire/Alamofire-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; }; + 1FE65C4F22405D1E0992700C879E3273 /* Copy generated compatibility header */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", + "${PODS_ROOT}/Headers/Public/SnapKit/SnapKit.modulemap", + "${PODS_ROOT}/Headers/Public/SnapKit/SnapKit-umbrella.h", + ); + name = "Copy generated compatibility header"; + outputFileListPaths = ( + ); + outputPaths = ( + "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", + "${BUILT_PRODUCTS_DIR}/SnapKit-umbrella.h", + "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/SnapKit/SnapKit.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/SnapKit/SnapKit-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; + }; 25500B2245ACA87924EEE987F0EBBF41 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8192,30 +8265,6 @@ shellPath = /bin/sh; shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDToastKit_Private/DDToastKit_Private.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDToastKit_Private/DDToastKit_Private-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; }; - 294757D04ECDFA2C536CA393C1F353A9 /* Copy generated compatibility header */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", - "${PODS_ROOT}/Headers/Public/RxSwift/RxSwift.modulemap", - "${PODS_ROOT}/Headers/Public/RxSwift/RxSwift-umbrella.h", - ); - name = "Copy generated compatibility header"; - outputFileListPaths = ( - ); - outputPaths = ( - "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", - "${BUILT_PRODUCTS_DIR}/RxSwift-umbrella.h", - "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxSwift/RxSwift.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxSwift/RxSwift-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; - }; 2BBD6C92D031AB69CC229814EFA8790A /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8305,6 +8354,30 @@ shellPath = /bin/sh; shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDAutoUIKit_Private/DDAutoUIKit_Private.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDAutoUIKit_Private/DDAutoUIKit_Private-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; }; + 45752EAF86349EC0EC97C5358ED7CF7C /* Copy generated compatibility header */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", + "${PODS_ROOT}/Headers/Public/Kingfisher/Kingfisher.modulemap", + "${PODS_ROOT}/Headers/Public/Kingfisher/Kingfisher-umbrella.h", + ); + name = "Copy generated compatibility header"; + outputFileListPaths = ( + ); + outputPaths = ( + "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", + "${BUILT_PRODUCTS_DIR}/Kingfisher-umbrella.h", + "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/Kingfisher/Kingfisher.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/Kingfisher/Kingfisher-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; + }; 60A83CACD768832E8E6C2AEFD0837240 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8401,30 +8474,6 @@ shellPath = /bin/sh; shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxCocoa/RxCocoa.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxCocoa/RxCocoa-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; }; - 99D6DDA5C3F8542EF5C5230FD4A582F2 /* Copy generated compatibility header */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", - "${PODS_ROOT}/Headers/Public/RxRelay/RxRelay.modulemap", - "${PODS_ROOT}/Headers/Public/RxRelay/RxRelay-umbrella.h", - ); - name = "Copy generated compatibility header"; - outputFileListPaths = ( - ); - outputPaths = ( - "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", - "${BUILT_PRODUCTS_DIR}/RxRelay-umbrella.h", - "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxRelay/RxRelay.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxRelay/RxRelay-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; - }; 9B1DCA94E2E74FDB6B8B2AF3004CC4BD /* [CP] Copy XCFrameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8490,6 +8539,30 @@ shellPath = /bin/sh; shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDColorKit_Private/DDColorKit_Private.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDColorKit_Private/DDColorKit_Private-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; }; + ABBB7466A3A021A560E0E2BD6EE6DB9A /* Copy generated compatibility header */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", + "${PODS_ROOT}/Headers/Public/RxRelay/RxRelay.modulemap", + "${PODS_ROOT}/Headers/Public/RxRelay/RxRelay-umbrella.h", + ); + name = "Copy generated compatibility header"; + outputFileListPaths = ( + ); + outputPaths = ( + "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", + "${BUILT_PRODUCTS_DIR}/RxRelay-umbrella.h", + "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxRelay/RxRelay.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxRelay/RxRelay-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; + }; B96D9CB4B6EE13DAC0F38E6D5F28FA79 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8531,30 +8604,6 @@ shellScript = "\"${PODS_ROOT}/Target Support Files/JPushExtension/JPushExtension-xcframeworks.sh\"\n"; showEnvVarsInLog = 0; }; - D2B101BEC3CF27B12225B1B2988B05FF /* Copy generated compatibility header */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", - "${PODS_ROOT}/Headers/Public/SnapKit/SnapKit.modulemap", - "${PODS_ROOT}/Headers/Public/SnapKit/SnapKit-umbrella.h", - ); - name = "Copy generated compatibility header"; - outputFileListPaths = ( - ); - outputPaths = ( - "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", - "${BUILT_PRODUCTS_DIR}/SnapKit-umbrella.h", - "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/SnapKit/SnapKit.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/SnapKit/SnapKit-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; - }; EA7731AFE124BDEF55FED2A34737FCB4 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8651,30 +8700,6 @@ shellPath = /bin/sh; shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDControlsKit_Private/DDControlsKit_Private.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDControlsKit_Private/DDControlsKit_Private-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; }; - F99B18AE2AE4710965DAF7E5A75C6DFF /* Copy generated compatibility header */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", - "${PODS_ROOT}/Headers/Public/Kingfisher/Kingfisher.modulemap", - "${PODS_ROOT}/Headers/Public/Kingfisher/Kingfisher-umbrella.h", - ); - name = "Copy generated compatibility header"; - outputFileListPaths = ( - ); - outputPaths = ( - "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", - "${BUILT_PRODUCTS_DIR}/Kingfisher-umbrella.h", - "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/Kingfisher/Kingfisher.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/Kingfisher/Kingfisher-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; - }; F9D8108A2B02A75FAF4170D1760CBE68 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8699,6 +8724,30 @@ shellPath = /bin/sh; shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/IQKeyboardManagerSwift/IQKeyboardManagerSwift-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; }; + FE5BD2A4B855150B2985D85E2D662406 /* Copy generated compatibility header */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", + "${PODS_ROOT}/Headers/Public/RxSwift/RxSwift.modulemap", + "${PODS_ROOT}/Headers/Public/RxSwift/RxSwift-umbrella.h", + ); + name = "Copy generated compatibility header"; + outputFileListPaths = ( + ); + outputPaths = ( + "${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap", + "${BUILT_PRODUCTS_DIR}/RxSwift-umbrella.h", + "${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxSwift/RxSwift.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/RxSwift/RxSwift-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n"; + }; FFAFF71C63A68A0848E1569F249322F3 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8755,6 +8804,51 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 29E465ED994721D0267CCB2472022EB9 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 98812A663D328C2F17668DDECB2B74B9 /* Constraint.swift in Sources */, + 742661F9A04B9C63BAD4B4E018021289 /* ConstraintAttributes.swift in Sources */, + 271784DB8C33D2BFA5BF7DD92D9F4669 /* ConstraintConfig.swift in Sources */, + 2800025CA8C3B73D8B0442A4D5941634 /* ConstraintConstantTarget.swift in Sources */, + F997BA7304435360663ACF8799984DA4 /* ConstraintDescription.swift in Sources */, + 472E77518A69C81E5B6960A7FAC3A06C /* ConstraintDirectionalInsets.swift in Sources */, + B1101E423D9DCEC93BB2031D7F846813 /* ConstraintDirectionalInsetTarget.swift in Sources */, + 32EF653078062D745876A8D6114B360B /* ConstraintDSL.swift in Sources */, + AEA12FA3B7A8295C69C1EB7949CD7067 /* ConstraintInsets.swift in Sources */, + 75168B2406BA2AB7869B34D28C0ECB92 /* ConstraintInsetTarget.swift in Sources */, + C8834923612463271592CDC97CB84057 /* ConstraintItem.swift in Sources */, + 596CCE3F586D024E0D5015C072FFCD5E /* ConstraintLayoutGuide.swift in Sources */, + F5AE44F2D9AB1C11741C1DE2AB792979 /* ConstraintLayoutGuide+Extensions.swift in Sources */, + 2C6ACA8B1C2D0E6B32FADB46A25F2291 /* ConstraintLayoutGuideDSL.swift in Sources */, + 287C56709F84B9F1CD23DD269BAF47E5 /* ConstraintLayoutSupport.swift in Sources */, + 81D96C0A07EFBEB8ED7329244B654517 /* ConstraintLayoutSupportDSL.swift in Sources */, + E1415C9189D5B03116F5A45C458E2411 /* ConstraintMaker.swift in Sources */, + BD60FF42CC929FB579AAA79161C78EE8 /* ConstraintMakerEditable.swift in Sources */, + 45A0BF093F35F5689FEF442D8033AAD0 /* ConstraintMakerExtendable.swift in Sources */, + 610539226754D7463554FEED862C6AEA /* ConstraintMakerFinalizable.swift in Sources */, + A96C98E945DE88DF1525CC9AEFD5A8FC /* ConstraintMakerPrioritizable.swift in Sources */, + D0C34559FC8EDFBB08986FC1F4327956 /* ConstraintMakerRelatable.swift in Sources */, + 829916CBF36C96338AFA8CA4157AAE06 /* ConstraintMakerRelatable+Extensions.swift in Sources */, + 3DAD1B7119391968F39EA23187C22506 /* ConstraintMultiplierTarget.swift in Sources */, + 8427D4E7C5F5C3A7213FD7F57B220308 /* ConstraintOffsetTarget.swift in Sources */, + 6D07EC8FE99599CE4E2D00E31BA91704 /* ConstraintPriority.swift in Sources */, + 32E9AA9359679CAF7325414EBB2433D9 /* ConstraintPriorityTarget.swift in Sources */, + 4456B3A0C0C906DB5380BD70DB8072A8 /* ConstraintRelatableTarget.swift in Sources */, + 1B97BB0FB3AD904FD5931485914AD868 /* ConstraintRelation.swift in Sources */, + 1CFEFC2175C9F8BDC9DF06F143AA2747 /* ConstraintView.swift in Sources */, + 49518B9C7ECDF86DB0A650C8ED2694BC /* ConstraintView+Extensions.swift in Sources */, + 950294909D78910972299DC5C9BFA72B /* ConstraintViewDSL.swift in Sources */, + 2F9DCE2C9BF85DC544AB534C22861D2B /* Debugging.swift in Sources */, + 7036E2938D8D94A307669AF551A5EC4D /* LayoutConstraint.swift in Sources */, + E099D77ED3E1A5F226BBE067F3027382 /* LayoutConstraintItem.swift in Sources */, + E490E2CF00F53E9A8B51740AA6213D85 /* SnapKit-dummy.m in Sources */, + B9F155F4F6130F1104D716DD9FDDAFE8 /* Typealiases.swift in Sources */, + A89FA11E82F6C8D3F01DB08D5F00CCB5 /* UILayoutSupport+Extensions.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 2AD137A2E1FC7343733EE6EC866EF34C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -8765,78 +8859,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2C92AF87AEA9474524B56577FCA02A10 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - DB9A7D027929EF74F71978FC8E4AE21F /* DDBaseAttributedString.m in Sources */, - A1DEF2A52B2F86D3464EA211CD8FD588 /* DDBaseButton.m in Sources */, - F8FF5968423EF71CFA0B71EAC10FBFFD /* DDBaseCollectionView.m in Sources */, - 072224DA1C59294F22A034E8F5B2B441 /* DDBaseCollectionViewCell.m in Sources */, - A6BE4D99397CCCF471CC631C990757F4 /* DDBaseImage.m in Sources */, - 8A0B21E6BF5B2E44B79BB9546EF7F27F /* DDBaseImageView.m in Sources */, - E1855C592F7564D116B4E4045698D501 /* DDBaseLabel.m in Sources */, - 908AC7769C1017C0BB645138A46678EC /* DDBaseMutableAttributedString.m in Sources */, - 4C2D78F95C25A31C60C9B523DEFA2D17 /* DDBaseNavigationController.m in Sources */, - C2E3D13936EC4010EB612F303F335B70 /* DDBaseScrollView.m in Sources */, - BF5CC60C20B34EF56D2BC3B420B65F1A /* DDBaseSwitch.m in Sources */, - 98B94A5E5FE00A5BD3A6B833461D0A7E /* DDBaseTableView.m in Sources */, - 0FF7060D0C281996F5BB46B74207ADFC /* DDBaseTableViewCell.m in Sources */, - F2A75E2BBD114133ECC5B63C575FD6D3 /* DDBaseTextField.m in Sources */, - 6E9CFF84A4911D0010CF676FCC5F81A3 /* DDBaseTextView.m in Sources */, - B2813AD57845A9900DC6231A3682762B /* DDBaseView.m in Sources */, - 2ADB83C7CF04E14F632C39FABDDCDAC1 /* DDBaseViewController.m in Sources */, - 6643E151818434BBCB5D20BF508EB03A /* DDBasicControlsKit_Private-dummy.m in Sources */, - 77D340EE702D19DE31FA1A1E99F3FD52 /* DDNavigationControllerDelegateReceiver.m in Sources */, - 4C1F598F2D3B0EF1A1A20C16A5D0454B /* DDViewControllerAnimatedTransition.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 303B8A3CDE3C31EF8F080455FD140EB2 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 43851601A073C31B1933352BEABD5BDA /* Constraint.swift in Sources */, - 1B66DE64CDDD635DBFCA06DADE240471 /* ConstraintAttributes.swift in Sources */, - 98F8D3DC8C9A32C1F95995CE6EF7D600 /* ConstraintConfig.swift in Sources */, - 51A44A46753219CB3E0996BEE54907F8 /* ConstraintConstantTarget.swift in Sources */, - CF7E7B3F7CFEAA83AC190EE63B5F5215 /* ConstraintDescription.swift in Sources */, - CF5B5AFB5B46F4456347E091136BA349 /* ConstraintDirectionalInsets.swift in Sources */, - ED32FA526351BCAB35C1FFAF13390412 /* ConstraintDirectionalInsetTarget.swift in Sources */, - 9A45DABFD007EA3BA3383E45D6066BB4 /* ConstraintDSL.swift in Sources */, - 83E6942D599D10B74AA8457BACDC9C0F /* ConstraintInsets.swift in Sources */, - CB80DE99F7528C35542B9884FA8A8D80 /* ConstraintInsetTarget.swift in Sources */, - EAF43513DE1A83CD6E5E9F25F147FABE /* ConstraintItem.swift in Sources */, - 8585EE2B4CFC73211A2D8D08ACCD9646 /* ConstraintLayoutGuide.swift in Sources */, - BE7FB93EFDCD3B7EBDCB76AD170A21E2 /* ConstraintLayoutGuide+Extensions.swift in Sources */, - 441E5F3E3ED6811904F96207FFC3A681 /* ConstraintLayoutGuideDSL.swift in Sources */, - 01D98686F4FD9D7496836D3989AD3525 /* ConstraintLayoutSupport.swift in Sources */, - FFC821ACD09A9A9A83BAE110BF438784 /* ConstraintLayoutSupportDSL.swift in Sources */, - 6FAFD661B194069BCA77883FB488E50A /* ConstraintMaker.swift in Sources */, - A8F2E7F3B17E5894401197A17A18C27B /* ConstraintMakerEditable.swift in Sources */, - F49379E8C8E897E12A292823C1C066FB /* ConstraintMakerExtendable.swift in Sources */, - 088FBD5975BB3D0C62BB2D5C9A4513A4 /* ConstraintMakerFinalizable.swift in Sources */, - A0DD98B789E374018F09A4220B4F5830 /* ConstraintMakerPrioritizable.swift in Sources */, - DCA7D023DF870B8B8461FFB6E0DD8A04 /* ConstraintMakerRelatable.swift in Sources */, - 5B6B5857AC119BDFE58F748F6A19BB1B /* ConstraintMakerRelatable+Extensions.swift in Sources */, - 26473D198EB45A2473124E6EA6613844 /* ConstraintMultiplierTarget.swift in Sources */, - 158121D0531F97C7CACAC3C96C1C9445 /* ConstraintOffsetTarget.swift in Sources */, - FD661221071E5188A9549C5D876AEE5B /* ConstraintPriority.swift in Sources */, - 2E8ACE2E6DBE1E4629D5B33C79182C82 /* ConstraintPriorityTarget.swift in Sources */, - DBBE4CD219B97E106B7878A3CC9EDD4A /* ConstraintRelatableTarget.swift in Sources */, - 7800433CAE99BDC6FDAE734B7BCB4889 /* ConstraintRelation.swift in Sources */, - 75A2E216A17F4AF6B23758F0F5188647 /* ConstraintView.swift in Sources */, - 8F51FB8B7D5A75DAF2594983F118250D /* ConstraintView+Extensions.swift in Sources */, - 6494347F049B7EC6FC61F86A4E757BED /* ConstraintViewDSL.swift in Sources */, - D5381939AE952807E8D4A8E6451B9166 /* Debugging.swift in Sources */, - B87F639BA80A12F66656DDAE7C7F8E24 /* LayoutConstraint.swift in Sources */, - 6B5DA39E14AFA54BF0994DB3AC694772 /* LayoutConstraintItem.swift in Sources */, - 0BBDD87E462CDB205C9FD821DDC97D2B /* SnapKit-dummy.m in Sources */, - F2C932808B34226133D47A11A5C28B2D /* Typealiases.swift in Sources */, - DFDE86746C1A9E0021E30FCA86484D84 /* UILayoutSupport+Extensions.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 3364FF6FC5BAA2DDA7C2A5E5FC9561CA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -8904,13 +8926,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5919120A8C25696B8C81639720FF619F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 5967BB8727D249AC6107ABAA82E5549C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -8919,174 +8934,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 657DC62B5A334DDC627CB4C94CCC8F25 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - FD188CF3840B2A11C2D915025A328E66 /* AddRef.swift in Sources */, - 81E52185084B76A2BE6C49F315FCDB62 /* Amb.swift in Sources */, - C6A28917BA21A23F4DE77DD077FE799A /* AnonymousDisposable.swift in Sources */, - 1897843962F8119EEF09C165977F8025 /* AnonymousObserver.swift in Sources */, - C1A5B1E0AB911C231477DDE3C44E6975 /* AnyObserver.swift in Sources */, - F7E5AE939FBB8BA5BE0E71423C99A9E4 /* AsMaybe.swift in Sources */, - 117B71126AAF80FFE5D5DB8F8D787132 /* AsSingle.swift in Sources */, - 2852F14FA13748CAE8C0D6F59D5EACFF /* AsyncLock.swift in Sources */, - 653CDA931425BC102ACA70C32819CD11 /* AsyncSubject.swift in Sources */, - 9DD4D72D2E9711B66B6B471293D5D700 /* AtomicInt.swift in Sources */, - 4C83474F88E637BABA6D0FC1ABBD36BD /* Bag.swift in Sources */, - 7899DDE84093B31ED54B226BB1F518BE /* Bag+Rx.swift in Sources */, - F2D8FF9B209E2BE68DB49BFA8E42D809 /* BehaviorSubject.swift in Sources */, - AC13DBC66A575418403E2514C2D583AD /* BinaryDisposable.swift in Sources */, - 7CAD2C0EC229A92286D2C1383D25F28A /* Binder.swift in Sources */, - C99C37A29156C480A0CC30ABB654108B /* BooleanDisposable.swift in Sources */, - 712C6602ED4B0CE3766C7B1D0364D0D1 /* Buffer.swift in Sources */, - CF9F54F1BC6193B7A48B6EA1780F4E5F /* Cancelable.swift in Sources */, - 55681689216EC4EE381D1373452F586C /* Catch.swift in Sources */, - FCDEA62D8D608D9431334DF31F267EBC /* CombineLatest.swift in Sources */, - 184D3A203605E4AE7E69729F271C8574 /* CombineLatest+arity.swift in Sources */, - 9EA0E7C2A9D39A5D990E78AA978D757F /* CombineLatest+Collection.swift in Sources */, - 81AF1CC864FAA4F183F389DF45E31B77 /* CompactMap.swift in Sources */, - 815275DCB23E972B3FD5979BBE77CB0F /* Completable.swift in Sources */, - B8A10165BCEDCD996E93E1E5B5F78EA1 /* Completable+AndThen.swift in Sources */, - B35EC7EDA03BEB3F304FE1D095C31EAD /* CompositeDisposable.swift in Sources */, - 50CE790313543FF62160F5B881C45E52 /* Concat.swift in Sources */, - 26477377CB3C1642B33BCFA030ADB59C /* ConcurrentDispatchQueueScheduler.swift in Sources */, - 0D51C9109BCE3C65B7887157573CAFB6 /* ConcurrentMainScheduler.swift in Sources */, - 2EB584B7820D5A65FE8F0C0BB5113946 /* ConnectableObservableType.swift in Sources */, - 3ED0A4291D25D0638856D988C3ED44CB /* Create.swift in Sources */, - E0023BF02BEDC30A443EA6FF2677CD45 /* CurrentThreadScheduler.swift in Sources */, - DE743B184A49FBCB4E9A4C7EDB45ABDE /* Date+Dispatch.swift in Sources */, - 34982A37330D9AD32085314C583123E2 /* Debounce.swift in Sources */, - 458F3F6A6624C1F3A7AB2ACCBA43C04E /* Debug.swift in Sources */, - B2CA9EAB1E2C6365941AEC9856B013A5 /* Decode.swift in Sources */, - B0EFE5EFD87325E5A2FBB1F31304BFB7 /* DefaultIfEmpty.swift in Sources */, - 6C2F2ECFF4586C9C630A06CA7245268A /* Deferred.swift in Sources */, - 8EA243E4EAF07A43D187BB9E6023B5E4 /* Delay.swift in Sources */, - 7C372E51120A6B4C8839D5B67723E7F6 /* DelaySubscription.swift in Sources */, - 0EEC1C926E6B4C5F97C48A427ACA0256 /* Dematerialize.swift in Sources */, - 057FD0DDEA34EAB96C099A12DAE819F3 /* DispatchQueue+Extensions.swift in Sources */, - 201DDBF5212C5562804A82B979CEF3B0 /* DispatchQueueConfiguration.swift in Sources */, - 3063BE33DA99913CC2E0FCC44B2CF19E /* Disposable.swift in Sources */, - 9D0A6F61D6C4E26858426A5C07D5702E /* Disposables.swift in Sources */, - C601F2D881A256C716F2648F56178312 /* DisposeBag.swift in Sources */, - 9996F8341E78E994720A57973B8F96B3 /* DisposeBase.swift in Sources */, - A85F87F76994AABF1A998086BFD092B2 /* DistinctUntilChanged.swift in Sources */, - 856298055AD0D85195CB2A081508EA87 /* Do.swift in Sources */, - D0F860346DCC4231EBE870588325DBA2 /* ElementAt.swift in Sources */, - E2327F7C8F271B1433D5E58913D81D48 /* Empty.swift in Sources */, - CF45A291720054D8CF244DA694D1A72E /* Enumerated.swift in Sources */, - 46150F571AB8B8C37ABD6D3A04BBE786 /* Error.swift in Sources */, - 233C15B48EE22F337D42F1899E8609CA /* Errors.swift in Sources */, - C8CEB275BD154011A95400571B810344 /* Event.swift in Sources */, - A232C6F6CB1F5D59CAF0EA356AEA6E90 /* Filter.swift in Sources */, - 5B5ABF4903443EAE2989376F637B411E /* First.swift in Sources */, - 2D4A922D913D6FF29D89DB2348B2867D /* Generate.swift in Sources */, - 8C0CC93974FE5308329A727AC1BB0073 /* GroupBy.swift in Sources */, - 7772F0679B865D3D92C4271257716D11 /* GroupedObservable.swift in Sources */, - B4B569842D524A7B924119769888BF00 /* HistoricalScheduler.swift in Sources */, - F644D969727A6F6EACA55872BC11C602 /* HistoricalSchedulerTimeConverter.swift in Sources */, - 0BB1D0BC2DEF4750560B8B8C29347AE5 /* ImmediateSchedulerType.swift in Sources */, - B9FF1535233685F95D47DE8B94EE4823 /* Infallible.swift in Sources */, - 9247A714B110972A3ED560817C307E70 /* Infallible+CombineLatest+arity.swift in Sources */, - C1E965AB2BE01579AB5F2FFD754EC2E1 /* Infallible+Concurrency.swift in Sources */, - 83C8F1C636B757CB5FB662326BC3BEF1 /* Infallible+Create.swift in Sources */, - 02F411B1B3CCF0DBE8FD86A26A8B04F3 /* Infallible+Operators.swift in Sources */, - 0EA9A8D660981135C848C6219A40C608 /* Infallible+Zip+arity.swift in Sources */, - CF830BDC0F7EE4F65E51DD71A1EF5C58 /* InfiniteSequence.swift in Sources */, - 479D3FA9117A1388E094BEE1B11F5A00 /* InvocableScheduledItem.swift in Sources */, - 7FD5933A76D02D235B287A8133624209 /* InvocableType.swift in Sources */, - 30ACD1CAC78C8E43E1D890E24250037E /* Just.swift in Sources */, - AF4B0B8462B4A9C038551611E9381927 /* Lock.swift in Sources */, - 1828512CAB450BD1353714B2EB323DD9 /* LockOwnerType.swift in Sources */, - 45B5C890DFD9AE048E438D0D73698AD3 /* MainScheduler.swift in Sources */, - 489908D8944C17F469CB8F014D017737 /* Map.swift in Sources */, - 361F5D03E21DFB0910B98350786B9CAD /* Materialize.swift in Sources */, - 841CBECFA7ACFAE2626EC33AF8D12DA3 /* Maybe.swift in Sources */, - 141FFFBB94FD368572C68D08981B1086 /* Merge.swift in Sources */, - 0E2F3C0C19AEE421B3E906FDFB8309BE /* Multicast.swift in Sources */, - C0D752CB903CDFB3FED7A63BE83197DE /* Never.swift in Sources */, - ABE943E1E061EB3FF28B66675CC56584 /* NopDisposable.swift in Sources */, - 760D7A5A2409555F4B6A8100ED8A5528 /* Observable.swift in Sources */, - 8AE63F25EF4DF96919B34F6200CC091D /* Observable+Concurrency.swift in Sources */, - 6003B1CC1641FF8CD97FB90F9889260C /* ObservableConvertibleType.swift in Sources */, - DD332B4397E477F1A16267E7BBF5A025 /* ObservableConvertibleType+Infallible.swift in Sources */, - 92AC1557A3995D252D56F1623AA31165 /* ObservableType.swift in Sources */, - 4D80EADCF5A1430DC70053CE31046259 /* ObservableType+Extensions.swift in Sources */, - EEBC7B1DE82D0BD22F0DC8240BF3E8AF /* ObservableType+PrimitiveSequence.swift in Sources */, - 514C90A8CEB16B4435C31EFE4FA0C025 /* ObserveOn.swift in Sources */, - E8D2556CC84B1AF66D9C9E356011FC53 /* ObserverBase.swift in Sources */, - 90AE44530AF990D163D03B9A2563204A /* ObserverType.swift in Sources */, - DDC4249C07DCFE5CCA6EC5BA2D67DD7F /* OperationQueueScheduler.swift in Sources */, - 7656BBC9EAB46594929535E30A03C54A /* Optional.swift in Sources */, - 9AB73C89DFBEAC934BD1632055F07EC9 /* Platform.Darwin.swift in Sources */, - 2E7FA4C58210383BF37D1DD377DB3D32 /* Platform.Linux.swift in Sources */, - 08A914F49C7D34360B7F9D1964BB0C2A /* PrimitiveSequence.swift in Sources */, - 604F48C40E1846040D8B9599AA8DDAE3 /* PrimitiveSequence+Concurrency.swift in Sources */, - 66B8B64583388FBE6401760C7858A1D2 /* PrimitiveSequence+Zip+arity.swift in Sources */, - 0ADABCBC774CA6E66FF86FB47092A1EE /* PriorityQueue.swift in Sources */, - A0E82BA8624982E87F1A4858FD45F5D7 /* Producer.swift in Sources */, - 371357BFE566BB5AD5FCA41408BFDAF4 /* PublishSubject.swift in Sources */, - 87470AF75922B5A56B07AB5F3873F468 /* Queue.swift in Sources */, - 153E3F2914D2FB875F3443930FEB5035 /* Range.swift in Sources */, - 8FEB0C5A22AC36647CDEBDFD50EF4D1B /* Reactive.swift in Sources */, - C1263F184D8EDC9BF36F830E04767BB6 /* RecursiveLock.swift in Sources */, - 93B94DFCA8AFD01BDBF649777F76F42F /* RecursiveScheduler.swift in Sources */, - D09FBE11319A5E8388BDD68201EE923D /* Reduce.swift in Sources */, - 016189BDA510202C76A5B1BF7B6A5C64 /* RefCountDisposable.swift in Sources */, - AE26F9BE5C64F714E5403715219F2F4C /* Repeat.swift in Sources */, - A7671E10F1A28B504D6278BD2B134F96 /* ReplaySubject.swift in Sources */, - D8B3C8F7538E458E4EEB3685D53A83CB /* RetryWhen.swift in Sources */, - EFBC316A4F7D89CEAF073B2183D7E35C /* Rx.swift in Sources */, - A8CA115BC4FA6DD591374434F2CB9827 /* RxMutableBox.swift in Sources */, - 9DA564EDBAF489D48F394032D133FC78 /* RxSwift-dummy.m in Sources */, - 0B5EA67F5625C1C251925DBD16D19EAA /* Sample.swift in Sources */, - 792129D5856B65A190DD61ECDA18F45D /* Scan.swift in Sources */, - F0C845A29857BA67D95320938DC34865 /* ScheduledDisposable.swift in Sources */, - 75CD78F516227CC85280513E37D97F75 /* ScheduledItem.swift in Sources */, - EF734B2A8B68D195D5E48F1AAF436FA4 /* ScheduledItemType.swift in Sources */, - 48F03D8014ED5A233AFB385173FADA7D /* SchedulerServices+Emulation.swift in Sources */, - 03801BED3946B127B44B7B0A50640EA6 /* SchedulerType.swift in Sources */, - 00076F7F7FC7EF9FBD6CAE185C0D359B /* Sequence.swift in Sources */, - EB1BA2C17D5B88DCEB700C359ED93E9D /* SerialDispatchQueueScheduler.swift in Sources */, - 3AE1763557FCC9AAB408164944AE7D77 /* SerialDisposable.swift in Sources */, - 668C9B800095794E5D00090BB2E3CECE /* ShareReplayScope.swift in Sources */, - 60718E42CA3558C8BDFE26DF1E15BFE8 /* Single.swift in Sources */, - 6050BC07183BC67B607892D4570AD0DC /* SingleAssignmentDisposable.swift in Sources */, - C0AE5BA8731B283400A196C6D61D4FA5 /* SingleAsync.swift in Sources */, - 0F08F26232132B227B600740F6A6B18E /* Sink.swift in Sources */, - 8ED80DB15A7A80CBF9142B63CC4C00B9 /* Skip.swift in Sources */, - 506E948BE690B49ADCEA9A3EE5A043E1 /* SkipUntil.swift in Sources */, - 05098446128EFD47C80C47B240106082 /* SkipWhile.swift in Sources */, - 1E99C8CF77A3B9D4FA62CD0F85ACDC87 /* StartWith.swift in Sources */, - 5E2A86C5FEC548B0CB94184D17AA0198 /* SubjectType.swift in Sources */, - 75838A964C379AB1214F4BBCED359F7B /* SubscribeOn.swift in Sources */, - C6E584AFEE56F5FD9A1068C4656961AE /* SubscriptionDisposable.swift in Sources */, - 5206731CF4B978F91579C81477B4FEBA /* SwiftSupport.swift in Sources */, - D592739C746095439E46102478F32461 /* Switch.swift in Sources */, - F4D242168FD37E186352AFC4C6C7B00F /* SwitchIfEmpty.swift in Sources */, - 070EB1BF732BF8062312B76BC4F8F205 /* SynchronizedDisposeType.swift in Sources */, - FABA595A6C8D6A3CC257178E69875D96 /* SynchronizedOnType.swift in Sources */, - 1533C22500FA6467942E955EB154A0A8 /* SynchronizedUnsubscribeType.swift in Sources */, - 5596737D158F381E5905237CAE4C049B /* TailRecursiveSink.swift in Sources */, - D44EC45492408BD59645A5921873D114 /* Take.swift in Sources */, - 7EB3D7C00B056C2849220D2E6DCCCDC6 /* TakeLast.swift in Sources */, - E723CEA64820F783BC387CC644BD5359 /* TakeWithPredicate.swift in Sources */, - 290F4F9FD155CC62A67A003730124207 /* Throttle.swift in Sources */, - A31BB6EDE653AD31B5F518CAAED7915E /* Timeout.swift in Sources */, - 5DAFE0A94768A4F2964685DC73115CB4 /* Timer.swift in Sources */, - F7FD608C3219C74CD7C292DD81DF1090 /* ToArray.swift in Sources */, - BFADC6914E112753B04A785D65369788 /* Using.swift in Sources */, - 5794353EC66FF75CD75D93DAADA787F1 /* VirtualTimeConverterType.swift in Sources */, - 17A3CCD15448B61E7EDCD7636CBB6F2A /* VirtualTimeScheduler.swift in Sources */, - 09510915ADABE84A3F9F88ABC0788029 /* Window.swift in Sources */, - 0D71F7AF3BFA6644CDF45434B3E16510 /* WithLatestFrom.swift in Sources */, - 0272C6180FD5A8546C4C9F446E22CA52 /* WithUnretained.swift in Sources */, - 1B7C34F58BDEA9A37638DCD0CFFF372E /* Zip.swift in Sources */, - B4338C7798751E0AF5817E0B5BED00ED /* Zip+arity.swift in Sources */, - 994ABAEB49E609232F886E728E605586 /* Zip+Collection.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 6CAE4326F0042B0C370F9488D5D5BC2E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9238,79 +9085,171 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 83AFF7AD71DD0183A8B6E47D4CEA1041 /* Sources */ = { + 917531F1FC7ADE7E1E8979E7E87114FC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8B9592B135BB95A652FDD5D6A138E309 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 04C1C9A7B77DAF8FAE55198F58EE790A /* AnimatedImageView.swift in Sources */, - 0D700120AD9F3AEA9158F037F6F96EBD /* AuthenticationChallengeResponsable.swift in Sources */, - 50073679A8A48F3B3D270E46271A96A7 /* AVAssetImageDataProvider.swift in Sources */, - 42ECA44A736B2290345EFDB19C3311D3 /* Box.swift in Sources */, - BA9DF997AD1708F66632B1EAED065C6D /* CacheSerializer.swift in Sources */, - 0D95999ED20E2061C3F0EAF58665B455 /* CallbackQueue.swift in Sources */, - 87557570DC30F0D36B82F72429D25366 /* CPListItem+Kingfisher.swift in Sources */, - 29429F6FE86B4D0C4EB810163F77A83A /* Delegate.swift in Sources */, - FA96FDEBFA83DF6F3031728868EC0238 /* DiskStorage.swift in Sources */, - 0D66973ECE298F0B03176744B929B745 /* ExtensionHelpers.swift in Sources */, - 17844989D0D971156822DDB22181F456 /* Filter.swift in Sources */, - C8044163E0088C3DEB33AF0494AB11A3 /* FormatIndicatedCacheSerializer.swift in Sources */, - 479C9D4AE8D55A53F9AA78A89E8F6BF1 /* GIFAnimatedImage.swift in Sources */, - AA3B6FC63BA119574A22F1A5E4B2D411 /* GraphicsContext.swift in Sources */, - 831254EFC2C2C803504469336A8C716C /* Image.swift in Sources */, - 756BF9B8FB680C8BB0B5FC56CD9E0831 /* ImageBinder.swift in Sources */, - 99754E13BE80A3C28E0584AAD52EBE20 /* ImageCache.swift in Sources */, - 7A6935099F0BE481D9827079C0BAD4D6 /* ImageContext.swift in Sources */, - DEC9C47A74763D906441ACA51335B0E9 /* ImageDataProcessor.swift in Sources */, - DB52B199609D88ED1DC3152086B2C490 /* ImageDataProvider.swift in Sources */, - B7CFEA3CD5CD76A848550087D96704FF /* ImageDownloader.swift in Sources */, - 489EF834E28E8BE7EEE1EF4092BAE0EC /* ImageDownloaderDelegate.swift in Sources */, - 61D255732EDAC6C0AAFE209C90F346FC /* ImageDrawing.swift in Sources */, - 2E6E030B229443E964DBCE2C5D4D8B85 /* ImageFormat.swift in Sources */, - CEFA0D6241B04B0202FE23554D156CEA /* ImageModifier.swift in Sources */, - AB9AACA18876CCA22D676EB5CCDB06B0 /* ImagePrefetcher.swift in Sources */, - 30F03503C4D72FD83161AAD32FC45354 /* ImageProcessor.swift in Sources */, - E6DA4613756CFF96F67CFFFCB1BF27A7 /* ImageProgressive.swift in Sources */, - 40B1C6950FEF3F6580E7EA6DB58C191E /* ImageTransition.swift in Sources */, - 66EBF250FBDF17D3ECF9D4727650C6FE /* ImageView+Kingfisher.swift in Sources */, - 8D611286757FD4B06BFBFF1A7BAC8CA5 /* Indicator.swift in Sources */, - FA998928C4B0EF64939641E3D8AD0EFB /* KF.swift in Sources */, - E8E883B441B846E16A567A6D2EE0651C /* KFAnimatedImage.swift in Sources */, - 991A0DF902A0FEB5A27590776F2490CC /* KFImage.swift in Sources */, - 7F71AD73F7405C6B59591FFC96EFCD46 /* KFImageOptions.swift in Sources */, - 0FE99AC4A20A11DAD8254CE931F5DF9E /* KFImageProtocol.swift in Sources */, - 445D52BA058B63171E1CFFA666131CFE /* KFImageRenderer.swift in Sources */, - E3AEA547447761964CF9808FFDECB8C9 /* KFOptionsSetter.swift in Sources */, - 7D11B4B771600E6995E87D41605BFAFF /* Kingfisher.swift in Sources */, - C2881D28B50437D0B1B257A0B7345484 /* Kingfisher-dummy.m in Sources */, - 1E708EE46A253702C0D576DE2158F7FC /* KingfisherError.swift in Sources */, - 9BA823A93C1EECD228FBCE997B9BFFD0 /* KingfisherManager.swift in Sources */, - 35A75545A9493BBEC99CA5D8F436E5E3 /* KingfisherOptionsInfo.swift in Sources */, - 66B230DF4FD3A8ED74F8876F6F347D5B /* MemoryStorage.swift in Sources */, - C002C177911AA8E76F7D3BB08A4C5CF3 /* NSButton+Kingfisher.swift in Sources */, - BC4AA0D7FF96AAC65A55B06DF5429CB8 /* NSTextAttachment+Kingfisher.swift in Sources */, - 0ACCBD2441FFC82B8D71A6C57AD19056 /* Placeholder.swift in Sources */, - 399BF4D667A42A277E91597E89A3CBF0 /* RedirectHandler.swift in Sources */, - 2AF5544BA37B5DC3132223853D6AF9F1 /* RequestModifier.swift in Sources */, - B0282842A0D7BB8372B6187459D6991D /* Resource.swift in Sources */, - 2A85B7D163D77E4B211737D77E073FC5 /* Result.swift in Sources */, - A5E551E635C6E43111A80BFB486E8D64 /* RetryStrategy.swift in Sources */, - 4FB78B49FEF2C50EAD5A5F7761001E02 /* Runtime.swift in Sources */, - 11CF696DFF5D545524A892F94B283945 /* SessionDataTask.swift in Sources */, - 544ECC3E14638E1FDD60FDED6E71A5C0 /* SessionDelegate.swift in Sources */, - CD5C013284EAF371ABD1ACBD0F7C8ECC /* SizeExtensions.swift in Sources */, - 09DD90A8AE097EE378F7B8F66A2CDAF3 /* Source.swift in Sources */, - 21EA2ECEEFE94D739EE9276D46A3E57E /* Storage.swift in Sources */, - 9DF38D10CE02A3D59E7B798D8A0B7153 /* String+MD5.swift in Sources */, - 81FD4731F5CE69DB93A7845FF2BFE6A7 /* TVMonogramView+Kingfisher.swift in Sources */, - 315565D4480169AC96069B97EE6BB0A9 /* UIButton+Kingfisher.swift in Sources */, - 98B5767E80EAD8302FD4E0A3A24D77E0 /* WKInterfaceImage+Kingfisher.swift in Sources */, + 7AC755AF8DE9EFC8CDD4BD299FDC3EC7 /* AddRef.swift in Sources */, + E47049584BFDDD695E32A106A44E14E4 /* Amb.swift in Sources */, + 7B3B665575D99882A976F78F8D4E6430 /* AnonymousDisposable.swift in Sources */, + 4186F0298C3AB7690171B1F6A08DFA6D /* AnonymousObserver.swift in Sources */, + 9DC7E5A3ABF83D07890CF86F7CAFF76F /* AnyObserver.swift in Sources */, + 2904F4C9146DCD317E8FB54337D18675 /* AsMaybe.swift in Sources */, + 0B3FC7F246E8FE5D8463D709020BF65B /* AsSingle.swift in Sources */, + 2D82A39ED64BC8D7B70ECB904C0457B8 /* AsyncLock.swift in Sources */, + 0A0138FC6C218F4367637FE7B44D1C97 /* AsyncSubject.swift in Sources */, + E8A52F0E687564B42DF8772734F36CFB /* AtomicInt.swift in Sources */, + F7C6CD8D89208E53B6AFF9418C031654 /* Bag.swift in Sources */, + BFFE66BC53D05A33A8D6D55B241932D9 /* Bag+Rx.swift in Sources */, + 70B86F1462DC649BB3358548B0597F0E /* BehaviorSubject.swift in Sources */, + 98E3362C6E28A5E746057D0C730B4F78 /* BinaryDisposable.swift in Sources */, + 53B907F77970AA31B73781B9667C3353 /* Binder.swift in Sources */, + CBC75F96E911A47F87F11F69CDB97249 /* BooleanDisposable.swift in Sources */, + BA54F92D2FBB38606D79D8D7E274C347 /* Buffer.swift in Sources */, + 3598D5C2996C3171FE99FA07BDFEE3AD /* Cancelable.swift in Sources */, + 87E993683F982F032074BA4BE5AF188C /* Catch.swift in Sources */, + 5A7829CB0CB6A5E22E3193BE0A9E2F10 /* CombineLatest.swift in Sources */, + AE589F1D76180D196955D466E49CD34A /* CombineLatest+arity.swift in Sources */, + 014CC37B1AE6B3C4274F5B6F58956CA8 /* CombineLatest+Collection.swift in Sources */, + 2BA709D312C8AB728557631E34DC3A02 /* CompactMap.swift in Sources */, + C9C37B90DD7C43E77E7266024480946B /* Completable.swift in Sources */, + 8BAB069322B651184A26AF000100C0C0 /* Completable+AndThen.swift in Sources */, + 701F943238020231726C391F87955533 /* CompositeDisposable.swift in Sources */, + 100D4D5DD199A11B072C196D149244BB /* Concat.swift in Sources */, + 91FCE1CA81359383AEF001658E50D7BD /* ConcurrentDispatchQueueScheduler.swift in Sources */, + D3BF99356C4350E9C0917D208DDB7BE6 /* ConcurrentMainScheduler.swift in Sources */, + 9D47E92F42AF3C13A22FAAADFD2A7CCB /* ConnectableObservableType.swift in Sources */, + B6719944F5D85EF9DD63918F3D798E2A /* Create.swift in Sources */, + 8D91A4FAFA56CC0096F440A79E23C563 /* CurrentThreadScheduler.swift in Sources */, + CF6FA0C36CC64F5F75DE9891EA35E3BE /* Date+Dispatch.swift in Sources */, + 199F8E1DC0E051C080DDE80B724F5BB6 /* Debounce.swift in Sources */, + C3B349F7E8B2EBB7C29C0EA61DB7DC41 /* Debug.swift in Sources */, + A1EFA95286CBFC522943E64BB62A4C8B /* Decode.swift in Sources */, + D9163232B9C9B3F731A0EBFCC2B784F5 /* DefaultIfEmpty.swift in Sources */, + 9A893B4380DC4281EEB552683E919CE4 /* Deferred.swift in Sources */, + F8E8481DC501D1D03DAFCE40C64C4E09 /* Delay.swift in Sources */, + A87FF51F14816F591D83FCB82FC88E61 /* DelaySubscription.swift in Sources */, + DA4B0B4FD3FA28D628CE74320B65AEA2 /* Dematerialize.swift in Sources */, + CD7C21207441D5C25CC975DFF5C24DDB /* DispatchQueue+Extensions.swift in Sources */, + D1671DAD9BFCD26BD4016BA0C767570A /* DispatchQueueConfiguration.swift in Sources */, + 7FF4BB1718C550C6AAAF11D840EC96B5 /* Disposable.swift in Sources */, + 15CAF31F4E57277B940CB57848322520 /* Disposables.swift in Sources */, + 3A486A9A0353C0C9DDFFAFD58E1A46B8 /* DisposeBag.swift in Sources */, + E52F5D4F79AAA4C07CA8474FEF5294AE /* DisposeBase.swift in Sources */, + ECBF5772C6929483A777D2ABF40AED8E /* DistinctUntilChanged.swift in Sources */, + 14A1F63D6AF3028EE2422629C911C4EF /* Do.swift in Sources */, + CA2317047F9D4F9927B24DEF78E45817 /* ElementAt.swift in Sources */, + C565B73484DF9F74C797013CBC912298 /* Empty.swift in Sources */, + DB98A6ACF10EAA99B791577C76CB5773 /* Enumerated.swift in Sources */, + 5D31FB31689E3394BDE2B17F603C4BE3 /* Error.swift in Sources */, + 93FB152FA405B450B9D884DB4634EF60 /* Errors.swift in Sources */, + 7C48DC05AF673CA09DF8F9FA506E4B11 /* Event.swift in Sources */, + D2426C96E32377FDA4A68BF4FBB47778 /* Filter.swift in Sources */, + 77487F48DDC6D1D2BE91E2DF751D15FB /* First.swift in Sources */, + 0CFFEE63D0C2385B1AF6401BB07A9316 /* Generate.swift in Sources */, + A5F8A3820B26F39E6EE001FE851DE101 /* GroupBy.swift in Sources */, + A47C0FCC66F7B07586562213C30B0AD9 /* GroupedObservable.swift in Sources */, + 3B46EA5C8F709515518D2DD372F672F6 /* HistoricalScheduler.swift in Sources */, + 0C33BA4D018FE8CC8F3DF7FA0E8DB521 /* HistoricalSchedulerTimeConverter.swift in Sources */, + 1B1F44C59F29D08B990B0369C15794E0 /* ImmediateSchedulerType.swift in Sources */, + 28A535FACB6249A704339D22C8C65CE9 /* Infallible.swift in Sources */, + 5A1AD56EBADCE881F1C0007367E45623 /* Infallible+CombineLatest+arity.swift in Sources */, + AEB45908E4054579429AB2D4A4BC26C7 /* Infallible+Concurrency.swift in Sources */, + DAF1846BD3040FD9243541103B091C04 /* Infallible+Create.swift in Sources */, + 8622DF1F350A8568DA4171CA22BA27A2 /* Infallible+Operators.swift in Sources */, + C193A817DD3D83E35868FF5647E29ED1 /* Infallible+Zip+arity.swift in Sources */, + 851EF2F45A695756076F421902781130 /* InfiniteSequence.swift in Sources */, + F54C37C891B435E2517D3BF4070EA4E6 /* InvocableScheduledItem.swift in Sources */, + 2CEC2407C7ADAA7A599DA21A267E0339 /* InvocableType.swift in Sources */, + BB9A04E50F275D205C0FD7B980DB3EA6 /* Just.swift in Sources */, + C46AB4B5FA5EDE3E7F5AFD4FC5421DC8 /* Lock.swift in Sources */, + 429E0C154771D9967586AAC6C27396F1 /* LockOwnerType.swift in Sources */, + 56D6B0BDFECB3D87E2A6E86FDB6E75ED /* MainScheduler.swift in Sources */, + 8D8B7A1AA742675DD13B659F2E7AA3A2 /* Map.swift in Sources */, + 1DB58F33DBD7AB68CF77BB0B040E7BC4 /* Materialize.swift in Sources */, + 6CA97610990405B8D1988BC090CA70F5 /* Maybe.swift in Sources */, + 4C952DAC9CD44EFC7E2CA1A53D381341 /* Merge.swift in Sources */, + 36097F1137828C245FBFDC054C8E9ECC /* Multicast.swift in Sources */, + C3797E31E03FBBED0083AE6FDCA41F60 /* Never.swift in Sources */, + 36778CF0D79CC8D72482B0FCF6DA5D97 /* NopDisposable.swift in Sources */, + B4BF0D5087489777B8D1E1D479F9021C /* Observable.swift in Sources */, + DB0A59767308F67501A74778E35B6048 /* Observable+Concurrency.swift in Sources */, + 02A601E285D59BDFE8B45EB5AC46824B /* ObservableConvertibleType.swift in Sources */, + EDB30B0D5165C527F66FC84C8B32C47F /* ObservableConvertibleType+Infallible.swift in Sources */, + 119C1F092A68BC14DBFD507EC5A7557F /* ObservableType.swift in Sources */, + 9BE22C2FA9AFEA5C7ECC33D85C33F54D /* ObservableType+Extensions.swift in Sources */, + 15359884053591D622EB8F7F551607FE /* ObservableType+PrimitiveSequence.swift in Sources */, + 03AA859D9A2A10D803C64E13BC3D9291 /* ObserveOn.swift in Sources */, + 14ED3E71A7F88D7262A77C54D7989308 /* ObserverBase.swift in Sources */, + 01256FB5954BAF7C164BABA7AE997A5D /* ObserverType.swift in Sources */, + F963C2EF8D3C0FF9A4BF1B11E6D584CE /* OperationQueueScheduler.swift in Sources */, + DC9A6C1233BC9862EB83BD8512A17575 /* Optional.swift in Sources */, + CD0270922564959FB09AC07A153B6DC9 /* Platform.Darwin.swift in Sources */, + 016EFECE55C27B0D75CA24E03D4979CF /* Platform.Linux.swift in Sources */, + 2B4481AD1565823F8A7EC0FF2E9C0C34 /* PrimitiveSequence.swift in Sources */, + 42440FF6192AC7453BF47A3EE8BCB441 /* PrimitiveSequence+Concurrency.swift in Sources */, + ED1968185CE8C94B18C6E5EF354022FE /* PrimitiveSequence+Zip+arity.swift in Sources */, + 3080EA61B99D41BDC271BC34BFB221EF /* PriorityQueue.swift in Sources */, + 5FE99EEDAD6DC2CB5DEDC85ABC4D7A54 /* Producer.swift in Sources */, + FBDCDDC1AD0788E6439EA03992F1ECE4 /* PublishSubject.swift in Sources */, + B583A5C42836430A3946648726608081 /* Queue.swift in Sources */, + D64E70E5473E07879E1629F1173AB6BC /* Range.swift in Sources */, + 630DB6CBB672E5EE2F1061A2845BC1CF /* Reactive.swift in Sources */, + 4158B3008489630CBB4D4B2074E52DFC /* RecursiveLock.swift in Sources */, + 496F048374EB9206466B405E01A777C1 /* RecursiveScheduler.swift in Sources */, + CF1B6D7CD5C90B5F543FA2FD2CC74389 /* Reduce.swift in Sources */, + 7E085C11AD19536AA42889432EDE77DC /* RefCountDisposable.swift in Sources */, + 7596C15534EA276570E026C42865F21B /* Repeat.swift in Sources */, + 663201DCD5FFBC4237089666A0ACC960 /* ReplaySubject.swift in Sources */, + 0FDE6D82E70CD1A99D4D4A053A59DB92 /* RetryWhen.swift in Sources */, + 77F07E9D4343A887985931120822C94B /* Rx.swift in Sources */, + 66B21E8DA37615C63FB428F32B031DF4 /* RxMutableBox.swift in Sources */, + 06CAAF93BD603D965DFFCBF40352F83E /* RxSwift-dummy.m in Sources */, + 21293E13564D594A09B92A24489E0D53 /* Sample.swift in Sources */, + CF382D42FC811F6FF2CD664311E88E5D /* Scan.swift in Sources */, + 00AD8C7B30995B68AC53AFF16867A44E /* ScheduledDisposable.swift in Sources */, + C08B0DF00EE322E59BABF836426304AB /* ScheduledItem.swift in Sources */, + 28AAB38EDCA038502AF2FB61B64DF993 /* ScheduledItemType.swift in Sources */, + 20D33B8ABD8753D217D9D19DC0F55F48 /* SchedulerServices+Emulation.swift in Sources */, + 294FD6DF96151AA1518E9562127E81A0 /* SchedulerType.swift in Sources */, + 95BB7F9C7C1F5694CEFA71ABDD2F686E /* Sequence.swift in Sources */, + E145D725BD762800F4C4A91DE1FD6350 /* SerialDispatchQueueScheduler.swift in Sources */, + DCE67ABE4B977185BFD4A0092DD23C21 /* SerialDisposable.swift in Sources */, + 688B5DFB7B535B410BF0EC51F1F095F8 /* ShareReplayScope.swift in Sources */, + E39D95FED7F76DEE16019CFAD26ED860 /* Single.swift in Sources */, + 3B36018B578AF6022C312C158910AF1B /* SingleAssignmentDisposable.swift in Sources */, + 5EC8454BAC9ADF00204DAF05E979AD23 /* SingleAsync.swift in Sources */, + 7EB5AC1F7D0363C1A1A731BF22FF24C8 /* Sink.swift in Sources */, + 0B5F5BB8089C5C1DE7CB260F02C404FF /* Skip.swift in Sources */, + E10D81827E90CAC6A4289F11050C27A9 /* SkipUntil.swift in Sources */, + 42B160E9A29EA57557E4B89EBBAC3B28 /* SkipWhile.swift in Sources */, + 9E79B9AB71D2E22A22010F703F330719 /* StartWith.swift in Sources */, + 943988FD00BB2FEB4A1443A9397438A7 /* SubjectType.swift in Sources */, + 42BE318AB9A1CD8EBEDD357FD1087E74 /* SubscribeOn.swift in Sources */, + 6201040F493CAACC4B92F17AF09748CE /* SubscriptionDisposable.swift in Sources */, + A1154695614BCE420D4723615A9BCCE2 /* SwiftSupport.swift in Sources */, + 43BFF9EABBEDACBC120AAA0D0A1F8171 /* Switch.swift in Sources */, + 0580AC71554104A1FF119F08D8012115 /* SwitchIfEmpty.swift in Sources */, + 79E4EE43F84963D70970355C209A5983 /* SynchronizedDisposeType.swift in Sources */, + 8292CAFAFCD95ABA15502DBEEDA00FB6 /* SynchronizedOnType.swift in Sources */, + B7C05B5CA1951F5236D7B3E21956335A /* SynchronizedUnsubscribeType.swift in Sources */, + AC100B99D78C03959BD5E09AFB20FA5B /* TailRecursiveSink.swift in Sources */, + 7EE68BCC3A6E653EB103D0E9FE7010B0 /* Take.swift in Sources */, + 6619B00BA8ACF7B427FE4270402A554D /* TakeLast.swift in Sources */, + 9F2B55965C0D590FBEB138361DAB40C6 /* TakeWithPredicate.swift in Sources */, + D9835EECA7009F603B7BDB0DA30AC7AE /* Throttle.swift in Sources */, + BB70B6C53AF7E45FBA71C64AAEBE91D5 /* Timeout.swift in Sources */, + FEBB46CA0C8F7DD486C7E979531DA4E3 /* Timer.swift in Sources */, + 99CEEC2F037650AB0C299FAC62DF2701 /* ToArray.swift in Sources */, + 26A272A17525A4C031B070E5E5BC1C07 /* Using.swift in Sources */, + 4D8BC7963996C34C270A8443971D5E9F /* VirtualTimeConverterType.swift in Sources */, + 67BB989B3A4B3A8549F47944FC68A794 /* VirtualTimeScheduler.swift in Sources */, + 4AA246FF6A7BE3CDEDABB2438AE8C1E9 /* Window.swift in Sources */, + 0249EC29123B5E4461C419AA9BE0E2C4 /* WithLatestFrom.swift in Sources */, + 267AAADE4AF59BA04B0CBCA0B52AE81A /* WithUnretained.swift in Sources */, + F731641647F916F19E65AF5641896E06 /* Zip.swift in Sources */, + 38F97424C7943C32EBF2D74EC75B1C6B /* Zip+arity.swift in Sources */, + 677C7ECF16B4E56A0BD0627B02BB4DEB /* Zip+Collection.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9441,19 +9380,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9948E3AE6AC257C0A7E73775128578C3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - F34391BF37E63D57CEA662EAC7219C4A /* BehaviorRelay.swift in Sources */, - 8467E270758278816859E50FB4E3DC73 /* Observable+Bind.swift in Sources */, - E5896247675299D7FB31F1DA59CF2B0D /* PublishRelay.swift in Sources */, - 2AC50A41091AEE3ABDD75F734B40BFB8 /* ReplayRelay.swift in Sources */, - A33FEE4E2465C24F12812BEB5FE68CA4 /* RxRelay-dummy.m in Sources */, - EF4C40146D51A30A61FDBE88FA9BD780 /* Utils.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 9A67D3D563E092B8210166A26941495A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9463,6 +9389,19 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 9E427219D7B2BC2CDFF0BC366803EF09 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 7EEA9941057BD1DB88F9096AEA9A6998 /* BehaviorRelay.swift in Sources */, + 865E103E2674039A8A079D14E7859F74 /* Observable+Bind.swift in Sources */, + F6C5AC35B9ECC483F45F294038966103 /* PublishRelay.swift in Sources */, + 05A27819D0B99E20C63060A28C9BA058 /* ReplayRelay.swift in Sources */, + E97249855F88A9C0CF8C00620F730480 /* RxRelay-dummy.m in Sources */, + B7A6F230A55903447B0384E2326538C8 /* Utils.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; A867B0D35CB3B819A5071748F7742866 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9604,6 +9543,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + C83E1019D48381E948DB4E7B34428C42 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; CAB25926C077F5422787F0F64A3A79ED /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9710,6 +9656,114 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + DE42DB55D1B37E2E15291C599A9D1025 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0CBD3A2BF41E73A3CA377911EAAF7332 /* CALayer+DDCategory.m in Sources */, + 7F39A7BE23BFE49E5E14F42CCD472C6B /* DDCategoryKit_Private-dummy.m in Sources */, + D968A505BB23746E1C0F0BC941975346 /* NSAttributedString+DDCategory.m in Sources */, + 41259A7B973C283E3F4E3BBF14B0F78F /* NSBundle+DDCategory.m in Sources */, + 348B741A384874D6B657CCDEEFA5D29E /* NSMutableAttributedString+DDCategory.m in Sources */, + 23595E83E510E3CDD5C5856DD3458FE9 /* NSMutableParagraphStyle+DDCategory.m in Sources */, + BFC08D9DD76862B19AA1174A6C73A080 /* NSObject+DDCategory.m in Sources */, + 4135C25FE2CF12EA8109A063FE9142FC /* NSThread+DDCategory.m in Sources */, + 4761FA80CF230CF8734D72E0440E9BF5 /* NSURL+DDCategory.m in Sources */, + 212E24D0326544B2078F7A8975C72D9C /* UIApplication+DDCategory.m in Sources */, + EF2F9EACC00057E58F231158C65E17F9 /* UIBarButtonItem+DDCategory.m in Sources */, + EB61A88EEE4FBE33623908DAA55492EA /* UIButton+DDCategory.m in Sources */, + 9AD45C50CF16ECCC1D372A4A9356BF76 /* UICollectionView+DDCategory.m in Sources */, + 557760BF625731C3A7932278BB35FD44 /* UICollectionViewCell+DDCategory.m in Sources */, + 29B1535C08EB32851E714DF7746B0B1E /* UIFont+DDCategory.m in Sources */, + 188B295D067C3671C67D691335D71365 /* UIImage+DDCategory.m in Sources */, + 8E32D023EEFF20C6BB931BB05B302DCC /* UIImageView+DDCategory.m in Sources */, + 57A05078F118CD43899660FA25149375 /* UILabel+DDCategory.m in Sources */, + FE669681BDBF41AE3F0736ABE3CF6C05 /* UINavigationBar+DDCategory.m in Sources */, + 1701E97192C2915A909E0D09BF789635 /* UINavigationController+DDCategory.m in Sources */, + 9ED777C3C0E329619F172812442A9F22 /* UINavigationItem+DDCategory.m in Sources */, + B83BA1A8316C782F3EE9F7B57D1C0CB3 /* UIScreen+DDCategory.m in Sources */, + 5F65CBF2CD17EB2B62728C688CBBEFDC /* UIScrollView+DDCategory.m in Sources */, + 2BEB49D6D0DC6C31AF375F78CC8CF4F7 /* UISwitch+DDCategory.m in Sources */, + 3D5EFD0501E6B4316F1F1C49695D2D15 /* UITabBarController+DDCategory.m in Sources */, + B98A130991A11ADEF21FF9200D5A56B7 /* UITableView+DDCategory.m in Sources */, + 93A2C8A182BB0A1741384B45EA3E8C37 /* UITableViewCell+DDCategory.m in Sources */, + 1D824F2FD6B24A7CD4461775F29515CD /* UITextField+DDCategory.m in Sources */, + DC51E04D6E6EA8A8811C3ED28F59C4DF /* UITextView+DDCategory.m in Sources */, + 37B1639C015AC196E48F0E0643A3E52A /* UIView+DDCategory.m in Sources */, + FECCBE261F33AEC088A20F087809AF6E /* UIViewController+DDCategory.m in Sources */, + 79FEB14451545115D73559F5BD0EA285 /* UIWindow+DDCategory.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E38001EAC60FC28107EBA1C42DFCD709 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 14288F0FD409721FB5D20B8AB4BBD86E /* AnimatedImageView.swift in Sources */, + D2ECB40359766055ECC0892B73B90EE8 /* AuthenticationChallengeResponsable.swift in Sources */, + 8C69BE0B35D7CFB9B2C9B5E9331B9672 /* AVAssetImageDataProvider.swift in Sources */, + FB185693FC50284088613D45DF3252CE /* Box.swift in Sources */, + AC4B6129EFD6CC195B0C9F81F365D223 /* CacheSerializer.swift in Sources */, + CE17D75F6D1B88F797348229EBAE052F /* CallbackQueue.swift in Sources */, + 30AFD9ED03F8A92DD14DBBEC46FA03FA /* CPListItem+Kingfisher.swift in Sources */, + 80DD9B967623276F26A2E2980692D68E /* Delegate.swift in Sources */, + 0420316FC1BCB2037CC6E8FB3E80816F /* DiskStorage.swift in Sources */, + 9FD3756156E6C45847D585118FB35DEA /* ExtensionHelpers.swift in Sources */, + B957F1A6C24D94F95E2E5F23B051B7C4 /* Filter.swift in Sources */, + B06E0BCF82180F5FA9F0B40570A33FF2 /* FormatIndicatedCacheSerializer.swift in Sources */, + DB5AB25E4F191531FB78518C0731E061 /* GIFAnimatedImage.swift in Sources */, + 60E168ADD79EEDE207D885639ADB1592 /* GraphicsContext.swift in Sources */, + 3CD4C48A125B7181256A279656B4C0C2 /* Image.swift in Sources */, + 816CE99FF8B0C05942493FA2D71C8518 /* ImageBinder.swift in Sources */, + 810B91B4F57601D84CB870880153A0E8 /* ImageCache.swift in Sources */, + 8D1A939F9410607CA818E467C232E3C9 /* ImageContext.swift in Sources */, + 62A7047E408CD75F56E689ACB33AF45D /* ImageDataProcessor.swift in Sources */, + 4C7ECC85BAA34F98B6382EA2D8A5F922 /* ImageDataProvider.swift in Sources */, + 335B3E39E54362354732A309234F35CA /* ImageDownloader.swift in Sources */, + 771B2932D63A96D96847343681689231 /* ImageDownloaderDelegate.swift in Sources */, + 3221C0E1F84D9933346539DC210EA33E /* ImageDrawing.swift in Sources */, + 43CBE2BC22C61B5E447F3C68184C3012 /* ImageFormat.swift in Sources */, + 8C7260956D1333BA9D5F6E7100EA783A /* ImageModifier.swift in Sources */, + 5695D3952A71F68EC9405892A5DCF693 /* ImagePrefetcher.swift in Sources */, + C1580B08537F399CFB03A596D6A3CB25 /* ImageProcessor.swift in Sources */, + D3A748F462205A0FAB377AE166400EA0 /* ImageProgressive.swift in Sources */, + 305E3021931A0012C905074FD6EC9693 /* ImageTransition.swift in Sources */, + 7D24A66029F0BE461DF4D6BD574197FF /* ImageView+Kingfisher.swift in Sources */, + 13F2EF9E6B1AD3D1F0F4323697568E34 /* Indicator.swift in Sources */, + D9F89D4B89BE4417FE5756A8199F073C /* KF.swift in Sources */, + 387869C0143B9C53D8BFD20B3CB5A284 /* KFAnimatedImage.swift in Sources */, + 64B5F86CD158D3ACED10047935E65E7F /* KFImage.swift in Sources */, + 97F0C520D9B649AB3B99B1C052DC9810 /* KFImageOptions.swift in Sources */, + 1B6FE64B6F14CEAF4B34421A1820AE56 /* KFImageProtocol.swift in Sources */, + DF1E1A23A18388D51377D470426F495F /* KFImageRenderer.swift in Sources */, + 3FBEBAB3B7DC948385FE1E1A40A91E5F /* KFOptionsSetter.swift in Sources */, + 2FB9C222D3F9831919DD7F1FC0AB6877 /* Kingfisher.swift in Sources */, + FCE0195D7162767F6AC4D175B13F24E7 /* Kingfisher-dummy.m in Sources */, + 8558B2DC90CFD864E52185AE14314220 /* KingfisherError.swift in Sources */, + 81A91B14EF1656BD6A519E36B95D87F7 /* KingfisherManager.swift in Sources */, + CF46E06B619B24CD220401C91AB2FC7E /* KingfisherOptionsInfo.swift in Sources */, + A47A8C0005A34BFE01922670CA77C500 /* MemoryStorage.swift in Sources */, + BF7DEC0A15BD22EAFA001ACBD73DAD90 /* NSButton+Kingfisher.swift in Sources */, + EA26E753C4C87170AC67E76E0D26D91F /* NSTextAttachment+Kingfisher.swift in Sources */, + A3736A9A578BC85F4F901C0265C464E3 /* Placeholder.swift in Sources */, + EB711E86947E555F69122716590BEDA3 /* RedirectHandler.swift in Sources */, + C33E218B5058E13209FEA8BCC2E848FC /* RequestModifier.swift in Sources */, + 5A1795752182FD6DB7740642C58B598D /* Resource.swift in Sources */, + 4749128172D81D74CB561FDEA2CFE434 /* Result.swift in Sources */, + 3ABEB528021F3C74188935D8DC28C1BA /* RetryStrategy.swift in Sources */, + 51AF23F0A29C2AA7C4298FB3B7D96418 /* Runtime.swift in Sources */, + 09B9FCDAD0A714411513728549B3F33A /* SessionDataTask.swift in Sources */, + BCDFC18179E16CBECF61516FE32AC599 /* SessionDelegate.swift in Sources */, + 0BF8984AC682006C663664DC7038EE8A /* SizeExtensions.swift in Sources */, + 0669AADF8ED5F40238C02652ACD4A597 /* Source.swift in Sources */, + 4D3398358467AAD494C169F5D5660FA7 /* Storage.swift in Sources */, + A77F62709291A17392A04BA42918C7FD /* String+MD5.swift in Sources */, + BDB01EFCBD405CBDEDC86AED60564771 /* TVMonogramView+Kingfisher.swift in Sources */, + 7FC3E6E72D14EA33FAE2275C556372AB /* UIButton+Kingfisher.swift in Sources */, + DC05D04D772760CCEE78FFBD245BB1CA /* WKInterfaceImage+Kingfisher.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; E8D9525ADEA0CD4A8CEB0BBD8B14DC97 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9720,42 +9774,10 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - ECCC45FEECD93FEABC170EDDD8162529 /* Sources */ = { + EAAA6AB8A97A769CB6DFED6B356E6389 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CB5B734DBC1880D4CBACFF198A3BAD8E /* CALayer+DDCategory.m in Sources */, - 58B65275D1D71CAD6F90C31279B6FCC6 /* DDCategoryKit_Private-dummy.m in Sources */, - 460726FAEA72E21D26141E4A584E1EA9 /* NSAttributedString+DDCategory.m in Sources */, - 356A09B4801D3710D98D6CAC09E9AF6F /* NSBundle+DDCategory.m in Sources */, - 8E8303059E6569424FBD16600EEDCF21 /* NSMutableAttributedString+DDCategory.m in Sources */, - 88B17205B2AAB6D5631D3B0454523190 /* NSMutableParagraphStyle+DDCategory.m in Sources */, - 84505063AEBCB40D30A5BFCC93539C8E /* NSObject+DDCategory.m in Sources */, - 76C7D273C6E5D59AE6B46FABD80F529B /* NSThread+DDCategory.m in Sources */, - 8AD2950E96CAF68E45461D5BA86964FE /* NSURL+DDCategory.m in Sources */, - A10D8C9880675721C02A9113626E65FB /* UIApplication+DDCategory.m in Sources */, - 474F3D2608AA806A62D858B4D0D25CE1 /* UIBarButtonItem+DDCategory.m in Sources */, - 42EFBF5C9BB24C7EA95085FE56E949BA /* UIButton+DDCategory.m in Sources */, - BF54D47FFCBD3584A405BF570385B1FE /* UICollectionView+DDCategory.m in Sources */, - 0B9987BE8D17570A8C4920E97E2DEB6A /* UICollectionViewCell+DDCategory.m in Sources */, - 75962201E03EB435C7FDDA34DB38C82D /* UIFont+DDCategory.m in Sources */, - 7700D571BD960334CD5930A8580BE217 /* UIImage+DDCategory.m in Sources */, - 8A76F9D3DC5645754BDAA8CAE5A2E993 /* UIImageView+DDCategory.m in Sources */, - D6E1D2D6D57F579BF933DCF68AFEB287 /* UILabel+DDCategory.m in Sources */, - E53A79CDFBD796C4014AC90472E58682 /* UINavigationBar+DDCategory.m in Sources */, - A54741718F7A005AC6AC2FEA7EE692CD /* UINavigationController+DDCategory.m in Sources */, - 14DB446D107E027E0C24684EBDB0731E /* UINavigationItem+DDCategory.m in Sources */, - 7BB4A07C23154788374B2921EC730161 /* UIScreen+DDCategory.m in Sources */, - 5230D1C53ACB224C4C1063D79629F995 /* UIScrollView+DDCategory.m in Sources */, - 51A04091CC13E866AB53A68044B26D47 /* UISwitch+DDCategory.m in Sources */, - D9A5F27AD02A968AA869E8CA5749686A /* UITabBarController+DDCategory.m in Sources */, - C6E51067DBE86DDC81E13F3511696601 /* UITableView+DDCategory.m in Sources */, - 87604C2B9F5FB788F26D7D2AF954710E /* UITableViewCell+DDCategory.m in Sources */, - 569DE30FC8737CD824BD33F9EEA60221 /* UITextField+DDCategory.m in Sources */, - F6DDBF049BAE62A23772170D51EEEB91 /* UITextView+DDCategory.m in Sources */, - 1CC771654A12EEC8438805520AF1F7F7 /* UIView+DDCategory.m in Sources */, - CD267F10F551CFAE647CEA8056A31E42 /* UIViewController+DDCategory.m in Sources */, - 7D2B3960EAADF509725141DC9EB3FD37 /* UIWindow+DDCategory.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9782,6 +9804,36 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + F623158EE9B44DBBE9E3438E4A6F4A7E /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 218A594F4B538DBFF56BDDBFA62906B3 /* DDBaseAttributedString.m in Sources */, + 2508C13A6D783495CAA9FEF848ED3408 /* DDBaseButton.m in Sources */, + 53A8449A2AB1430B1001ED45223DCDCA /* DDBaseCollectionView.m in Sources */, + 949E8D2BB740EADFE39A5D66DF0612E8 /* DDBaseCollectionViewCell.m in Sources */, + 69C303549B8C8DC6586AC4D570FAD12C /* DDBaseImage.m in Sources */, + 1874DC3D934C7225FFDF0965A4EDC46E /* DDBaseImageView.m in Sources */, + A6D743CD31F8BE6B743622F1EE837BE1 /* DDBaseLabel.m in Sources */, + F4BA1100C7409E860A413BC0F2B3AEA4 /* DDBaseModel.m in Sources */, + 1DF58F80AC0A6C167AFCF76ABE39A9D2 /* DDBaseMutableAttributedString.m in Sources */, + 5B61B135DCE322C883A69872A356F596 /* DDBaseNavigationController.m in Sources */, + 512135578BA3F99913265843C0638642 /* DDBaseScrollView.m in Sources */, + 365DE3259C4106D8E3AC066DAEEB4720 /* DDBaseSwitch.m in Sources */, + 6DF8E7C3E612645CB0F3523DAC8E1F33 /* DDBaseTabBarController.m in Sources */, + CE4C9BD43001835DFA0CCA47681C8ACB /* DDBaseTableView.m in Sources */, + 6FA29C0A343CD009CAD5FBB50810D9D4 /* DDBaseTableViewCell.m in Sources */, + 33E6C702602A0ABE4B9FF00731487E49 /* DDBaseTextField.m in Sources */, + 44C35B8EF128278FA7F9F22C82379DEC /* DDBaseTextView.m in Sources */, + 63A77C21EFD53EA8A7E3B79ABF59E2F7 /* DDBaseView.m in Sources */, + 6526EAD8B470F52119D2C453861C687D /* DDBaseViewController.m in Sources */, + 90C1CA69717100719BCA2413895F4E30 /* DDBaseViewModel.m in Sources */, + F3297C24B7F6D6AA6679633470AFD387 /* DDBasicControlsKit_Private-dummy.m in Sources */, + 7AB8E1F03D7085D0F1CF9CA55F17E9FB /* DDNavigationControllerDelegateReceiver.m in Sources */, + B912045CC6351F6B403B2BA16E0FA3CE /* DDViewControllerAnimatedTransition.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; FEADC5AA31171CC91CC5DAEC030F2B0E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9864,414 +9916,414 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 02E54B971D32F2D86F44EF092F9331C9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDLogKit_Private; - target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; - targetProxy = 83B7A83B569670CA446315839D2ECDFA /* PBXContainerItemProxy */; - }; - 04E18205DE5C8E1DECA8DB6390B8D878 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Kingfisher; - target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; - targetProxy = 6D8F3621032724713B1B6D1F43C944B5 /* PBXContainerItemProxy */; - }; - 054FE7832F10350B0DD1DFD2A1CA7541 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDProgressHUDKit_Private; - target = 387C7767E705FE68450F97CBA4348CC0 /* DDProgressHUDKit_Private */; - targetProxy = 2AF77DDC770F5B5B41240E66B9E86CD0 /* PBXContainerItemProxy */; - }; - 084FA2E2C1D7329AED644055731FA510 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapNavi-NO-IDFA"; - target = E94C558142469C11984D67CA883BAB1F /* AMapNavi-NO-IDFA */; - targetProxy = C1F125237D2E8503BA057A60A9E2E09A /* PBXContainerItemProxy */; - }; - 0C8F81B74C1AA244259F85ECE191DDBB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDZFPlayerKit_Private; - target = 2864923095274ACF5E5F99312F360AEB /* DDZFPlayerKit_Private */; - targetProxy = 7D02AE2C00D38AA0EAA944E3190FF257 /* PBXContainerItemProxy */; - }; - 0F6980B9679A19576A86DA140B2D8E2C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxSwift; - target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; - targetProxy = 3B283DDFA0D6ACA1656F4BAD8F338BF1 /* PBXContainerItemProxy */; - }; - 1360CA6B889FAD9B5C9D0D9C513CCF5C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapTrack-NO-IDFA"; - target = 2160840D78FCB958CABE1B88300E38C5 /* AMapTrack-NO-IDFA */; - targetProxy = 5A63985DC51703F223290FA5E891DC1A /* PBXContainerItemProxy */; - }; - 149E18125620C9AC4AF1E41DE673F0F8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxCocoa; - target = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6 /* RxCocoa */; - targetProxy = A99610F5D93EFED804FBE3C2705EEB88 /* PBXContainerItemProxy */; - }; - 1965C64FF06A8AE7464A52FD01467321 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SnapKit; - target = 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */; - targetProxy = 7581E968FBF954223C53C823B99ED66D /* PBXContainerItemProxy */; - }; - 1B7CEC026739ED1B0293411D2F67D213 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapLocation-NO-IDFA"; - target = 4BD4E22D3419D68A85BDD6119CB37C6C /* AMapLocation-NO-IDFA */; - targetProxy = 6D93DCB38361D2D4EFAB1178073F92A8 /* PBXContainerItemProxy */; - }; - 1DE044D2F05D823746C5B12C038D7AD7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapFoundation-NO-IDFA"; - target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; - targetProxy = 9CC72F880FEC87F0963E8E45200A0CC1 /* PBXContainerItemProxy */; - }; - 1E2CD7BE0D1F863FA257AD401A3296BC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDUtilsSwiftKit_Private; - target = A8B712B20F60AB02004557B884A28FD4 /* DDUtilsSwiftKit_Private */; - targetProxy = 54787061518D3E2801C615FEF8F6D033 /* PBXContainerItemProxy */; - }; - 2027A16D9B42908782167F8E9A0E8DBE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDMAMapKit_Private; - target = B41F58F2856AB275B4CF75F359937653 /* DDMAMapKit_Private */; - targetProxy = A63D196986F0642D2A9E29052785B731 /* PBXContainerItemProxy */; - }; - 216CCAD0464F43D2D9788B8CD1FA6455 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapFoundation-NO-IDFA"; - target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; - targetProxy = E05972E4712FE667187224674F62B1FB /* PBXContainerItemProxy */; - }; - 2ACA4E6956B5C9300490388B0E0C4AE2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxSwift; - target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; - targetProxy = BAD0E3C994C7BDD41C219BC3DF3EF909 /* PBXContainerItemProxy */; - }; - 2B4D117F30ABA622DCAEE58091D44BC8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SwiftyRSA; - target = 92A1C13902E7ACDA3ABB5BA1FEACC86C /* SwiftyRSA */; - targetProxy = 465712AA7A92B820353DC8784D57ACEE /* PBXContainerItemProxy */; - }; - 2E5D6C23CA055C0EDB32FF1C69B40CDC /* PBXTargetDependency */ = { + 00C820B8CC11F51BFF7EA57E4C0D38F9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = JCore; target = D504B99928659EA67A1C3A9E981EB8FF /* JCore */; - targetProxy = 6C5E9266A1756932861307725E3E0279 /* PBXContainerItemProxy */; + targetProxy = 299D2CACE162A8C176078F35801091D5 /* PBXContainerItemProxy */; }; - 2ECF4F3BBA6D79D1AAE0B3DD3F874352 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JPushExtension; - target = 609276B985CD7549B9F1DEE4969208FF /* JPushExtension */; - targetProxy = 718BC7F1752EEB5AC062564B125B47E9 /* PBXContainerItemProxy */; - }; - 380FA48817D0520C5F2D33D35462B0B0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ZLPhotoBrowser; - target = 2FAF03761A44702490259F857A848B42 /* ZLPhotoBrowser */; - targetProxy = 3A7C3203B0BE54E7C29C0C142F475C9B /* PBXContainerItemProxy */; - }; - 423DBBA9D1EB7F8251098D05D1DC6A96 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapNavi-NO-IDFA"; - target = E94C558142469C11984D67CA883BAB1F /* AMapNavi-NO-IDFA */; - targetProxy = 28A24A3CFA0E3C9B881E43FCF69C9A31 /* PBXContainerItemProxy */; - }; - 51A7B574D63A930FB8BA844346717A07 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDAutoUIKit_Private; - target = 53463808DD395EFE0C9E0CDCB79A6C0A /* DDAutoUIKit_Private */; - targetProxy = 47C9B124B80F514FD5621A1FCF965631 /* PBXContainerItemProxy */; - }; - 51A952B3C28515ED4A850461712283D5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDCategoryKit_Private; - target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; - targetProxy = A27C38FB0FED830931FDCC6453DBCDD8 /* PBXContainerItemProxy */; - }; - 546574D2053AE4314C54003773F9D60A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SnapKit; - target = 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */; - targetProxy = 844D87BC1CC75F93ECFAF11CEEB4F791 /* PBXContainerItemProxy */; - }; - 58A759F85488628BCCCBAA513F6AA88C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Alamofire; - target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; - targetProxy = 1885E6266BD73E31A7E0607EC13D1A0E /* PBXContainerItemProxy */; - }; - 5AD18562F68B580A63650AA10B082166 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "DDBasicControlsKit_Private-DDBaseViewController"; - target = 5C23965029860967865B3429B5E29092 /* DDBasicControlsKit_Private-DDBaseViewController */; - targetProxy = AAC9064C436CD3E6F06EAFBACBC348DC /* PBXContainerItemProxy */; - }; - 687269EDF2A4F8BB32210F1BE864C971 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDWebImageKit_Private; - target = 477926D6FB1DCEFB352517A19636405D /* DDWebImageKit_Private */; - targetProxy = 96C054883BF771C38255E374653E3F8B /* PBXContainerItemProxy */; - }; - 68B8011BA4D34CE96CA0B7688D0C9F81 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDColorKit_Private; - target = BFED7668E8D0960F3873C9C1329EB63F /* DDColorKit_Private */; - targetProxy = 466FB97684F0A608F3587C8D1AF2CD8F /* PBXContainerItemProxy */; - }; - 6E8CA8819A8D3089E031A32E665761A7 /* PBXTargetDependency */ = { + 0D005A1D3A22D33521B004EEDDCF8E16 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DDDateKit_Private; target = FA849029E6A899F45F613165943A6C68 /* DDDateKit_Private */; - targetProxy = 0730CC7866993FF8F9AFFAE9715CB307 /* PBXContainerItemProxy */; + targetProxy = 1338E24FB217F31BCA423998CDCE1ECD /* PBXContainerItemProxy */; }; - 7116AF993A8BAED224A0AAA06A0ABBD2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDLogKit_Private; - target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; - targetProxy = E9110B436EC146DD71A1A3B4BE787D1C /* PBXContainerItemProxy */; - }; - 77AF4A2944E51013642155115DC615B5 /* PBXTargetDependency */ = { + 0E45811B4481A9F922D782B38D3C1976 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "AMapFoundation-NO-IDFA"; target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; - targetProxy = 125F73EE576FF11E4B3BF53FD411CE41 /* PBXContainerItemProxy */; + targetProxy = 13428DC2845B520BB2655812F38453D1 /* PBXContainerItemProxy */; }; - 788EEF805E05C83F7492EBA9261B9E27 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapFoundation-NO-IDFA"; - target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; - targetProxy = B67D2CEC356CF42F1C0CE70ACAF6CCF4 /* PBXContainerItemProxy */; - }; - 798C059F30DDC0DEA582BA6FD97DCFD9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapSearch-NO-IDFA"; - target = 4F1379598302C9160590B3650C10E1A5 /* AMapSearch-NO-IDFA */; - targetProxy = 137DE7DEC8EF22EFCC9853183A1D0314 /* PBXContainerItemProxy */; - }; - 7D2A9C004AE55E8FC6681D265D91C67A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "DDMAMapKit_Private-DDMAMapKit_Private"; - target = 6056870867CC4728BCEF2E5EBDD1DCB3 /* DDMAMapKit_Private-DDMAMapKit_Private */; - targetProxy = 05A718EB8A330BAA37885CEB8E25B35B /* PBXContainerItemProxy */; - }; - 7E4E9D4AF3C9E53336EF914345C11F50 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JCore; - target = D504B99928659EA67A1C3A9E981EB8FF /* JCore */; - targetProxy = 9AF7B346536AAC3D966FA1EAB313C11B /* PBXContainerItemProxy */; - }; - 7E568561FECBFD1DEE2828867678C2EE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MJRefresh; - target = 6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */; - targetProxy = 5CCCFAA6803B6D57CFD31E46716F93EA /* PBXContainerItemProxy */; - }; - 88D4B8C0BE08CE2B178A888C1E00CD8D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SwiftEntryKit; - target = FEA6FF0588A91CCD972EDCD698B85647 /* SwiftEntryKit */; - targetProxy = 44ED9AED48E5FA6252592B44EFB53D91 /* PBXContainerItemProxy */; - }; - 8D924242400A3DC884DBA269422C945C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDLogKit_Private; - target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; - targetProxy = 2458C9662E756CEB6AB3CFA32E12BC90 /* PBXContainerItemProxy */; - }; - 94377EDE68C359AF7ED4A1F10D432829 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDAudioPlayerKit_Private; - target = E72BE4C94039A951B47CCC942F6B4B8F /* DDAudioPlayerKit_Private */; - targetProxy = D3D39F48B22B32B2283F34D5365484CF /* PBXContainerItemProxy */; - }; - 9DCB62B7B515BB6DC967D438058838ED /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapLocation-NO-IDFA"; - target = 4BD4E22D3419D68A85BDD6119CB37C6C /* AMapLocation-NO-IDFA */; - targetProxy = 227731D4F5073A8E951B1DBA77A3D0CC /* PBXContainerItemProxy */; - }; - 9F2B84243902D7112D7843CB7CF1C5B2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapLocation-NO-IDFA"; - target = 4BD4E22D3419D68A85BDD6119CB37C6C /* AMapLocation-NO-IDFA */; - targetProxy = F6614369B0C6062C3AD3C7151E9ABC17 /* PBXContainerItemProxy */; - }; - A8F8E2CA61BA11EA11F6A3E04AC1146E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDTimerSwiftKit_Private; - target = 0D4DC618BC2D969E8743E01C79FFB7BD /* DDTimerSwiftKit_Private */; - targetProxy = 8F76BC2B7FFF85C20B8D2EC6EBCB2EEA /* PBXContainerItemProxy */; - }; - A9319D76A61F34032B6E97002A13310E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDPersistenceKit_Private; - target = F8AE53003F66B148774CFC6EBDEB9425 /* DDPersistenceKit_Private */; - targetProxy = A770EC2249A0E57D88FFD4C47356E84C /* PBXContainerItemProxy */; - }; - AB405B59DADAC8431FDF45A15CE73C1A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxRelay; - target = 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */; - targetProxy = F21C6064C80A3543028B8F08D7471A4C /* PBXContainerItemProxy */; - }; - AE7C30E1F0A03F3813B082914767F152 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JXCategoryView; - target = 8BEAFAA726C1965864B79B4B441AA513 /* JXCategoryView */; - targetProxy = 6DB04555069F7BA6277D2CAD7A381DF7 /* PBXContainerItemProxy */; - }; - B4AD1A0259B12A5EEA5C91804F70070E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDControlsKit_Private; - target = 035D1842293C4AA08F442FFD899F7F28 /* DDControlsKit_Private */; - targetProxy = 3A6B1B949EE097BEAC5A63F83C128D3A /* PBXContainerItemProxy */; - }; - B5CA965B672DBDF115E7AC0C98F4B9A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Bugly; - target = 4A68CFD979D413A619DF631BB121D98F /* Bugly */; - targetProxy = F78E3DF17056D351B8524E83F5CB614B /* PBXContainerItemProxy */; - }; - B70A6587C54AB0952CF86124D24EBA48 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardManagerSwift; - target = B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */; - targetProxy = 5485D68A1B2A6F78F406693DA61FA8B1 /* PBXContainerItemProxy */; - }; - C0C0551C9F05FE54CAC168DCC4067C0D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Kingfisher; - target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; - targetProxy = 2BAD665495BC167915E2954FD558C60C /* PBXContainerItemProxy */; - }; - C86636E6AFBA50DDDC4B84E053E93E95 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapSearch-NO-IDFA"; - target = 4F1379598302C9160590B3650C10E1A5 /* AMapSearch-NO-IDFA */; - targetProxy = D19511B04E78449AC8233B9306EB0B96 /* PBXContainerItemProxy */; - }; - CD71864E932649212CB4CC7FC091A528 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "ESTabBarController-swift"; - target = 3F83465BA81F6E581B3A431642D2992E /* ESTabBarController-swift */; - targetProxy = 25EC59D9D98A444257F82EDC57251855 /* PBXContainerItemProxy */; - }; - CD9D4C629C972E4CF009D774BE58BF60 /* PBXTargetDependency */ = { + 10247B54F2CCA1099C37898467D08AF3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = BRPickerView; target = D505645C3F99EB1E8B6529D64D2C3E1C /* BRPickerView */; - targetProxy = 12C92AE01462BC4A43972FDC9A4E9750 /* PBXContainerItemProxy */; + targetProxy = 3D8C01DEC7CD62EA27DDDCF0672E151E /* PBXContainerItemProxy */; }; - CF6F340DF5273ED4B90B74288A3E5B65 /* PBXTargetDependency */ = { + 132513C774AC493E4A62746B8E9CD924 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "AMapTrack-NO-IDFA"; - target = 2160840D78FCB958CABE1B88300E38C5 /* AMapTrack-NO-IDFA */; - targetProxy = 16C337DE09945517C18A666A0A4B8170 /* PBXContainerItemProxy */; + name = Kingfisher; + target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; + targetProxy = E319EA63D6EE71762E2849C6842F7C41 /* PBXContainerItemProxy */; }; - D0B69902310958ED296725B34CD01D40 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDBasicControlsKit_Private; - target = 087B100C5691B6A3C04A45198E6C32F6 /* DDBasicControlsKit_Private */; - targetProxy = ECC2A315C740CC29896569D3F6772F43 /* PBXContainerItemProxy */; - }; - D71A726284F9CE2F30E3EE4AB1D3E03F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDLogKit_Private; - target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; - targetProxy = 9321BD25C34DE3A27879C0B320E73137 /* PBXContainerItemProxy */; - }; - DE2892E6F375A897803267980DEC00A5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDCategoryKit_Private; - target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; - targetProxy = 80F671E327B7FC63B1F69A2F5CA6EA61 /* PBXContainerItemProxy */; - }; - E0620538A67DAF5EF198A45B46B02671 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDNetworkingOfAlamofireKit_Private; - target = B68A4B40517CF9B14050FA0A4A618B04 /* DDNetworkingOfAlamofireKit_Private */; - targetProxy = 691073DAD950E06A82917B1346CE53BE /* PBXContainerItemProxy */; - }; - E15E8BE95F758744B206B8221592BC0B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDCategoryKit_Private; - target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; - targetProxy = D00B99190052C315DAE460387F3BBC49 /* PBXContainerItemProxy */; - }; - E35D4C4F0B8DECBCF9BF5BE29DDAAF0B /* PBXTargetDependency */ = { + 168C9B6D3B32E8945537A617E1CD5F09 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DDToastKit_Private; target = CFF5B7CDF57A32781D2AD4CC98E95B29 /* DDToastKit_Private */; - targetProxy = 2724C4A0BC56D0C0C3EC266744776AA2 /* PBXContainerItemProxy */; + targetProxy = E9C767028D09A24927224EB68ABBDFE5 /* PBXContainerItemProxy */; }; - E5C415A3070574DB0542D07D9DF3BAD2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxSwift; - target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; - targetProxy = C60C38A7A2B3D2689C1FBB3D8F4FAB4C /* PBXContainerItemProxy */; - }; - F4275E5E8859DFA4CB9111413E60D9B5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxSwift; - target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; - targetProxy = 5ACDCE47B8CEA8DE395B006542C6B317 /* PBXContainerItemProxy */; - }; - F4308E39791798503A91B4E7C5433AD9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDBasicControlsKit_Private; - target = 087B100C5691B6A3C04A45198E6C32F6 /* DDBasicControlsKit_Private */; - targetProxy = A43C104AB0C55C08E638F779377275C1 /* PBXContainerItemProxy */; - }; - F703442205953DCA12E58D8DB44AEEFF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDFontKit_Private; - target = 8F3F4D8426620E7E4A06FE4BCDB96FDE /* DDFontKit_Private */; - targetProxy = E1E5E0BCF078D51EE043810F70618EBD /* PBXContainerItemProxy */; - }; - F8B33391DB759149A413987B88C2CB63 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JPush; - target = 5FB6AB0A09E7A2F2BE11AD6BAEFD9AED /* JPush */; - targetProxy = 36DAD848ED5CB9505CA320C3916638F6 /* PBXContainerItemProxy */; - }; - F9617EF4F3BAF0BC5EFB45186A77B0AE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDCategoryKit_Private; - target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; - targetProxy = 7D6B9FD754B53541CE2AFFF77E695840 /* PBXContainerItemProxy */; - }; - FA233FB8BF7CC1233796D5BE4489B656 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxRelay; - target = 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */; - targetProxy = 5948499A9A0340522F14D2A38DAC80C1 /* PBXContainerItemProxy */; - }; - FC841720FEDF7FCB1A61A45CD8D77A07 /* PBXTargetDependency */ = { + 1859D2E4DF995F6B552B73E15E944C88 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "AMapFoundation-NO-IDFA"; target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; - targetProxy = 21C7655DBC6F648850C86B4DC521E22E /* PBXContainerItemProxy */; + targetProxy = 773BE81536F20097DE440C7A10B32315 /* PBXContainerItemProxy */; }; - FDD4FE01EB0AAF2822205304FB03DBF4 /* PBXTargetDependency */ = { + 1AB8928216E258C866608AB86FC19048 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JCore; + target = D504B99928659EA67A1C3A9E981EB8FF /* JCore */; + targetProxy = F6A8D18C1AFF744DA27709A310A99935 /* PBXContainerItemProxy */; + }; + 1B453CA45AAD410CC046507A92CED4DF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDTimerSwiftKit_Private; + target = 0D4DC618BC2D969E8743E01C79FFB7BD /* DDTimerSwiftKit_Private */; + targetProxy = 883D014A196A70E8EF48AEB15791B6E7 /* PBXContainerItemProxy */; + }; + 1D2537AAB2ABF0EA7F146099D18ADE37 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapFoundation-NO-IDFA"; + target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; + targetProxy = 8576659F21F4BBBCACA0C3DB3DCBC719 /* PBXContainerItemProxy */; + }; + 1F8276CF536A5B2CC6E68215719E742E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "DDMAMapKit_Private-DDMAMapKit_Private"; + target = 6056870867CC4728BCEF2E5EBDD1DCB3 /* DDMAMapKit_Private-DDMAMapKit_Private */; + targetProxy = D6B627BC440D1941C3AD06FE60C5887E /* PBXContainerItemProxy */; + }; + 1F897595707AF5454FA4F6FC874060EE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDLogKit_Private; + target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; + targetProxy = F2D8EE943DBA4842E325BA31CE16FDF8 /* PBXContainerItemProxy */; + }; + 1F9CF6A7C90C6673E9B7C9B6893158CD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapTrack-NO-IDFA"; + target = 2160840D78FCB958CABE1B88300E38C5 /* AMapTrack-NO-IDFA */; + targetProxy = 75827B1368D4DDADE9A2E16515DC17E6 /* PBXContainerItemProxy */; + }; + 1FD68C1BE6AFD3E6F81452FE786DCBC9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "ESTabBarController-swift"; + target = 3F83465BA81F6E581B3A431642D2992E /* ESTabBarController-swift */; + targetProxy = BD82F8828207A8E0550E6AAF01EC5C3B /* PBXContainerItemProxy */; + }; + 2586FE271865B46E3B45CB210CD9045A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDWebImageKit_Private; + target = 477926D6FB1DCEFB352517A19636405D /* DDWebImageKit_Private */; + targetProxy = 83A6961C29F7570EE9CBEBB95EB54070 /* PBXContainerItemProxy */; + }; + 26860F2C2700B6D60AC143CD93060CAF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDBasicControlsKit_Private; + target = 087B100C5691B6A3C04A45198E6C32F6 /* DDBasicControlsKit_Private */; + targetProxy = 4965F6D5AEFC1323470C72EADB89CC04 /* PBXContainerItemProxy */; + }; + 285A244CDABCB39EAF36D4007E87E539 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapLocation-NO-IDFA"; + target = 4BD4E22D3419D68A85BDD6119CB37C6C /* AMapLocation-NO-IDFA */; + targetProxy = 734C0F5ABD6483E28F14083BCFAF4FC3 /* PBXContainerItemProxy */; + }; + 2CA7AC28CA7CB154DB2FEFCCFA2001FA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxSwift; + target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; + targetProxy = CCEDDAB0BB203A89179A2FE1662F19A1 /* PBXContainerItemProxy */; + }; + 30008935BF9E39FEFE56A89E53B47DA3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Alamofire; target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; - targetProxy = A2171A808A18DF5EA103FB3D8FF3F438 /* PBXContainerItemProxy */; + targetProxy = B4C343F1E3CBE4801D1CD99896EC56D7 /* PBXContainerItemProxy */; + }; + 32D4748EB2788B092CFE2057179C3DC5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDProgressHUDKit_Private; + target = 387C7767E705FE68450F97CBA4348CC0 /* DDProgressHUDKit_Private */; + targetProxy = D862A0219F7C7A193B48E2CA2C90131C /* PBXContainerItemProxy */; + }; + 36F4E1E5A4774EC9AF08AF9E57B95804 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDPersistenceKit_Private; + target = F8AE53003F66B148774CFC6EBDEB9425 /* DDPersistenceKit_Private */; + targetProxy = 88477F2EB1A08579C2E0A4EAB1E9FF5D /* PBXContainerItemProxy */; + }; + 3AA108A1CFB53023DE9939BE9E8E3919 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxSwift; + target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; + targetProxy = 015FBD41600F70BC7DC1549EA3B9F2BB /* PBXContainerItemProxy */; + }; + 3BE1EFDEA6F2D5E88B5A04A9713E3894 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDAudioPlayerKit_Private; + target = E72BE4C94039A951B47CCC942F6B4B8F /* DDAudioPlayerKit_Private */; + targetProxy = 4B000CB7708AD1655F95962021241FC7 /* PBXContainerItemProxy */; + }; + 3CE8D9DA494AFB05DF627F22C606C781 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapLocation-NO-IDFA"; + target = 4BD4E22D3419D68A85BDD6119CB37C6C /* AMapLocation-NO-IDFA */; + targetProxy = FE661D39020167A14F60F8560E8AF469 /* PBXContainerItemProxy */; + }; + 40DDAC43D46B35EF1B5B0F4BA31CBF7C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapTrack-NO-IDFA"; + target = 2160840D78FCB958CABE1B88300E38C5 /* AMapTrack-NO-IDFA */; + targetProxy = 5C9295ACB2FEED5B934D244BC8D962E2 /* PBXContainerItemProxy */; + }; + 494A23F857C95B69A35C75FAF2EF59E3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDCategoryKit_Private; + target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; + targetProxy = CFF29CC84F961DCC64FB935A84211D84 /* PBXContainerItemProxy */; + }; + 4AADD8D534A0C82B9F613837F73C48B2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapSearch-NO-IDFA"; + target = 4F1379598302C9160590B3650C10E1A5 /* AMapSearch-NO-IDFA */; + targetProxy = 31A39EC21D549D5059C6E473B11B3EFB /* PBXContainerItemProxy */; + }; + 4F2C5532C7E9EFA7DB9549FE26ACDE72 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ZLPhotoBrowser; + target = 2FAF03761A44702490259F857A848B42 /* ZLPhotoBrowser */; + targetProxy = 8AC02A1EBAC4BC5653413FB3DE7D8615 /* PBXContainerItemProxy */; + }; + 4F6D0E9E206257B1642586B4B5829677 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDCategoryKit_Private; + target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; + targetProxy = B31AC466EE5DE11662D36ABF8CDBBBAA /* PBXContainerItemProxy */; + }; + 53ACBC71611D4706AAA478CB453BFAB7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDNetworkingOfAlamofireKit_Private; + target = B68A4B40517CF9B14050FA0A4A618B04 /* DDNetworkingOfAlamofireKit_Private */; + targetProxy = 5FC3216C3D3F40B3317278C43F80EDE3 /* PBXContainerItemProxy */; + }; + 585B6F7E602DECD4D93542770F1BE882 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Bugly; + target = 4A68CFD979D413A619DF631BB121D98F /* Bugly */; + targetProxy = 0B79596FB6C32D1D9ACA4156857266ED /* PBXContainerItemProxy */; + }; + 5C1F9AD2CB6574A55E083888DD9E17FB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDCategoryKit_Private; + target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; + targetProxy = 8D2373BDFB9F2025653FA46380D25938 /* PBXContainerItemProxy */; + }; + 5C9C8B5F0CF597B866B9FFE738893361 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SwiftyRSA; + target = 92A1C13902E7ACDA3ABB5BA1FEACC86C /* SwiftyRSA */; + targetProxy = 5C8C50151282B174AA6E3842FE8A6564 /* PBXContainerItemProxy */; + }; + 5D3471F892D2BC7ACF426D864BF800E4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Kingfisher; + target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; + targetProxy = 39A1B1DFB7B9C71099E51E176A384C10 /* PBXContainerItemProxy */; + }; + 638059844AB481254DD1A05C317E19FF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxCocoa; + target = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6 /* RxCocoa */; + targetProxy = 045D63BC52AB8E117AC62EE7F1BC79FB /* PBXContainerItemProxy */; + }; + 6ADAEB422586D80F89850A8C45F12F0F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MJRefresh; + target = 6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */; + targetProxy = BD3E16F9C982AAD2A266EE08BB6BD4A4 /* PBXContainerItemProxy */; + }; + 6B0B4146B050AAFDDF5DB5822F2F51B4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SnapKit; + target = 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */; + targetProxy = 14F5804C95FF79B0A06A92D561D756EC /* PBXContainerItemProxy */; + }; + 6BAA498D2416D07F9EA545D7515C563D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapNavi-NO-IDFA"; + target = E94C558142469C11984D67CA883BAB1F /* AMapNavi-NO-IDFA */; + targetProxy = 5A322D45A943436DC70E747740A5A0AB /* PBXContainerItemProxy */; + }; + 73EC6A559FA709354F9B01B17269316D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardManagerSwift; + target = B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */; + targetProxy = C366ED926B48D6BF8DA0AC6C730E8D17 /* PBXContainerItemProxy */; + }; + 78FD8213E6ADFDE9475E0ADD229D9DDF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxSwift; + target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; + targetProxy = 5D2ABA623096D340B9CB503FCC43E0A0 /* PBXContainerItemProxy */; + }; + 7F8E49A39389674A9D3893CA35F7784F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDFontKit_Private; + target = 8F3F4D8426620E7E4A06FE4BCDB96FDE /* DDFontKit_Private */; + targetProxy = 0E3A83915BBE2E87BB7961878AE912E6 /* PBXContainerItemProxy */; + }; + 94CC59570546A62F89A2F0D2AC90691E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDControlsKit_Private; + target = 035D1842293C4AA08F442FFD899F7F28 /* DDControlsKit_Private */; + targetProxy = A320A6D4B9BCA31A4F781D1F1BFF3AAC /* PBXContainerItemProxy */; + }; + 984987CDB8FF34ADE9846D605B7386F0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapSearch-NO-IDFA"; + target = 4F1379598302C9160590B3650C10E1A5 /* AMapSearch-NO-IDFA */; + targetProxy = AB82569C7505F44BF2330AB3702C60EF /* PBXContainerItemProxy */; + }; + 9AD067763B7A112B36412C00C137EB4C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "DDBasicControlsKit_Private-DDBaseViewController"; + target = 5C23965029860967865B3429B5E29092 /* DDBasicControlsKit_Private-DDBaseViewController */; + targetProxy = C92ADCE23ACB85DB174F2C19AD8027F5 /* PBXContainerItemProxy */; + }; + 9DE0B78C005CDBF99B517D61B9CC3183 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JPushExtension; + target = 609276B985CD7549B9F1DEE4969208FF /* JPushExtension */; + targetProxy = 487430702D09E26B7FFDFB9589D778AB /* PBXContainerItemProxy */; + }; + A12F3C11EF7C07A5198FDB1768A3BF6A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapNavi-NO-IDFA"; + target = E94C558142469C11984D67CA883BAB1F /* AMapNavi-NO-IDFA */; + targetProxy = 0F33851B83ABBD42E04A133F46F266D1 /* PBXContainerItemProxy */; + }; + A84480D633CCBE73A7F35B97E623BA2F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDAutoUIKit_Private; + target = 53463808DD395EFE0C9E0CDCB79A6C0A /* DDAutoUIKit_Private */; + targetProxy = 7CF1767C347E123E6F80DEF22E23BEAF /* PBXContainerItemProxy */; + }; + AC8DABFC6546F8EC09D45568E54980DC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDColorKit_Private; + target = BFED7668E8D0960F3873C9C1329EB63F /* DDColorKit_Private */; + targetProxy = 9B0E4098CA7503090E72368B37353004 /* PBXContainerItemProxy */; + }; + AD05B45DC3B8794BCEA4C069F1C0A41B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDZFPlayerKit_Private; + target = 2864923095274ACF5E5F99312F360AEB /* DDZFPlayerKit_Private */; + targetProxy = CCC40A5D186967182A2931AA7E67BCD6 /* PBXContainerItemProxy */; + }; + B4B127B7C132A31FD692D20A756F0741 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JPush; + target = 5FB6AB0A09E7A2F2BE11AD6BAEFD9AED /* JPush */; + targetProxy = B237C651CAFF3574BA1CDEEF22398F8B /* PBXContainerItemProxy */; + }; + C1F4822E08EB65180CC3BEEB50081958 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxRelay; + target = 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */; + targetProxy = BB28D366DA34BB004C000DE74A903425 /* PBXContainerItemProxy */; + }; + C5A49DF89607659B2DDC07C0458D1D47 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxRelay; + target = 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */; + targetProxy = D06EE6A78D9BA354B2E64330F7E79396 /* PBXContainerItemProxy */; + }; + C91550FBB2768B72E0CFB18320B1EFEF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDLogKit_Private; + target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; + targetProxy = C5179645BB0BE6CE0103A513655BFDD1 /* PBXContainerItemProxy */; + }; + CEC0A914E387197BA0DC5D6B84FF708B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JXCategoryView; + target = 8BEAFAA726C1965864B79B4B441AA513 /* JXCategoryView */; + targetProxy = 758553AF0D41A48A2618EAEFACF8BDFC /* PBXContainerItemProxy */; + }; + D68CCD2F199746F96A52C4260208FDD3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Alamofire; + target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; + targetProxy = 0D6DD0FDD88A476027E1C374F1FFD0EA /* PBXContainerItemProxy */; + }; + D9789B07729F7B2CBA48EC35EF8BA08C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxSwift; + target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; + targetProxy = FB43E8D2095ADD88E51B6DDBB7ADE1CB /* PBXContainerItemProxy */; + }; + D9AF99992AD690E446C21AAAC84FAB69 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDLogKit_Private; + target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; + targetProxy = 159C85AE33B7CD08DA491124AA71975D /* PBXContainerItemProxy */; + }; + DEFD827ADAECFA198FB0BF819DFEA62E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SwiftEntryKit; + target = FEA6FF0588A91CCD972EDCD698B85647 /* SwiftEntryKit */; + targetProxy = 7D9E0E1B6F2E1EA0CCC7A9501E2BC35C /* PBXContainerItemProxy */; + }; + E1220119C3E29588CF2E34D44ACC25CC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapLocation-NO-IDFA"; + target = 4BD4E22D3419D68A85BDD6119CB37C6C /* AMapLocation-NO-IDFA */; + targetProxy = 65749D3A36E5EAD58B470F9C9E4A6057 /* PBXContainerItemProxy */; + }; + E35EFEC393DC587516CF539848E3D734 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapFoundation-NO-IDFA"; + target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; + targetProxy = CBB430E9B541876CA7F6D35C7A63EFA3 /* PBXContainerItemProxy */; + }; + E37BA1FAA0C5AABF0666EDD7E8FEC9B4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDCategoryKit_Private; + target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; + targetProxy = C47E7690F39635A4BE41E958A8A3F52C /* PBXContainerItemProxy */; + }; + E3EBE11F5FF48413EB45A909AF50FC9A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapFoundation-NO-IDFA"; + target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; + targetProxy = ADBE7C78C85830CC4D653503722CE3DD /* PBXContainerItemProxy */; + }; + EC2B8D039D1E2F6C53BA7CA4260359FB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDBasicControlsKit_Private; + target = 087B100C5691B6A3C04A45198E6C32F6 /* DDBasicControlsKit_Private */; + targetProxy = D8A377B0FAD2A61132489F12A4C1D719 /* PBXContainerItemProxy */; + }; + ED986E137B009F17F8FFF22859768691 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDUtilsSwiftKit_Private; + target = A8B712B20F60AB02004557B884A28FD4 /* DDUtilsSwiftKit_Private */; + targetProxy = DC195669CB08C50F17ECF5B83229CE2A /* PBXContainerItemProxy */; + }; + F6BFDBAA38405A091B9FBECDACF2539B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDMAMapKit_Private; + target = B41F58F2856AB275B4CF75F359937653 /* DDMAMapKit_Private */; + targetProxy = 721F08DF7ACEB3F0925F0D29B0FEC711 /* PBXContainerItemProxy */; + }; + F9E768EA395E63B1BEFE6F9C0DCB4608 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SnapKit; + target = 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */; + targetProxy = 5B3DC89457BE56128A2E3C7E8461EB42 /* PBXContainerItemProxy */; + }; + FF61DFBB381B3B97E7513DF5051E8AC3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDLogKit_Private; + target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; + targetProxy = E6C1A93C29A0310E3D9D646B82C974B9 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ 00CFFB6AC18FFD8289A2D08ECB0D6317 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 53527B1AD2355D7D1879A8794C57BBE8 /* DDZFPlayerKit_Private.release.xcconfig */; + baseConfigurationReference = EBDCF9C9311B3503A80E8A638EC25A58 /* DDZFPlayerKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10297,9 +10349,37 @@ }; name = Release; }; + 02EAF8F8D4762C1B17A8CEB476228273 /* PreRelease */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9647BD171AFB23D3A34E71B4E3AA3198 /* DDBasicControlsKit_Private.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/DDBasicControlsKit_Private/DDBasicControlsKit_Private-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/DDBasicControlsKit_Private/DDBasicControlsKit_Private.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = DDBasicControlsKit_Private; + PRODUCT_NAME = DDBasicControlsKit_Private; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = PreRelease; + }; 034BA87C2C84A3F815BABA073747D950 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B6B9EBE6340CB7AACFC41CCF5CCEE7B8 /* IQKeyboardManagerSwift.release.xcconfig */; + baseConfigurationReference = BD0B5C824276F88E52D0060A73CDB57D /* IQKeyboardManagerSwift.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10327,7 +10407,7 @@ }; 03D5621DFAF33B3E865DA1A7AA59856A /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D46A02AA3FEB386950BAB6DA32E6F726 /* DDAudioPlayerKit_Private.release.xcconfig */; + baseConfigurationReference = 09A1D3229C8D052062027ABBB1539377 /* DDAudioPlayerKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10353,9 +10433,27 @@ }; name = PreRelease; }; + 04AF2F6130294009FD2F40ECEDC03DF7 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CADC2F0323519D2B1EC5039CA5A6E625 /* DDMAMapKit_Private.debug.xcconfig */; + buildSettings = { + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DDMAMapKit_Private"; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + IBSC_MODULE = DDMAMapKit_Private; + INFOPLIST_FILE = "Target Support Files/DDMAMapKit_Private/ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = DDMAMapKit_Private; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; 062D9F2B9A556AF545F7D73B6BAD9E4C /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4690C0C6E98072041DB84B803F2207AA /* JPushExtension.release.xcconfig */; + baseConfigurationReference = 5E403B9EEAD13AFBAB2871831C453524 /* JPushExtension.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10375,7 +10473,7 @@ }; 06902B9EA0B8701B1BBD382EF5B048E5 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DA00B4D6DD3233157D07880E5049A07D /* DDControlsKit_Private.release.xcconfig */; + baseConfigurationReference = 9D0F6B63ED009DCB443935C2CE7C3EAB /* DDControlsKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10403,7 +10501,7 @@ }; 0781C02B9B1ABAB69E606763A1B452A0 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BE3A167EC879F9AFA8856D0491ED4FB3 /* AMapNavi-NO-IDFA.release.xcconfig */; + baseConfigurationReference = C89ADCB72663A7461E23819200652DC9 /* AMapNavi-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10420,9 +10518,36 @@ }; name = PreRelease; }; + 092C7238D5D495702DD60A0CFFA8B724 /* PreRelease */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DAC7038C6A95B0C20D9EBA2157B13FF2 /* RxSwift.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/RxSwift/RxSwift-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MODULEMAP_FILE = Headers/Public/RxSwift/RxSwift.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RxSwift; + PRODUCT_NAME = RxSwift; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = PreRelease; + }; 0AECEEFF7929FBEFD97057F5F6DC8B2C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0F95AD77B334DC3AC2477F1A3AC313F7 /* JCore.debug.xcconfig */; + baseConfigurationReference = 7EA821B861F99F932833744748A753B1 /* JCore.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10438,37 +10563,9 @@ }; name = Debug; }; - 0B0585CA9A7F2313F00B9CBA9BD42DF0 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D872D7C3EF24EA7A12661B82ACF37064 /* DDBasicControlsKit_Private.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/DDBasicControlsKit_Private/DDBasicControlsKit_Private-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = Headers/Public/DDBasicControlsKit_Private/DDBasicControlsKit_Private.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DDBasicControlsKit_Private; - PRODUCT_NAME = DDBasicControlsKit_Private; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 0B07FC7C2CBBECC1AEAB861B30DB8E43 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 03BDCBB30B6BF9E9B16313E806FE3E2B /* SwiftEntryKit.release.xcconfig */; + baseConfigurationReference = C7AFB2C050969535553B023673BFA656 /* SwiftEntryKit.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -10493,37 +10590,9 @@ }; name = Release; }; - 0DF558CBD9E19EC36A6463AD3B5EF388 /* PreRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FDFFAA0F525073C9A515588E54DBDDB4 /* Kingfisher.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/Kingfisher/Kingfisher-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - MODULEMAP_FILE = Headers/Public/Kingfisher/Kingfisher.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = Kingfisher; - PRODUCT_NAME = Kingfisher; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = PreRelease; - }; 0F56E9EF4C4A8A2EFE063DB95981BAD1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CE46837814917E3C3A303BE9E4962FF0 /* Bugly.debug.xcconfig */; + baseConfigurationReference = D05B97EE823062BC337989E133CEECE6 /* Bugly.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10541,7 +10610,7 @@ }; 1170D4F6047D92FB103D8925261C4446 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E5DE0EBD0ABA86A5FA7C634811DE1C0 /* ESTabBarController-swift.release.xcconfig */; + baseConfigurationReference = 57066B483B3C78049F0880AFFCE791C4 /* ESTabBarController-swift.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -10568,7 +10637,7 @@ }; 1495AF8B549792BF7912F5A1E1119712 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CBE79F1DEB908F14820EA89EAEEA020D /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */; + baseConfigurationReference = AC43FAA7E3C12560AA886DE857F93BA2 /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10596,7 +10665,7 @@ }; 15B7F84E39C93EFEBD8AD10B0FE0B047 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1FFD4C7D986D5A9ABF7146B92D6428E3 /* AMapNavi-NO-IDFA.debug.xcconfig */; + baseConfigurationReference = C1F5F806AFCD503624E55B19A123B2BA /* AMapNavi-NO-IDFA.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10614,7 +10683,7 @@ }; 1726DC34BF3C4756B065E2A908DCC12C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D319BE64A44DF3EF7E975E3C7B5CB7E7 /* DDPersistenceKit_Private.release.xcconfig */; + baseConfigurationReference = 7E6DD7EB75072604E5832BA5E6C83DDE /* DDPersistenceKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10642,7 +10711,7 @@ }; 17E9F697225BE4693A9A0CAAE767CFEB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4F131F91C961DC10071B0A90B6552041 /* DDDateKit_Private.release.xcconfig */; + baseConfigurationReference = 20D1ED4F3728D5F8DA90CE2EFB37B3AE /* DDDateKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10670,7 +10739,7 @@ }; 18450C9EEFA1230D2952C8327442D5AE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7A8C8AF30AD84DD09DAEBF8AB4449539 /* AMapTrack-NO-IDFA.release.xcconfig */; + baseConfigurationReference = CA7DA7ABF6E0DD9E4C0BD8433C515A3D /* AMapTrack-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10688,36 +10757,9 @@ }; name = Release; }; - 194384CF9865EA5A6F621CD50261DE63 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 47A3EE35E7731B4F9B55B2F0C7A55BC8 /* SnapKit.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MODULEMAP_FILE = Headers/Public/SnapKit/SnapKit.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SnapKit; - PRODUCT_NAME = SnapKit; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 1A549D214D907E76BA47A41507492968 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 581C8BF98FA140DCC476BF9A94C427E0 /* DDAutoUIKit_Private.debug.xcconfig */; + baseConfigurationReference = D978E0E647D8E4FE925B1853F295328B /* DDAutoUIKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10742,36 +10784,9 @@ }; name = Debug; }; - 1BE06CA0F45A176E13F06FC290EBA5CC /* PreRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F730F619AB07DFE1487C5CB691EC6969 /* RxRelay.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/RxRelay/RxRelay-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MODULEMAP_FILE = Headers/Public/RxRelay/RxRelay.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RxRelay; - PRODUCT_NAME = RxRelay; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.1; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = PreRelease; - }; 1D6ECDD132EE5035CEB27FA70E194607 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 01CB0DAE7EE2185A60E5254888222198 /* ZLPhotoBrowser.release.xcconfig */; + baseConfigurationReference = 19F3DA811C0F7DCEA9A0881CACECA189 /* ZLPhotoBrowser.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10799,7 +10814,7 @@ }; 1DF8897E06F8071D42BAE4465121279D /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A6CC415015CAA9C13B6367E82CC3EA70 /* Alamofire.release.xcconfig */; + baseConfigurationReference = 1EA80EA9DCB270302DAC7F65AFE579B0 /* Alamofire.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10827,7 +10842,7 @@ }; 225716D671C2AF3962051A80830E0D98 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3DEF2C80E3775C1069BA968CD0083DDE /* JXCategoryView.debug.xcconfig */; + baseConfigurationReference = 6A552983BA923BE8FAC4BDA59212655B /* JXCategoryView.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -10853,7 +10868,7 @@ }; 226221FEFECAF478E4AD3C69CC522966 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2B21E4FEE4BE8BB22168C0E276B9E408 /* AMapLocation-NO-IDFA.release.xcconfig */; + baseConfigurationReference = D3033ED13E860307AC3657C99F0F019F /* AMapLocation-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10873,7 +10888,7 @@ }; 231DE093916EB01285DC4AECC16D44CF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F36C76D4D0F0555D8A573700E284AB46 /* DDDateKit_Private.debug.xcconfig */; + baseConfigurationReference = 87CBEA68716D16EBB588D6CD61000FCB /* DDDateKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10898,9 +10913,9 @@ }; name = Debug; }; - 24C92530424FF6AC7E994BD30DB618BA /* PreRelease */ = { + 23B3E87EDAD791506384D78AD5FB5BDE /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D872D7C3EF24EA7A12661B82ACF37064 /* DDBasicControlsKit_Private.release.xcconfig */; + baseConfigurationReference = 9647BD171AFB23D3A34E71B4E3AA3198 /* DDBasicControlsKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DDBasicControlsKit_Private"; @@ -10920,7 +10935,7 @@ }; 24D7D357EF5DACAB8C59F250AC83420F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BA0391BD18FA000ED45F11F7FC0C5941 /* DDLogKit_Private.release.xcconfig */; + baseConfigurationReference = 1EC2252F82D266AE7F938DE967080413 /* DDLogKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10973,7 +10988,7 @@ }; 28351E0A3C97633F27A3A5C9C6F6ABF6 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 29BE9E31903DAE10D2A89D3008DFA912 /* JXCategoryView.release.xcconfig */; + baseConfigurationReference = C0C4F5D3B0E9E2DAC945CB3EE359B48E /* JXCategoryView.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11000,7 +11015,7 @@ }; 2853FEDC9CC66B9840B31219EECD4E5A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BB72A1810FDD4CCC3BE72F8F8789ACE8 /* DDColorKit_Private.release.xcconfig */; + baseConfigurationReference = 8C4DC6F83AB9F81E340D5B148CA739BB /* DDColorKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11026,36 +11041,9 @@ }; name = Release; }; - 29B02E29B10CD71B73EC6F841D51CFC7 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F730F619AB07DFE1487C5CB691EC6969 /* RxRelay.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/RxRelay/RxRelay-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MODULEMAP_FILE = Headers/Public/RxRelay/RxRelay.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RxRelay; - PRODUCT_NAME = RxRelay; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; - SWIFT_VERSION = 5.1; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 29DB94002704203A0B4A69C3238100D9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F9B671CABEF0BE423F6CC28764C0D86A /* DDNetworkingOfAlamofireKit_Private.debug.xcconfig */; + baseConfigurationReference = BE39C38E34567D084D08F3F203E57E2E /* DDNetworkingOfAlamofireKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11082,7 +11070,7 @@ }; 2AD561BE6F3E5FF1C3362471B44944A5 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC4E1917617F023685F6839CB2438EA8 /* DDMAMapKit_Private.release.xcconfig */; + baseConfigurationReference = A409749AD215AAA1622AC3955B0754DC /* DDMAMapKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11108,37 +11096,9 @@ }; name = PreRelease; }; - 2BCAD72D5457749C81587BBA8B2AE6EF /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FDFFAA0F525073C9A515588E54DBDDB4 /* Kingfisher.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/Kingfisher/Kingfisher-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - MODULEMAP_FILE = Headers/Public/Kingfisher/Kingfisher.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = Kingfisher; - PRODUCT_NAME = Kingfisher; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 2BE9F474CC004847B066222FD5037D6A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D60EA2F98FB9BE841A4547635AA91D7F /* DDTimerSwiftKit_Private.release.xcconfig */; + baseConfigurationReference = 92421079C7D42417250288A64C734CD4 /* DDTimerSwiftKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11166,7 +11126,7 @@ }; 2C14C682F1AF1911E085FA9E288139D2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 94E6FB4DB627CB050EEE79AB8AEA8A1D /* RxCocoa.release.xcconfig */; + baseConfigurationReference = 53F3B2B135B8687A86273C6C8B7268CC /* RxCocoa.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11191,35 +11151,9 @@ }; name = Release; }; - 2EFA51C2D767E628288BBBD4C03290FC /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F7AC5C76FD8E79C265D907673EAB9F00 /* RxRelay.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/RxRelay/RxRelay-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MODULEMAP_FILE = Headers/Public/RxRelay/RxRelay.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RxRelay; - PRODUCT_NAME = RxRelay; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.1; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 30E9D8E42AE5CD6D5246F2627DD27E9F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5515E2A60DD640F4433982A0F55BC343 /* DDWebImageKit_Private.debug.xcconfig */; + baseConfigurationReference = 6EAF9EBB0A0F6E1197989EBC8704D23F /* DDWebImageKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11246,7 +11180,7 @@ }; 3281C76EA7D794732D228832C577826B /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BB72A1810FDD4CCC3BE72F8F8789ACE8 /* DDColorKit_Private.release.xcconfig */; + baseConfigurationReference = 8C4DC6F83AB9F81E340D5B148CA739BB /* DDColorKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11272,9 +11206,65 @@ }; name = PreRelease; }; + 3588DF6935EC08695627215DC96B976E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C1F9F1C286C0F8A5553D967D22C70702 /* DDCategoryKit_Private.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/DDCategoryKit_Private/DDCategoryKit_Private-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/DDCategoryKit_Private/DDCategoryKit_Private.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = DDCategoryKit_Private; + PRODUCT_NAME = DDCategoryKit_Private; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 3810F09D10322B304912A8FC9D90FE73 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9647BD171AFB23D3A34E71B4E3AA3198 /* DDBasicControlsKit_Private.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/DDBasicControlsKit_Private/DDBasicControlsKit_Private-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/DDBasicControlsKit_Private/DDBasicControlsKit_Private.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = DDBasicControlsKit_Private; + PRODUCT_NAME = DDBasicControlsKit_Private; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 3E82EF80F3ACC6610CD959FD17245D53 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 47D89C6D2883B4D4256C5D157CDA57FC /* DDLogKit_Private.debug.xcconfig */; + baseConfigurationReference = D20EB1D60F5FA950B1D88F62FE24CBA3 /* DDLogKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11301,7 +11291,7 @@ }; 3EB0C0846EA6732314C5D69489AE15E2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4E1C8200F59C5EEE5B199D3C14112F3 /* AMapFoundation-NO-IDFA.release.xcconfig */; + baseConfigurationReference = 88DF251A482A891A68E18044DA5C0215 /* AMapFoundation-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -11321,7 +11311,7 @@ }; 3F958C3B78D47F9549C9023C4E5B4004 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 29BE9E31903DAE10D2A89D3008DFA912 /* JXCategoryView.release.xcconfig */; + baseConfigurationReference = C0C4F5D3B0E9E2DAC945CB3EE359B48E /* JXCategoryView.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11346,34 +11336,6 @@ }; name = Release; }; - 40F6D0AE9835855615AD5B7556E7D3F4 /* PreRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D872D7C3EF24EA7A12661B82ACF37064 /* DDBasicControlsKit_Private.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/DDBasicControlsKit_Private/DDBasicControlsKit_Private-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = Headers/Public/DDBasicControlsKit_Private/DDBasicControlsKit_Private.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DDBasicControlsKit_Private; - PRODUCT_NAME = DDBasicControlsKit_Private; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = PreRelease; - }; 443AAC2D2192D04E03EB3B4A97A49FCC /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 7BF437F1301E282D248141EA0E4FDED5 /* Pods-OrderSchedulingNotificationService.debug.xcconfig */; @@ -11399,7 +11361,7 @@ }; 44CB277F467617FACCA6BF598A034A65 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 13CD0B97A5CB9BCBB452F8D951B61292 /* BRPickerView.debug.xcconfig */; + baseConfigurationReference = D8B88765BE86F25BEB9D19D6AD4C9C90 /* BRPickerView.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11423,63 +11385,9 @@ }; name = Debug; }; - 473D06A8777B89B3EB7C797154ACB8DD /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7543597AE632D6723F32384B9D094639 /* DDCategoryKit_Private.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/DDCategoryKit_Private/DDCategoryKit_Private-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = Headers/Public/DDCategoryKit_Private/DDCategoryKit_Private.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DDCategoryKit_Private; - PRODUCT_NAME = DDCategoryKit_Private; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 49CD0A16FC5F1DFC2D115E5872B602A6 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = ABAB9CE2BEC6AED9950849447DED31E3 /* RxSwift.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/RxSwift/RxSwift-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MODULEMAP_FILE = Headers/Public/RxSwift/RxSwift.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RxSwift; - PRODUCT_NAME = RxSwift; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; - SWIFT_VERSION = 5.1; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; 4C61240F775280D105570AB6FBF0BD72 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D60EA2F98FB9BE841A4547635AA91D7F /* DDTimerSwiftKit_Private.release.xcconfig */; + baseConfigurationReference = 92421079C7D42417250288A64C734CD4 /* DDTimerSwiftKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11507,7 +11415,7 @@ }; 4CFE159363E23D99B30DCFC1E84B6E21 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8BCDCE291F9986C4B85361699D4F4C4F /* DDToastKit_Private.debug.xcconfig */; + baseConfigurationReference = EAF6FE31F0268D1B31CCEE94DC8CE3FC /* DDToastKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11534,7 +11442,7 @@ }; 4D53E26FAE1ED5EB8E462D391AADD577 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9E8A34914BBC138DA91C0CDE3DDD9A4F /* DDToastKit_Private.release.xcconfig */; + baseConfigurationReference = 49446041930752FD6376250702C4AF9D /* DDToastKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11562,7 +11470,7 @@ }; 4E026E4F4DA1962A2D7BA31CDB0CA756 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 622BF90602E3605129149406EE02294A /* SwiftEntryKit.debug.xcconfig */; + baseConfigurationReference = 96FDFD9B7E6D10B43F81A9DDEF58C46C /* SwiftEntryKit.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11588,7 +11496,7 @@ }; 4E8A37E39B95F86B5A498DEF72505CB1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1ACE7652E6C9AF597184643F45EC253B /* MJRefresh.debug.xcconfig */; + baseConfigurationReference = EC57DF96897E5A30C3C47648AC341138 /* MJRefresh.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11614,7 +11522,7 @@ }; 53DBDCA48029EDDC75E87A248B01458C /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6DE62048AAF1140C9846AAD0A96580C3 /* JCore.release.xcconfig */; + baseConfigurationReference = F19F5369A2C30CBEB436D563F27A627D /* JCore.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -11633,7 +11541,7 @@ }; 5425F23225AE92341F2558DA01812C57 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F91A7A89EE1DD219751D3FD315064E4B /* MJRefresh.release.xcconfig */; + baseConfigurationReference = 752F50737BE63096173CE2D82D5F79E5 /* MJRefresh.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11685,7 +11593,7 @@ }; 577813FB86763A6ADFB7460A091E77EA /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C2B5BE12966E4BFC22AE6A701FD66E8A /* JPush.release.xcconfig */; + baseConfigurationReference = 4C54F9CD91183CE4ADEC1F83999D3950 /* JPush.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -11704,7 +11612,7 @@ }; 5859B1ED45373FA14A1E6451A262D675 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6E5DE0EBD0ABA86A5FA7C634811DE1C0 /* ESTabBarController-swift.release.xcconfig */; + baseConfigurationReference = 57066B483B3C78049F0880AFFCE791C4 /* ESTabBarController-swift.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11729,64 +11637,35 @@ }; name = PreRelease; }; - 5940106FE5C33BAFC3B51D6D72449AD1 /* PreRelease */ = { + 5E1438C49B0DC03C2AB18BB5366C227E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CE78DE063032C13CA169F0D4E35D0C06 /* DDCategoryKit_Private.release.xcconfig */; + baseConfigurationReference = C3BFBF760F1C3A2D7641DA056C02D903 /* RxSwift.debug.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; DEVELOPMENT_TEAM = W4SG324NS4; "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/DDCategoryKit_Private/DDCategoryKit_Private-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = Headers/Public/DDCategoryKit_Private/DDCategoryKit_Private.modulemap; + GCC_PREFIX_HEADER = "Target Support Files/RxSwift/RxSwift-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MODULEMAP_FILE = Headers/Public/RxSwift/RxSwift.modulemap; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DDCategoryKit_Private; - PRODUCT_NAME = DDCategoryKit_Private; + PRODUCT_MODULE_NAME = RxSwift; + PRODUCT_NAME = RxSwift; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = PreRelease; - }; - 5ED76EEE65E0AB36DF27B66CDA4E0B5F /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F0F071F1E2FBCFBA49D70A753B2D495C /* Kingfisher.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/Kingfisher/Kingfisher-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - MODULEMAP_FILE = Headers/Public/Kingfisher/Kingfisher.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = Kingfisher; - PRODUCT_NAME = Kingfisher; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; + SWIFT_VERSION = 5.1; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; 6140DDBB9B050ACCF404485A14F4FFE0 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2DBCDA3159346DB0B5B1268A5B555A35 /* BRPickerView.release.xcconfig */; + baseConfigurationReference = C532DF0FD239F67E33BC7009890811BD /* BRPickerView.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11813,7 +11692,7 @@ }; 63275981B15BE90F6912932D6156AC92 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 62CE7DF2D8353BE5D3F96DE2262981C1 /* IQKeyboardManagerSwift.debug.xcconfig */; + baseConfigurationReference = 154133F8696D45C09E50268F96410941 /* IQKeyboardManagerSwift.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11840,7 +11719,7 @@ }; 64F8D025C0B4722D495C98EC8827C679 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A6CC415015CAA9C13B6367E82CC3EA70 /* Alamofire.release.xcconfig */; + baseConfigurationReference = 1EA80EA9DCB270302DAC7F65AFE579B0 /* Alamofire.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11868,7 +11747,7 @@ }; 65B60F5572E5A88B96165BADCBB1BDA6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EC4A58C1118B56503E83B36C7EB9C869 /* AMapSearch-NO-IDFA.debug.xcconfig */; + baseConfigurationReference = 0A55B4C27BC6F39FDDC74AD8A0E87382 /* AMapSearch-NO-IDFA.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -11886,7 +11765,7 @@ }; 6B9A53460BDAF5BE885221978932492C /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 01CB0DAE7EE2185A60E5254888222198 /* ZLPhotoBrowser.release.xcconfig */; + baseConfigurationReference = 19F3DA811C0F7DCEA9A0881CACECA189 /* ZLPhotoBrowser.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11914,7 +11793,7 @@ }; 6C3CC8E0B427ECC1DB4A52D26B813CEF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 78C9BC8534817A08C5EF932B9F5F6AAF /* DDPersistenceKit_Private.debug.xcconfig */; + baseConfigurationReference = 46FAFFF77DD6AA42BD28E82106E3DD28 /* DDPersistenceKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11941,7 +11820,7 @@ }; 6C81FF1694F67970213CC687C43B91A3 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 574CCA857D81E896F9A67CFC32B15A32 /* AMapSearch-NO-IDFA.release.xcconfig */; + baseConfigurationReference = 60C12B20AA097F6B962ECE262990F404 /* AMapSearch-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -11960,7 +11839,7 @@ }; 6E369200B22231B3ABCA75FDF3ABE62B /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F91A7A89EE1DD219751D3FD315064E4B /* MJRefresh.release.xcconfig */; + baseConfigurationReference = 752F50737BE63096173CE2D82D5F79E5 /* MJRefresh.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11987,7 +11866,7 @@ }; 6FA6D0B57F7F0945CD6226AD94C296BB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 381A53D47F78F15CFB699071AC466B0E /* AMapTrack-NO-IDFA.debug.xcconfig */; + baseConfigurationReference = 219FF9A5CBF2C4CCFA4820510911BA99 /* AMapTrack-NO-IDFA.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12005,7 +11884,7 @@ }; 7004DBDA636C88E2F25FDB913BBCF872 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B4A45C8475EEC88204B9CA00F7CDC273 /* DDProgressHUDKit_Private.release.xcconfig */; + baseConfigurationReference = D88A57E0029FEF793BB477D6BD6761EC /* DDProgressHUDKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12033,7 +11912,7 @@ }; 7006E7DA87DBF9FB621E5E92F18FB641 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 94E6FB4DB627CB050EEE79AB8AEA8A1D /* RxCocoa.release.xcconfig */; + baseConfigurationReference = 53F3B2B135B8687A86273C6C8B7268CC /* RxCocoa.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -12060,7 +11939,7 @@ }; 7136F591221AD5501E817C1B77F484ED /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 095AEB4D2B39A75A3C5CDB20D42CCFD9 /* DDControlsKit_Private.debug.xcconfig */; + baseConfigurationReference = 77D6363B15E7FD81D43C1F894B278CC5 /* DDControlsKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12087,7 +11966,7 @@ }; 739DE83A94D5F3796DA470D04BDBA273 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BE3A167EC879F9AFA8856D0491ED4FB3 /* AMapNavi-NO-IDFA.release.xcconfig */; + baseConfigurationReference = C89ADCB72663A7461E23819200652DC9 /* AMapNavi-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12105,9 +11984,37 @@ }; name = Release; }; + 7684C40E79059CBBC3C4FB4248E983EA /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 165809E2D10BE431114740055F22B5BA /* SnapKit.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MODULEMAP_FILE = Headers/Public/SnapKit/SnapKit.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = SnapKit; + PRODUCT_NAME = SnapKit; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 77BAB67F30880412AB4954F7FF0DE8DB /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F4E1C8200F59C5EEE5B199D3C14112F3 /* AMapFoundation-NO-IDFA.release.xcconfig */; + baseConfigurationReference = 88DF251A482A891A68E18044DA5C0215 /* AMapFoundation-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12124,35 +12031,9 @@ }; name = PreRelease; }; - 77CDEA29DCF4D522041B2BEB9309F6E6 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6E7E04CDEFC8DCA6FF61DE50B9A2013B /* RxSwift.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/RxSwift/RxSwift-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MODULEMAP_FILE = Headers/Public/RxSwift/RxSwift.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RxSwift; - PRODUCT_NAME = RxSwift; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.1; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; 7D4FC5186D0C5815B2ABFC9323046C03 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 52F1573EB6D890E2BEA052DB689F3672 /* AMapLocation-NO-IDFA.debug.xcconfig */; + baseConfigurationReference = 06297B3403F1501663AFC128A815A060 /* AMapLocation-NO-IDFA.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12170,7 +12051,7 @@ }; 7DE63CFFD890B984947FC4B929ED850A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6DE62048AAF1140C9846AAD0A96580C3 /* JCore.release.xcconfig */; + baseConfigurationReference = F19F5369A2C30CBEB436D563F27A627D /* JCore.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12188,28 +12069,37 @@ }; name = Release; }; - 86CF53637FEA6E3C784C4012C2A50DDF /* Release */ = { + 86CDA59C5FCE0A39F81AF831CF7814BF /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC4E1917617F023685F6839CB2438EA8 /* DDMAMapKit_Private.release.xcconfig */; + baseConfigurationReference = 165809E2D10BE431114740055F22B5BA /* SnapKit.release.xcconfig */; buildSettings = { - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DDMAMapKit_Private"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; DEVELOPMENT_TEAM = W4SG324NS4; "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - IBSC_MODULE = DDMAMapKit_Private; - INFOPLIST_FILE = "Target Support Files/DDMAMapKit_Private/ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = DDMAMapKit_Private; + GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MODULEMAP_FILE = Headers/Public/SnapKit/SnapKit.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = SnapKit; + PRODUCT_NAME = SnapKit; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; }; - name = Release; + name = PreRelease; }; 874D5ECFCBDE246920D02ADB76CDB268 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FB064C8064492D58BA1BE26DA697E302 /* Bugly.release.xcconfig */; + baseConfigurationReference = BCA2508381061E8227A93838DC1FE52C /* Bugly.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12226,6 +12116,34 @@ }; name = PreRelease; }; + 8846E2D7356F419921655F8D62A02CC8 /* PreRelease */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FE368C984EA9F1C0E750A90989284556 /* Kingfisher.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/Kingfisher/Kingfisher-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + MODULEMAP_FILE = Headers/Public/Kingfisher/Kingfisher.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = Kingfisher; + PRODUCT_NAME = Kingfisher; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = PreRelease; + }; 8CCA5823BD8186BC26C7DE6C8EACFCD1 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = CCA25F5644BF0246ABFFF775553FEEAE /* Pods-OrderScheduling.debug.xcconfig */; @@ -12250,36 +12168,9 @@ }; name = Debug; }; - 8D0669E61B9581323401A375923A6F91 /* PreRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = ABAB9CE2BEC6AED9950849447DED31E3 /* RxSwift.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/RxSwift/RxSwift-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MODULEMAP_FILE = Headers/Public/RxSwift/RxSwift.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RxSwift; - PRODUCT_NAME = RxSwift; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.1; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = PreRelease; - }; 8D95C529FCF4FDEA49C65D2E82670BCF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6C133D104E3B971D8853093D2A0A32B4 /* SwiftyRSA.debug.xcconfig */; + baseConfigurationReference = 99CD74167ED8CEFB7DC9CA5F9B66D0E4 /* SwiftyRSA.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12370,37 +12261,9 @@ }; name = Debug; }; - 8EFB90C3EFCC3608C2BF19FE92A51BD5 /* PreRelease */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C1D32C526B817BFAF0AB989D752D5936 /* SnapKit.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MODULEMAP_FILE = Headers/Public/SnapKit/SnapKit.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SnapKit; - PRODUCT_NAME = SnapKit; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = PreRelease; - }; 904AF2F6BEE0469BB3786D9548E42CC7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 15D6BA666326C03F80A85BFEDF295B13 /* SwiftyRSA.release.xcconfig */; + baseConfigurationReference = 3A75A95EB84953B276F45E0F5FAD4E37 /* SwiftyRSA.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12428,7 +12291,7 @@ }; 934475E4DA2C0BABCCF26DBEB031FCF6 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ABC6E315D8B4DFE8121C2E9E4E57559F /* DDAutoUIKit_Private.release.xcconfig */; + baseConfigurationReference = 1615AE46D5BA6D7B2DDF2EF81B402EAD /* DDAutoUIKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12456,7 +12319,7 @@ }; 9372D9A03A0E88D0504BA7590C49DF48 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7045948A081729E6912A67A49814DE16 /* DDUtilsSwiftKit_Private.debug.xcconfig */; + baseConfigurationReference = 4F88101538EE2A77224B3C1F7C32934E /* DDUtilsSwiftKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12481,9 +12344,36 @@ }; name = Debug; }; + 95F977185959B1C025A76CB343AF5CA8 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F741998B15409C128197BB366CC306E /* DDBasicControlsKit_Private.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/DDBasicControlsKit_Private/DDBasicControlsKit_Private-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/DDBasicControlsKit_Private/DDBasicControlsKit_Private.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = DDBasicControlsKit_Private; + PRODUCT_NAME = DDBasicControlsKit_Private; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 97407110C2616E82AAABA592E25F0B1E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 795909B64F353467B960AC23DF82236F /* DDAudioPlayerKit_Private.debug.xcconfig */; + baseConfigurationReference = 1780C08F8DCAEC4F2BD176907EF082A4 /* DDAudioPlayerKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12508,28 +12398,9 @@ }; name = Debug; }; - 98F8805D5F8E1B57875DA1ABB9FAAB86 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D872D7C3EF24EA7A12661B82ACF37064 /* DDBasicControlsKit_Private.release.xcconfig */; - buildSettings = { - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DDBasicControlsKit_Private"; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - IBSC_MODULE = DDBasicControlsKit_Private; - INFOPLIST_FILE = "Target Support Files/DDBasicControlsKit_Private/ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = DDBaseViewController; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; 9C23F3BFA136C876EABD07FBA9320B77 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C16CFFA10E10AC68D34D9C45D8627AE5 /* DDWebImageKit_Private.release.xcconfig */; + baseConfigurationReference = 87A9B783169EBC87CFDC1AF5E4A5F5BB /* DDWebImageKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12555,6 +12426,25 @@ }; name = Release; }; + 9D9533D34345B2B051D4EE8636AAD465 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9647BD171AFB23D3A34E71B4E3AA3198 /* DDBasicControlsKit_Private.release.xcconfig */; + buildSettings = { + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DDBasicControlsKit_Private"; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + IBSC_MODULE = DDBasicControlsKit_Private; + INFOPLIST_FILE = "Target Support Files/DDBasicControlsKit_Private/ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = DDBaseViewController; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; 9E406C6AAF85E580207CD97B0044DEAB /* Release */ = { isa = XCBuildConfiguration; buildSettings = { @@ -12619,7 +12509,7 @@ }; 9FC4AEA5BCE37566BA898173C24D35FB /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 53527B1AD2355D7D1879A8794C57BBE8 /* DDZFPlayerKit_Private.release.xcconfig */; + baseConfigurationReference = EBDCF9C9311B3503A80E8A638EC25A58 /* DDZFPlayerKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12647,7 +12537,7 @@ }; A053864A4C7CCE4DF4E4A2087D9E4CC8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 85971ECD34AD930163CB8649D33A557C /* JPush.debug.xcconfig */; + baseConfigurationReference = 6A9B731C7C9133C11F69006BDCA26F50 /* JPush.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12663,29 +12553,36 @@ }; name = Debug; }; - A426532A2A5ABE56A7F1BF1E2700593B /* PreRelease */ = { + A4CD520E11F66DE7710E54A848F102BB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC4E1917617F023685F6839CB2438EA8 /* DDMAMapKit_Private.release.xcconfig */; + baseConfigurationReference = FA1586A3E00388E9C70823796DACC14A /* SnapKit.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DDMAMapKit_Private"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; DEVELOPMENT_TEAM = W4SG324NS4; "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - IBSC_MODULE = DDMAMapKit_Private; - INFOPLIST_FILE = "Target Support Files/DDMAMapKit_Private/ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = DDMAMapKit_Private; + GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MODULEMAP_FILE = Headers/Public/SnapKit/SnapKit.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = SnapKit; + PRODUCT_NAME = SnapKit; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; }; - name = PreRelease; + name = Debug; }; A6B72CF8955C56DF71299106046D684E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E67F6D36E52E1896344836A05973FBDB /* RxCocoa.debug.xcconfig */; + baseConfigurationReference = F5CA91EB50F50DF3E3FEF0793030CFEF /* RxCocoa.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -12711,7 +12608,7 @@ }; A794012D20A5CD57211E1D4516C55EE5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 574CCA857D81E896F9A67CFC32B15A32 /* AMapSearch-NO-IDFA.release.xcconfig */; + baseConfigurationReference = 60C12B20AA097F6B962ECE262990F404 /* AMapSearch-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12731,7 +12628,7 @@ }; A91E6C1D84E7355205D2A116E4968450 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2DBCDA3159346DB0B5B1268A5B555A35 /* BRPickerView.release.xcconfig */; + baseConfigurationReference = C532DF0FD239F67E33BC7009890811BD /* BRPickerView.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -12758,7 +12655,7 @@ }; AC2BF088394456C214FB78D9ED463DAE /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DC8D30364BD377148EAFD6BCFA8A4809 /* DDUtilsSwiftKit_Private.release.xcconfig */; + baseConfigurationReference = CA5DAAA25AE8EDD19A8969327550AD00 /* DDUtilsSwiftKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12812,7 +12709,7 @@ }; AE9BE5BF7D5EA18EDF75839085C706F5 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C16CFFA10E10AC68D34D9C45D8627AE5 /* DDWebImageKit_Private.release.xcconfig */; + baseConfigurationReference = 87A9B783169EBC87CFDC1AF5E4A5F5BB /* DDWebImageKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12838,9 +12735,9 @@ }; name = PreRelease; }; - B1B3F1F0F6890E107F40A055677E2D79 /* Debug */ = { + AFF22389880C19424FDA8126D7FC57B2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D556921C9A1B32E0A547A047F0896E10 /* DDMAMapKit_Private.debug.xcconfig */; + baseConfigurationReference = A409749AD215AAA1622AC3955B0754DC /* DDMAMapKit_Private.release.xcconfig */; buildSettings = { CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DDMAMapKit_Private"; DEVELOPMENT_TEAM = W4SG324NS4; @@ -12851,14 +12748,15 @@ PRODUCT_NAME = DDMAMapKit_Private; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; B2155827CB60089BFE7E07CDD28D4162 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C2B5BE12966E4BFC22AE6A701FD66E8A /* JPush.release.xcconfig */; + baseConfigurationReference = 4C54F9CD91183CE4ADEC1F83999D3950 /* JPush.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12876,27 +12774,36 @@ }; name = Release; }; - B3FFB4EB0CEB4C8EE8D8FE8C02365DD1 /* Debug */ = { + B42C49B93AD114EC04F94A6D1211DB0D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BBC4A1F24EDA3263F4284B89F47B913D /* DDBasicControlsKit_Private.debug.xcconfig */; + baseConfigurationReference = 5C511C6AA2E322E60CF12039EF9A4C89 /* RxRelay.release.xcconfig */; buildSettings = { - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DDBasicControlsKit_Private"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; DEVELOPMENT_TEAM = W4SG324NS4; "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - IBSC_MODULE = DDBasicControlsKit_Private; - INFOPLIST_FILE = "Target Support Files/DDBasicControlsKit_Private/ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - PRODUCT_NAME = DDBaseViewController; + GCC_PREFIX_HEADER = "Target Support Files/RxRelay/RxRelay-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MODULEMAP_FILE = Headers/Public/RxRelay/RxRelay.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RxRelay; + PRODUCT_NAME = RxRelay; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; + SWIFT_VERSION = 5.1; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; B4FE51F4F207B2C4F54618B9A13E6CC8 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CBE79F1DEB908F14820EA89EAEEA020D /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */; + baseConfigurationReference = AC43FAA7E3C12560AA886DE857F93BA2 /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12924,7 +12831,7 @@ }; B6F97F207FCC488304C4B7A83E98E99C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC4E1917617F023685F6839CB2438EA8 /* DDMAMapKit_Private.release.xcconfig */; + baseConfigurationReference = A409749AD215AAA1622AC3955B0754DC /* DDMAMapKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12952,7 +12859,7 @@ }; B8100C82C69FDEFD77ADE441367788E7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D556921C9A1B32E0A547A047F0896E10 /* DDMAMapKit_Private.debug.xcconfig */; + baseConfigurationReference = CADC2F0323519D2B1EC5039CA5A6E625 /* DDMAMapKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12977,9 +12884,36 @@ }; name = Debug; }; + B92CC3398AD52E9497A40B2CA64E6AF8 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 93B8C6218FF5388B8AAD5B234909A20A /* DDCategoryKit_Private.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/DDCategoryKit_Private/DDCategoryKit_Private-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/DDCategoryKit_Private/DDCategoryKit_Private.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = DDCategoryKit_Private; + PRODUCT_NAME = DDCategoryKit_Private; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; BB4FE9F0AC1A5ECF8D07C1690147AD45 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9E8A34914BBC138DA91C0CDE3DDD9A4F /* DDToastKit_Private.release.xcconfig */; + baseConfigurationReference = 49446041930752FD6376250702C4AF9D /* DDToastKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13007,7 +12941,7 @@ }; BC3A49A5F1543E29E82A94504188C974 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DA00B4D6DD3233157D07880E5049A07D /* DDControlsKit_Private.release.xcconfig */; + baseConfigurationReference = 9D0F6B63ED009DCB443935C2CE7C3EAB /* DDControlsKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13035,7 +12969,7 @@ }; BDB50D1512B27C99FEC5AFD017B9C2FD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = ABC6E315D8B4DFE8121C2E9E4E57559F /* DDAutoUIKit_Private.release.xcconfig */; + baseConfigurationReference = 1615AE46D5BA6D7B2DDF2EF81B402EAD /* DDAutoUIKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13063,7 +12997,7 @@ }; BE22D79D33B14C35C020D24E71C6CFEE /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 15A3D781D1A99E34FA083B4FB5E7662B /* DDFontKit_Private.release.xcconfig */; + baseConfigurationReference = C08648DEED9804F089D41B684A7D1BCD /* DDFontKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13115,7 +13049,7 @@ }; C2CF9D64B823FDF5559C4A461A345DA5 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 15D6BA666326C03F80A85BFEDF295B13 /* SwiftyRSA.release.xcconfig */; + baseConfigurationReference = 3A75A95EB84953B276F45E0F5FAD4E37 /* SwiftyRSA.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13143,7 +13077,7 @@ }; C4050B58B3671D1B57C9668880DF1E94 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FB064C8064492D58BA1BE26DA697E302 /* Bugly.release.xcconfig */; + baseConfigurationReference = BCA2508381061E8227A93838DC1FE52C /* Bugly.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -13163,7 +13097,7 @@ }; C4879EE709DDBAAA009F3A5FB2176461 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7EB7B0A9C44B87EC7140C701FE2AD3ED /* ZLPhotoBrowser.debug.xcconfig */; + baseConfigurationReference = 90B9FF058E72ABE05F3B9B0DE1543FBD /* ZLPhotoBrowser.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13188,36 +13122,9 @@ }; name = Debug; }; - C492867194A211D48B79F69C98E907FE /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BBC4A1F24EDA3263F4284B89F47B913D /* DDBasicControlsKit_Private.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/DDBasicControlsKit_Private/DDBasicControlsKit_Private-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = Headers/Public/DDBasicControlsKit_Private/DDBasicControlsKit_Private.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DDBasicControlsKit_Private; - PRODUCT_NAME = DDBasicControlsKit_Private; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; C723089A4A8EECB528038729687D4337 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 237571514748449C9DEBBF69C47A7CFD /* AMapFoundation-NO-IDFA.debug.xcconfig */; + baseConfigurationReference = 91D57E0822EDE97592360AF71F937FD3 /* AMapFoundation-NO-IDFA.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -13235,7 +13142,7 @@ }; C7F778431CCFA2F935A0DB577516EBF7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4690C0C6E98072041DB84B803F2207AA /* JPushExtension.release.xcconfig */; + baseConfigurationReference = 5E403B9EEAD13AFBAB2871831C453524 /* JPushExtension.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -13256,7 +13163,7 @@ }; C9B5A7A9EE2F32B23DF16125FBECDF13 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D5929EBD76F6ADD256AA324D24F52A32 /* DDProgressHUDKit_Private.debug.xcconfig */; + baseConfigurationReference = D7606AAF9B3469C3A8E9BABB5B5D8298 /* DDProgressHUDKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13283,7 +13190,7 @@ }; CA71D1250878D7A2F10FC80912091C9E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 36882266D56742AF3E97A83FB24DCAEA /* ESTabBarController-swift.debug.xcconfig */; + baseConfigurationReference = 871F4538634B7C6510B6C6D3D01C0194 /* ESTabBarController-swift.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -13309,7 +13216,7 @@ }; CA8EE889378675C9A5C3F87CF3F81643 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D46A02AA3FEB386950BAB6DA32E6F726 /* DDAudioPlayerKit_Private.release.xcconfig */; + baseConfigurationReference = 09A1D3229C8D052062027ABBB1539377 /* DDAudioPlayerKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13335,37 +13242,9 @@ }; name = Release; }; - CBDE66112B3D688FF99C14F1BCE53088 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C1D32C526B817BFAF0AB989D752D5936 /* SnapKit.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/SnapKit/SnapKit-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MODULEMAP_FILE = Headers/Public/SnapKit/SnapKit.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = SnapKit; - PRODUCT_NAME = SnapKit; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; CE71B62CECF863FCD01752A325065BB8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FD5E1F42668AD531E8DA5CF07A8262F8 /* JPushExtension.debug.xcconfig */; + baseConfigurationReference = 664B80C9E1E223C3A5E06D7CE84141D8 /* JPushExtension.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -13382,9 +13261,37 @@ }; name = Debug; }; + D1EEFBB8D71B3D9AB85597B26967F419 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FE368C984EA9F1C0E750A90989284556 /* Kingfisher.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/Kingfisher/Kingfisher-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + MODULEMAP_FILE = Headers/Public/Kingfisher/Kingfisher.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = Kingfisher; + PRODUCT_NAME = Kingfisher; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; D4C6CC16ECDE97BFB3D9B16E26F2DFAB /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 03BDCBB30B6BF9E9B16313E806FE3E2B /* SwiftEntryKit.release.xcconfig */; + baseConfigurationReference = C7AFB2C050969535553B023673BFA656 /* SwiftEntryKit.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -13409,9 +13316,27 @@ }; name = PreRelease; }; + D5D881FA355FEB70A0CB3D98558FB370 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0F741998B15409C128197BB366CC306E /* DDBasicControlsKit_Private.debug.xcconfig */; + buildSettings = { + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DDBasicControlsKit_Private"; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + IBSC_MODULE = DDBasicControlsKit_Private; + INFOPLIST_FILE = "Target Support Files/DDBasicControlsKit_Private/ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = DDBaseViewController; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; D753782F97F4E74713668F63AC2264FC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B6B9EBE6340CB7AACFC41CCF5CCEE7B8 /* IQKeyboardManagerSwift.release.xcconfig */; + baseConfigurationReference = BD0B5C824276F88E52D0060A73CDB57D /* IQKeyboardManagerSwift.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13439,7 +13364,7 @@ }; D8C42B711DF611275F46D4A34ECE3773 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B4A45C8475EEC88204B9CA00F7CDC273 /* DDProgressHUDKit_Private.release.xcconfig */; + baseConfigurationReference = D88A57E0029FEF793BB477D6BD6761EC /* DDProgressHUDKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13465,9 +13390,36 @@ }; name = PreRelease; }; + D92226A198944BEF07F018F87857A66E /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = AA19C8D8B918C79F66601E7BD259C04E /* Kingfisher.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/Kingfisher/Kingfisher-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + MODULEMAP_FILE = Headers/Public/Kingfisher/Kingfisher.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = Kingfisher; + PRODUCT_NAME = Kingfisher; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; DF2EED8A10FE5D2C9BC103161FA8FF7A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 15A3D781D1A99E34FA083B4FB5E7662B /* DDFontKit_Private.release.xcconfig */; + baseConfigurationReference = C08648DEED9804F089D41B684A7D1BCD /* DDFontKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13495,7 +13447,7 @@ }; DFE3DB0D7A79153CE9B1B4EE24EDD541 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 23AB951B57ABE40ECC7FB7C1FC61C520 /* Alamofire.debug.xcconfig */; + baseConfigurationReference = D43F9DFE294B601576D924D8D14689E0 /* Alamofire.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13522,7 +13474,7 @@ }; E0AC88ADD941277FF7B427F755BC7B15 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D319BE64A44DF3EF7E975E3C7B5CB7E7 /* DDPersistenceKit_Private.release.xcconfig */; + baseConfigurationReference = 7E6DD7EB75072604E5832BA5E6C83DDE /* DDPersistenceKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13550,7 +13502,7 @@ }; E1031BB4531D9A9132E269EA00AFF8B4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DC8D30364BD377148EAFD6BCFA8A4809 /* DDUtilsSwiftKit_Private.release.xcconfig */; + baseConfigurationReference = CA5DAAA25AE8EDD19A8969327550AD00 /* DDUtilsSwiftKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13578,7 +13530,7 @@ }; E21A5F2FEA6117A1960CA8D8DF5802CF /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BA0391BD18FA000ED45F11F7FC0C5941 /* DDLogKit_Private.release.xcconfig */; + baseConfigurationReference = 1EC2252F82D266AE7F938DE967080413 /* DDLogKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13606,7 +13558,7 @@ }; E73E22AD2455596C012FDF52EDCEE9AD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F6ED0EF3CAC4FA857384CB73579D87F0 /* DDTimerSwiftKit_Private.debug.xcconfig */; + baseConfigurationReference = 4E4DBB2C70A01D3B2DA769ED641E4A77 /* DDTimerSwiftKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13695,7 +13647,7 @@ }; EEDB89A479687B1B952A7288C971BFB2 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4F131F91C961DC10071B0A90B6552041 /* DDDateKit_Private.release.xcconfig */; + baseConfigurationReference = 20D1ED4F3728D5F8DA90CE2EFB37B3AE /* DDDateKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13721,9 +13673,57 @@ }; name = PreRelease; }; + F1274DD423942F5FEFB3E0782B4BDD29 /* PreRelease */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = A409749AD215AAA1622AC3955B0754DC /* DDMAMapKit_Private.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/DDMAMapKit_Private"; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + IBSC_MODULE = DDMAMapKit_Private; + INFOPLIST_FILE = "Target Support Files/DDMAMapKit_Private/ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + PRODUCT_NAME = DDMAMapKit_Private; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = PreRelease; + }; + F48D45752144B7EB5AFE8E5114D893B9 /* PreRelease */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C1F9F1C286C0F8A5553D967D22C70702 /* DDCategoryKit_Private.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/DDCategoryKit_Private/DDCategoryKit_Private-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MODULEMAP_FILE = Headers/Public/DDCategoryKit_Private/DDCategoryKit_Private.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = DDCategoryKit_Private; + PRODUCT_NAME = DDCategoryKit_Private; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = PreRelease; + }; F4D09748EA447467AA488E65BF352248 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7A8C8AF30AD84DD09DAEBF8AB4449539 /* AMapTrack-NO-IDFA.release.xcconfig */; + baseConfigurationReference = CA7DA7ABF6E0DD9E4C0BD8433C515A3D /* AMapTrack-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -13742,7 +13742,7 @@ }; F5CC28EC3299B709423FB6C60A226B24 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2B21E4FEE4BE8BB22168C0E276B9E408 /* AMapLocation-NO-IDFA.release.xcconfig */; + baseConfigurationReference = D3033ED13E860307AC3657C99F0F019F /* AMapLocation-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -13761,7 +13761,7 @@ }; F6C7ECFF2293D4993D9933A5DE819A41 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EE32E345CCB48B3C34363F8452AC2BA3 /* DDFontKit_Private.debug.xcconfig */; + baseConfigurationReference = 09C0EE387BC54891D09ED7F95D00203C /* DDFontKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13786,37 +13786,9 @@ }; name = Debug; }; - F705F443C0EDDC46FD0D8D0D89E6AC44 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CE78DE063032C13CA169F0D4E35D0C06 /* DDCategoryKit_Private.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - GCC_PREFIX_HEADER = "Target Support Files/DDCategoryKit_Private/DDCategoryKit_Private-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; - MODULEMAP_FILE = Headers/Public/DDCategoryKit_Private/DDCategoryKit_Private.modulemap; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DDCategoryKit_Private; - PRODUCT_NAME = DDCategoryKit_Private; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; F7A68DC3E75DBA99B64E78F514059694 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 91434C469D5871EB47A06BB1F20E11BA /* DDColorKit_Private.debug.xcconfig */; + baseConfigurationReference = 927A1F1AC870032B4A7CDEAC436FF1E9 /* DDColorKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13841,9 +13813,36 @@ }; name = Debug; }; + F9CC133027F27675B95FF58C288CCFD0 /* PreRelease */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5C511C6AA2E322E60CF12039EF9A4C89 /* RxRelay.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/RxRelay/RxRelay-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MODULEMAP_FILE = Headers/Public/RxRelay/RxRelay.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RxRelay; + PRODUCT_NAME = RxRelay; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = PreRelease; + }; FB30073E2C0CCAE442B4761A540433B1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 95A0AA7C1BDCC650BEE58F0BEEC83F3C /* DDZFPlayerKit_Private.debug.xcconfig */; + baseConfigurationReference = 868F987DB35D5AF7FC49A6482780B71E /* DDZFPlayerKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13868,6 +13867,59 @@ }; name = Debug; }; + FB35A6E3B9DD4C2311B60B54F987F2B8 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 913C65E726ED99076CBDD7252B369B09 /* RxRelay.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/RxRelay/RxRelay-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MODULEMAP_FILE = Headers/Public/RxRelay/RxRelay.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RxRelay; + PRODUCT_NAME = RxRelay; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + FE86D24E81E78EC6B2384A315780D91F /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DAC7038C6A95B0C20D9EBA2157B13FF2 /* RxSwift.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + GCC_PREFIX_HEADER = "Target Support Files/RxSwift/RxSwift-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MODULEMAP_FILE = Headers/Public/RxSwift/RxSwift.modulemap; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RxSwift; + PRODUCT_NAME = RxSwift; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; + SWIFT_VERSION = 5.1; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -13901,16 +13953,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 236B03B8C0CBFBF891D760AFF4E4356A /* Build configuration list for PBXNativeTarget "DDBasicControlsKit_Private" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C492867194A211D48B79F69C98E907FE /* Debug */, - 40F6D0AE9835855615AD5B7556E7D3F4 /* PreRelease */, - 0B0585CA9A7F2313F00B9CBA9BD42DF0 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 2502DBFD94504E58AACFE09B0E8730C7 /* Build configuration list for PBXAggregateTarget "JCore" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -13951,6 +13993,16 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 301EADBC1C0496E7DBEB5BF3D8891F0B /* Build configuration list for PBXNativeTarget "RxRelay" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FB35A6E3B9DD4C2311B60B54F987F2B8 /* Debug */, + F9CC133027F27675B95FF58C288CCFD0 /* PreRelease */, + B42C49B93AD114EC04F94A6D1211DB0D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 3120225E7763A74BA53C664BD8B9E714 /* Build configuration list for PBXNativeTarget "DDNetworkingOfAlamofireKit_Private" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -14011,6 +14063,16 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 3DD2F12D4D2F93ACF5E6EF69394C4B15 /* Build configuration list for PBXNativeTarget "DDCategoryKit_Private" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B92CC3398AD52E9497A40B2CA64E6AF8 /* Debug */, + F48D45752144B7EB5AFE8E5114D893B9 /* PreRelease */, + 3588DF6935EC08695627215DC96B976E /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 42640293F3A3C60B57F8E8CB6A88B983 /* Build configuration list for PBXAggregateTarget "JPush" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -14061,6 +14123,26 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 53F295397685813244AF72ABB6CB819E /* Build configuration list for PBXNativeTarget "RxSwift" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5E1438C49B0DC03C2AB18BB5366C227E /* Debug */, + 092C7238D5D495702DD60A0CFFA8B724 /* PreRelease */, + FE86D24E81E78EC6B2384A315780D91F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 571BBAD93A2404A1BA813C2197D9788F /* Build configuration list for PBXNativeTarget "Kingfisher" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D92226A198944BEF07F018F87857A66E /* Debug */, + 8846E2D7356F419921655F8D62A02CC8 /* PreRelease */, + D1EEFBB8D71B3D9AB85597B26967F419 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 66EAA3BFDBEA385153E119A68ED72B96 /* Build configuration list for PBXNativeTarget "Pods-OrderScheduling" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -14081,16 +14163,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7C95A47DF318598B17AF73DC202F0659 /* Build configuration list for PBXNativeTarget "DDBasicControlsKit_Private-DDBaseViewController" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - B3FFB4EB0CEB4C8EE8D8FE8C02365DD1 /* Debug */, - 24C92530424FF6AC7E994BD30DB618BA /* PreRelease */, - 98F8805D5F8E1B57875DA1ABB9FAAB86 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 9112C4B5379A7A93828F210A5BCC34CC /* Build configuration list for PBXAggregateTarget "JPushExtension" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -14101,16 +14173,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 92D398CB55D3771AEC920521598DDDD8 /* Build configuration list for PBXNativeTarget "DDCategoryKit_Private" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 473D06A8777B89B3EB7C797154ACB8DD /* Debug */, - 5940106FE5C33BAFC3B51D6D72449AD1 /* PreRelease */, - F705F443C0EDDC46FD0D8D0D89E6AC44 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 9548A22CCE439C8FB7025321E7EBC912 /* Build configuration list for PBXAggregateTarget "AMapSearch-NO-IDFA" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -14121,16 +14183,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9E0A533EE547D0DAB2400181BB838A66 /* Build configuration list for PBXNativeTarget "RxSwift" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 77CDEA29DCF4D522041B2BEB9309F6E6 /* Debug */, - 8D0669E61B9581323401A375923A6F91 /* PreRelease */, - 49CD0A16FC5F1DFC2D115E5872B602A6 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 9EB92E65E087ED35064D736C3DA4758F /* Build configuration list for PBXNativeTarget "DDMAMapKit_Private" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -14151,32 +14203,12 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A7797DB020BF6F2ADB9186C81D36E3E2 /* Build configuration list for PBXNativeTarget "DDMAMapKit_Private-DDMAMapKit_Private" */ = { + ADFF35896AEF363010BAB413E213D106 /* Build configuration list for PBXNativeTarget "DDBasicControlsKit_Private" */ = { isa = XCConfigurationList; buildConfigurations = ( - B1B3F1F0F6890E107F40A055677E2D79 /* Debug */, - A426532A2A5ABE56A7F1BF1E2700593B /* PreRelease */, - 86CF53637FEA6E3C784C4012C2A50DDF /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - A8914093F789C3EF7232BFBD4277F1AD /* Build configuration list for PBXNativeTarget "SnapKit" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 194384CF9865EA5A6F621CD50261DE63 /* Debug */, - 8EFB90C3EFCC3608C2BF19FE92A51BD5 /* PreRelease */, - CBDE66112B3D688FF99C14F1BCE53088 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - A8EDFEA56DD31572CE60F0BF143D6656 /* Build configuration list for PBXNativeTarget "Kingfisher" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 5ED76EEE65E0AB36DF27B66CDA4E0B5F /* Debug */, - 0DF558CBD9E19EC36A6463AD3B5EF388 /* PreRelease */, - 2BCAD72D5457749C81587BBA8B2AE6EF /* Release */, + 95F977185959B1C025A76CB343AF5CA8 /* Debug */, + 02EAF8F8D4762C1B17A8CEB476228273 /* PreRelease */, + 3810F09D10322B304912A8FC9D90FE73 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -14251,6 +14283,16 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + CA3A2D1D6C10BCD6DB627B616B6FE4D2 /* Build configuration list for PBXNativeTarget "SnapKit" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A4CD520E11F66DE7710E54A848F102BB /* Debug */, + 86CDA59C5FCE0A39F81AF831CF7814BF /* PreRelease */, + 7684C40E79059CBBC3C4FB4248E983EA /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; D4DF964BCCEC6C6DD17FC5511C5756AB /* Build configuration list for PBXNativeTarget "RxCocoa" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -14281,12 +14323,12 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - ECE489E4E85D35B9B885D01E86C8BF8A /* Build configuration list for PBXNativeTarget "RxRelay" */ = { + E71775DFA47E1392CD537C585D6D458D /* Build configuration list for PBXNativeTarget "DDBasicControlsKit_Private-DDBaseViewController" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2EFA51C2D767E628288BBBD4C03290FC /* Debug */, - 1BE06CA0F45A176E13F06FC290EBA5CC /* PreRelease */, - 29B02E29B10CD71B73EC6F841D51CFC7 /* Release */, + D5D881FA355FEB70A0CB3D98558FB370 /* Debug */, + 23B3E87EDAD791506384D78AD5FB5BDE /* PreRelease */, + 9D9533D34345B2B051D4EE8636AAD465 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -14301,6 +14343,16 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + EFE7D2759B3D2A3C6DD9B67530E89C9A /* Build configuration list for PBXNativeTarget "DDMAMapKit_Private-DDMAMapKit_Private" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 04AF2F6130294009FD2F40ECEDC03DF7 /* Debug */, + F1274DD423942F5FEFB3E0782B4BDD29 /* PreRelease */, + AFF22389880C19424FDA8126D7FC57B2 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; F29526EC74C48CD79CAD0E262BC3A959 /* Build configuration list for PBXNativeTarget "DDTimerSwiftKit_Private" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/Pods/Target Support Files/DDBasicControlsKit_Private/DDBasicControlsKit_Private-umbrella.h b/Pods/Target Support Files/DDBasicControlsKit_Private/DDBasicControlsKit_Private-umbrella.h index 4ea92f9..eeb538a 100644 --- a/Pods/Target Support Files/DDBasicControlsKit_Private/DDBasicControlsKit_Private-umbrella.h +++ b/Pods/Target Support Files/DDBasicControlsKit_Private/DDBasicControlsKit_Private-umbrella.h @@ -10,6 +10,7 @@ #endif #endif +#import "DDBasicControls.h" #import "DDViewControllerAnimatedTransition.h" #import "DDBaseAttributedString.h" #import "DDBaseMutableAttributedString.h" @@ -19,16 +20,19 @@ #import "DDBaseImage.h" #import "DDBaseImageView.h" #import "DDBaseLabel.h" +#import "DDBaseModel.h" #import "DDBaseNavigationController.h" #import "DDNavigationControllerDelegateReceiver.h" #import "DDBaseScrollView.h" #import "DDBaseSwitch.h" +#import "DDBaseTabBarController.h" #import "DDBaseTableView.h" #import "DDBaseTableViewCell.h" #import "DDBaseTextField.h" #import "DDBaseTextView.h" #import "DDBaseView.h" #import "DDBaseViewController.h" +#import "DDBaseViewModel.h" FOUNDATION_EXPORT double DDBasicControlsKit_PrivateVersionNumber; FOUNDATION_EXPORT const unsigned char DDBasicControlsKit_PrivateVersionString[];