diff --git a/OrderScheduling.xcworkspace/xcuserdata/zd.xcuserdatad/UserInterfaceState.xcuserstate b/OrderScheduling.xcworkspace/xcuserdata/zd.xcuserdatad/UserInterfaceState.xcuserstate index 4fa7816..8eb69f9 100644 Binary files a/OrderScheduling.xcworkspace/xcuserdata/zd.xcuserdatad/UserInterfaceState.xcuserstate and b/OrderScheduling.xcworkspace/xcuserdata/zd.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/Podfile b/Podfile index a4b4ff1..594b0ae 100644 --- a/Podfile +++ b/Podfile @@ -39,7 +39,7 @@ target 'OrderScheduling' do pod 'Bugly' pod 'SwiftyRSA' pod 'DDPersistenceKit_Private' - pod 'DDUIGestureRecognizer', :path => '/Users/zd/Desktop/PodRepository/DDUIGestureRecognizer' + pod 'DDUIGestureRecognizer', '0.1.4' post_install do |installer| installer.pods_project.targets.each do |target| diff --git a/Podfile.lock b/Podfile.lock index fbbe4bc..7ea91eb 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -282,9 +282,9 @@ PODS: - DDTimerSwiftKit_Private (0.2.1): - DDLogKit_Private/SwiftLog - DDToastKit_Private (0.1.2) - - DDUIGestureRecognizer (0.1.3): - - DDUIGestureRecognizer/DDUIPanGestureRecognizer (= 0.1.3) - - DDUIGestureRecognizer/DDUIPanGestureRecognizer (0.1.3) + - DDUIGestureRecognizer (0.1.4): + - DDUIGestureRecognizer/DDUIPanGestureRecognizer (= 0.1.4) + - DDUIGestureRecognizer/DDUIPanGestureRecognizer (0.1.4) - DDUtilsSwiftKit_Private (0.1.1): - DDUtilsSwiftKit_Private/ApplicationInfo (= 0.1.1) - DDUtilsSwiftKit_Private/DeviceInfo (= 0.1.1) @@ -351,7 +351,7 @@ DEPENDENCIES: - DDProgressHUDKit_Private - DDTimerSwiftKit_Private - DDToastKit_Private - - DDUIGestureRecognizer (from `/Users/zd/Desktop/PodRepository/DDUIGestureRecognizer`) + - DDUIGestureRecognizer (= 0.1.4) - DDUtilsSwiftKit_Private - DDWebImageKit_Private - DDZFPlayerKit_Private/ControlView @@ -387,6 +387,7 @@ SPEC REPOS: - DDProgressHUDKit_Private - DDTimerSwiftKit_Private - DDToastKit_Private + - DDUIGestureRecognizer - DDUtilsSwiftKit_Private - DDWebImageKit_Private - DDZFPlayerKit_Private @@ -415,10 +416,6 @@ SPEC REPOS: - SwiftyRSA - ZLPhotoBrowser -EXTERNAL SOURCES: - DDUIGestureRecognizer: - :path: "/Users/zd/Desktop/PodRepository/DDUIGestureRecognizer" - SPEC CHECKSUMS: Alamofire: 3ca42e259043ee0dc5c0cdd76c4bc568b8e42af7 AMapFoundation-NO-IDFA: 6ce0ef596d4eb8d934ff498e56747b6de1247b05 @@ -443,7 +440,7 @@ SPEC CHECKSUMS: DDProgressHUDKit_Private: 1e219062ddeb7801a4bb13b367efa1f3fbf17f1e DDTimerSwiftKit_Private: cce3fe58b1b581fe4cddb3fb84fcde31b4e83541 DDToastKit_Private: b6ae3709d110cadca503a037419f3709d1755256 - DDUIGestureRecognizer: a982a64f406b79649e61bb04ea74edf766d9abc7 + DDUIGestureRecognizer: 207a58f9c0123664ff8d9d323d94e1481975b696 DDUtilsSwiftKit_Private: 03575cb3204cd43f3521049263f4b6cae3e64700 DDWebImageKit_Private: b905111547e44626773b729bae9030403a9a0c76 DDZFPlayerKit_Private: 5f63a8101e35ffd7b2568f551cbf33b8bedc48ba @@ -463,6 +460,6 @@ SPEC CHECKSUMS: SwiftyRSA: 8c6dd1ea7db1b8dc4fb517a202f88bb1354bc2c6 ZLPhotoBrowser: 0563c2bfc7b247b65d023d646012f46cba94101b -PODFILE CHECKSUM: 9fc07eabd4fa5dd9a6251d8c52567b53b4ea6e85 +PODFILE CHECKSUM: b8d52ee7c2693a0587d0eddb0f63d9e164d97c2d COCOAPODS: 1.11.3 diff --git a/Pods/DDUIGestureRecognizer/DDUIGestureRecognizer/Classes/DDUIPanGestureRecognizer/DDUIPanGestureRecognizer.swift b/Pods/DDUIGestureRecognizer/DDUIGestureRecognizer/Classes/DDUIPanGestureRecognizer/DDUIPanGestureRecognizer.swift index 8c302c1..4761b93 100644 --- a/Pods/DDUIGestureRecognizer/DDUIGestureRecognizer/Classes/DDUIPanGestureRecognizer/DDUIPanGestureRecognizer.swift +++ b/Pods/DDUIGestureRecognizer/DDUIGestureRecognizer/Classes/DDUIPanGestureRecognizer/DDUIPanGestureRecognizer.swift @@ -11,12 +11,18 @@ open class DDUIPanGestureRecognizer : UIPanGestureRecognizer { case bottom,top } + + public enum ExpandLevel { + case min,`default`,max + } + public struct PanGesValue { - public var from : PanGestureFromType = .bottom - public var minDisplayHeight : CGFloat = 0 - public var maxDisplayHeight : CGFloat = 0 - public var criticalValue : CGFloat? - public var isExpanded : Bool = false + public var from : PanGestureFromType = .bottom /// 从什么位置弹出 + public var minDisplayHeight : CGFloat = 0 /// 最小显示的高度 + public var defaultDisplayHeight : CGFloat = 0 /// 默认弹出的高度 + public var maxDisplayHeight : CGFloat = 0 /// 最大显示的高度 + public var criticalValue : CGFloat? /// 标记当前需要完全展开时的临界值 + public var expandLevel : ExpandLevel = .min /// 标记当前是否是展开的状态 internal var translationY : CGFloat = 0 internal var currentY : CGFloat = 0 } @@ -37,32 +43,7 @@ open class DDUIPanGestureRecognizer : UIPanGestureRecognizer { } @objc fileprivate func panGesAction(ges: DDUIPanGestureRecognizer) { - guard let superView = ges.view?.superview else { - assert(false,"父类都没有,拖什么拖") - return - } - - let superViewFrame = superView.frame - let viewFrame = ges.view?.frame ?? .zero - let superViewH = superViewFrame.size.height - let viewH = viewFrame.size.height - - switch ges.panGesValue.from { - case .bottom: - /// 拖动的view的最小y值,这个值和view的高度有关,view的最大y值要和它的superView的最大y值相等,所以minY可能等于deltaH - var minY = superViewH - ges.panGesValue.maxDisplayHeight - let deltaH = superViewH - viewH - if deltaH > minY { - minY = deltaH - } - - /// 拖动的view的最大y值 - var maxY = superViewH - ges.panGesValue.minDisplayHeight - if deltaH > maxY { - maxY = deltaH - } - - var currentY : CGFloat = 0.0 + getBaseValue(duration: 0.1) { viewFrame, minY, defaultY, maxY, currentY in switch ges.state { case .began: currentY = viewFrame.origin.y @@ -74,17 +55,6 @@ open class DDUIPanGestureRecognizer : UIPanGestureRecognizer { ges.panGesValue.translationY = translationPoint.y currentY = (viewFrame.origin.y) + deltaY - - /// 当到达最小y值时返回 - if currentY < minY { - return - } - - /// 当到达最大y值时返回 - if currentY > maxY { - return - } - break case .ended: /// 当拖动的距离到达某个值时就完全显示 @@ -93,12 +63,8 @@ open class DDUIPanGestureRecognizer : UIPanGestureRecognizer { if ges.panGesValue.currentY < criticalY { currentY = minY - /// 已经展开 - ges.panGesValue.isExpanded = true }else{ currentY = maxY - /// 未展开 - ges.panGesValue.isExpanded = false } ges.panGesValue.translationY = 0 break @@ -106,17 +72,86 @@ open class DDUIPanGestureRecognizer : UIPanGestureRecognizer { currentY = viewFrame.origin.y break } - ges.panGesValue.currentY = currentY + } + } + + func getBaseValue(duration: TimeInterval,baseValueHandler: (_ viewFrame: CGRect, _ minY: CGFloat, _ defaultY: CGFloat, _ maxY: CGFloat,_ currentY: inout CGFloat) -> Void) { + guard let superView = view?.superview else { + assert(false,"父类都没有,拖什么拖") + return + } - UIView.animate(withDuration: 0.1, animations: { - ges.view?.frame = CGRectMake(viewFrame.origin.x, currentY, viewFrame.size.width, viewFrame.size.height) + let superViewFrame = superView.frame + let viewFrame = view?.frame ?? .zero + let superViewH = superViewFrame.size.height + let viewH = viewFrame.size.height + + switch panGesValue.from { + case .bottom: + /// 拖动的view的最小y值,这个值和view的高度有关,view的最大y值要和它的superView的最大y值相等,所以minY可能等于deltaH + var minY = superViewH - panGesValue.maxDisplayHeight + let deltaH = superViewH - viewH + if deltaH > minY { + minY = deltaH + } + + /// 拖动的view的最大y值 + var maxY = superViewH - panGesValue.minDisplayHeight + if deltaH > maxY { + maxY = deltaH + } + + /// 默认弹出的y值 + var defaultY = superViewH - panGesValue.defaultDisplayHeight + if deltaH > defaultY { + defaultY = deltaH + } + + var currentY : CGFloat = 0.0 + + /// 计算值 + baseValueHandler(viewFrame,minY,defaultY,maxY,¤tY) + + /// 当到达最小y值时返回 + if currentY < minY { + return + } + + /// 当到达最大y值时返回 + if currentY > maxY { + return + } + + panGesValue.currentY = currentY + + if panGesValue.currentY == minY { + panGesValue.expandLevel = .max + }else if panGesValue.currentY == maxY { + panGesValue.expandLevel = .min + }else if panGesValue.currentY == defaultY { + panGesValue.expandLevel = .default + } + + UIView.animate(withDuration: duration, animations: {[weak self] in + self?.view?.frame = CGRectMake(viewFrame.origin.x, currentY, viewFrame.size.width, viewFrame.size.height) }) break - default: + default: break - } - - } + } + } + + public func expand(_ expand: ExpandLevel) { + getBaseValue(duration: 0.25) { viewFrame, minY, defaultY, maxY, currentY in + if expand == .max { + currentY = minY + }else if expand == .min { + currentY = maxY + }else if expand == .default { + currentY = defaultY + } + } + } } extension UIView { diff --git a/Pods/Local Podspecs/DDUIGestureRecognizer.podspec.json b/Pods/Local Podspecs/DDUIGestureRecognizer.podspec.json deleted file mode 100644 index 6320a5e..0000000 --- a/Pods/Local Podspecs/DDUIGestureRecognizer.podspec.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "DDUIGestureRecognizer", - "version": "0.1.3", - "summary": "A short description of DDUIGestureRecognizer.", - "description": "TODO: Add long description of the pod here.", - "homepage": "https://github.com/DDIsFriend/DDUIGestureRecognizer", - "license": { - "type": "MIT", - "file": "LICENSE" - }, - "authors": { - "DDIsFriend": "DDIsFriend@163.com" - }, - "source": { - "git": "git@github.com:DDIsFriend/DDUIGestureRecognizer.git", - "tag": "0.1.3" - }, - "platforms": { - "ios": "12.0" - }, - "swift_versions": "4.0", - "subspecs": [ - { - "name": "DDUIPanGestureRecognizer", - "source_files": "DDUIGestureRecognizer/Classes/DDUIPanGestureRecognizer/**/*" - } - ], - "swift_version": "4.0" -} diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index fbbe4bc..7ea91eb 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -282,9 +282,9 @@ PODS: - DDTimerSwiftKit_Private (0.2.1): - DDLogKit_Private/SwiftLog - DDToastKit_Private (0.1.2) - - DDUIGestureRecognizer (0.1.3): - - DDUIGestureRecognizer/DDUIPanGestureRecognizer (= 0.1.3) - - DDUIGestureRecognizer/DDUIPanGestureRecognizer (0.1.3) + - DDUIGestureRecognizer (0.1.4): + - DDUIGestureRecognizer/DDUIPanGestureRecognizer (= 0.1.4) + - DDUIGestureRecognizer/DDUIPanGestureRecognizer (0.1.4) - DDUtilsSwiftKit_Private (0.1.1): - DDUtilsSwiftKit_Private/ApplicationInfo (= 0.1.1) - DDUtilsSwiftKit_Private/DeviceInfo (= 0.1.1) @@ -351,7 +351,7 @@ DEPENDENCIES: - DDProgressHUDKit_Private - DDTimerSwiftKit_Private - DDToastKit_Private - - DDUIGestureRecognizer (from `/Users/zd/Desktop/PodRepository/DDUIGestureRecognizer`) + - DDUIGestureRecognizer (= 0.1.4) - DDUtilsSwiftKit_Private - DDWebImageKit_Private - DDZFPlayerKit_Private/ControlView @@ -387,6 +387,7 @@ SPEC REPOS: - DDProgressHUDKit_Private - DDTimerSwiftKit_Private - DDToastKit_Private + - DDUIGestureRecognizer - DDUtilsSwiftKit_Private - DDWebImageKit_Private - DDZFPlayerKit_Private @@ -415,10 +416,6 @@ SPEC REPOS: - SwiftyRSA - ZLPhotoBrowser -EXTERNAL SOURCES: - DDUIGestureRecognizer: - :path: "/Users/zd/Desktop/PodRepository/DDUIGestureRecognizer" - SPEC CHECKSUMS: Alamofire: 3ca42e259043ee0dc5c0cdd76c4bc568b8e42af7 AMapFoundation-NO-IDFA: 6ce0ef596d4eb8d934ff498e56747b6de1247b05 @@ -443,7 +440,7 @@ SPEC CHECKSUMS: DDProgressHUDKit_Private: 1e219062ddeb7801a4bb13b367efa1f3fbf17f1e DDTimerSwiftKit_Private: cce3fe58b1b581fe4cddb3fb84fcde31b4e83541 DDToastKit_Private: b6ae3709d110cadca503a037419f3709d1755256 - DDUIGestureRecognizer: a982a64f406b79649e61bb04ea74edf766d9abc7 + DDUIGestureRecognizer: 207a58f9c0123664ff8d9d323d94e1481975b696 DDUtilsSwiftKit_Private: 03575cb3204cd43f3521049263f4b6cae3e64700 DDWebImageKit_Private: b905111547e44626773b729bae9030403a9a0c76 DDZFPlayerKit_Private: 5f63a8101e35ffd7b2568f551cbf33b8bedc48ba @@ -463,6 +460,6 @@ SPEC CHECKSUMS: SwiftyRSA: 8c6dd1ea7db1b8dc4fb517a202f88bb1354bc2c6 ZLPhotoBrowser: 0563c2bfc7b247b65d023d646012f46cba94101b -PODFILE CHECKSUM: 9fc07eabd4fa5dd9a6251d8c52567b53b4ea6e85 +PODFILE CHECKSUM: b8d52ee7c2693a0587d0eddb0f63d9e164d97c2d COCOAPODS: 1.11.3 diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index 84dd67a..6477dbc 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -13,8 +13,8 @@ buildPhases = ( ); dependencies = ( - 9315646DFB230943AE08D7DC6AB64996 /* PBXTargetDependency */, - EEFA1BDE1B99B6582FBFAB32234A4035 /* PBXTargetDependency */, + 832B6C641E5860F0ACB886E6D5AB849B /* PBXTargetDependency */, + 95899E2ECE93569A0FBD475D147DAAD8 /* PBXTargetDependency */, ); name = "AMapTrack-NO-IDFA"; }; @@ -33,7 +33,7 @@ buildPhases = ( ); dependencies = ( - EB5355336D507988AEA7D1E4703EC8A9 /* PBXTargetDependency */, + 68959D01EE1A22C98A70F2FEE298700E /* PBXTargetDependency */, ); name = "AMapLocation-NO-IDFA"; }; @@ -43,7 +43,7 @@ buildPhases = ( ); dependencies = ( - 9E149376349FE2CE9A47B96108E27A09 /* PBXTargetDependency */, + AB251E8AEF755EBAC70111D58F663144 /* PBXTargetDependency */, ); name = "AMapSearch-NO-IDFA"; }; @@ -54,7 +54,7 @@ 329295F5A096E0819713CBB5799FA87B /* [CP] Copy XCFrameworks */, ); dependencies = ( - B6FE5ECC6A7973DBA91A91E669237939 /* PBXTargetDependency */, + D0F014851D8E5EBB0C1E9A02E9CB6796 /* PBXTargetDependency */, ); name = JPush; }; @@ -93,3240 +93,3237 @@ buildPhases = ( ); dependencies = ( - 2AE91D6196566D9642D528C7C09C39D4 /* PBXTargetDependency */, + 6E997D94C0776BAA94F1DD8961A88E08 /* PBXTargetDependency */, ); name = "AMapNavi-NO-IDFA"; }; /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 00149C338A154F7A90372D9D111E890D /* UIScrollView+ZFPlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = E23690602F1F2488B74ED123C0F50923 /* UIScrollView+ZFPlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 007AB6C15B6672A5A9601A8B52D008E2 /* ConstraintMakerPrioritizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF57C2F96F08650971648691090F449E /* ConstraintMakerPrioritizable.swift */; }; - 011A1EBE3B8FEAEC24BA46DA5217CA60 /* DDBaseButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 5AD026EC53A99795D22A2F4D9151029B /* DDBaseButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 012C3348FDB9BD307BC866EC0B5D23A3 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 7141078F3B6E34C10F24EDAC1DF45276 /* SDImageCacheDefine.m */; }; - 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 */; }; - 01D4F59573F4EBC19253B4997C142FDF /* UIButton+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = E547F94527C61B623B7692BFFA58A7A7 /* UIButton+DDCategory.m */; }; - 01D8AE321F1FA71F2D43127EAC90559D /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B0F5C1B77C4DFBC89FCC0D6F1B649AA4 /* NSButton+WebCache.m */; }; - 01EC61F5E637274D4A163913FF389479 /* DiskStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA3F4F32285B3D7988F8318EFC6F8DBF /* DiskStorage.swift */; }; - 02070451CE821D45E1C03FA4E1B0797F /* Observable+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61B97D6EFAEBABB126F08996452C5C2D /* Observable+Concurrency.swift */; }; - 02780D132E8AA44865FEF53E4D5155E6 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = FA8D42323BA231450F57A9C8F53795CE /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 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, ); }; }; - 02F7D99771CF9DB3A5E3691C43959C71 /* NSURL+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = A319958E73C98ACF9F54AC059009CC1B /* NSURL+DDCategory.m */; }; - 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 */; }; - 037DA71DFD7C14403F2A0AD5B4B4BB46 /* UITableViewCell+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = E098D99A76CC9954A6BE37F5635FC9A8 /* UITableViewCell+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03F49347022588D854C01F59944A65F6 /* NSObject+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E80CF754935616F3D07EC39D0154570 /* NSObject+DDCategory.m */; }; - 04131C0EECA33AD45AD1E07CF500E344 /* RTLManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AC15D5FB3C69C246019033A6888F1939 /* RTLManager.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 */; }; - 0591B0EE71308251E0E53C6D3EDB3D4C /* ESTabBarItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8C25B177A2D21BBC6095F9C9455DA74 /* ESTabBarItem.swift */; }; - 059DE39D2D7414DD88A410B406D3AD8F /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 766B6947AAFF5ABDA10B93CDB391BC72 /* SDImageTransformer.m */; }; - 0605E2513549327B19854B3FED759B44 /* ControlEvent+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEE9361B2BA7FAA41C595FC2582601D9 /* ControlEvent+Driver.swift */; }; - 0649EE1B50B4C275D251820B2B3D8B90 /* ImageView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46C4377164C043750C96E798F75BA55A /* ImageView+Kingfisher.swift */; }; - 065E058B7EFAEF60F0FE94916FBF3CFF /* DDBaseModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 621849EEF1C1322DA52276BEC1403F0D /* DDBaseModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 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, ); }; }; - 0705995CD21541E3DC5E1A6A55F17133 /* KingfisherOptionsInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB422058BCE7D4C81274BB6CDBF11004 /* KingfisherOptionsInfo.swift */; }; - 070AC1A560FD65090FD38168F6F8E8C4 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A93C52AF91D91D00889A4AAB0B4D433 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07268E64E67A3CD3437C4E396FF8B847 /* Infallible+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFDADAAEC5AFF73C0D5758118E696E4D /* Infallible+Zip+arity.swift */; }; - 07B9885934C75EB3E6850A2C46F4896A /* Sequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 422D0406870D7669AE5338E20EDB217C /* Sequence.swift */; }; - 0805E0FB391A1881385C5E015A3A83E1 /* CombineLatest.swift in Sources */ = {isa = PBXBuildFile; fileRef = F380C5D34907A0E2146FBEDD873DE75D /* CombineLatest.swift */; }; - 0811BB981A2EF4E3C78C193E8AE1A4BA /* DDCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5DC0DDE990C0A7033E161AA7E899E94 /* DDCollectionViewCell.swift */; }; - 08CC4F2CF084EB4C21FD37F7D5C1728A /* ItemEvents.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2618B28A7F9A7728D42E28F08EC3888 /* ItemEvents.swift */; }; - 08F8EFD283376EC9FB133B65EDC7CB0A /* Deferred.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CC42ABCEA6FE16E2511E008BD56A121 /* Deferred.swift */; }; - 09B9E5FB7E73F28A4E1F581917EF868A /* JXCategoryNumberCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8183B206803DE53281F25BC255C285A5 /* JXCategoryNumberCellModel.m */; }; - 09CB072529CD8E230649CBA428E3550F /* MJRefreshConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 38B4BE3790A38C9083BABC50AA41A6B9 /* MJRefreshConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A48365168E380D8C829E264AD65BBAA /* Repeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5367AB4D26D6B38E8AF4332BE5E5CE53 /* Repeat.swift */; }; - 0A63CF97741EC5402E45D6AE7EF3E600 /* NSAttributedString+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 600A1C0385E364EECC0CADEC9529C0B7 /* NSAttributedString+DDCategory.m */; }; - 0A762FAE78A91ABC899CB431FE10B9FD /* ESTabBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 103D13B1AC5D7F9F135AA9B5F778A1FA /* ESTabBarController.swift */; }; - 0A9F482C0FC3265F693489AC45825ED9 /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1615A11842BF97FF0AB14145E054EDB7 /* Map.swift */; }; - 0B40266EFC1644C2B93EEF5A4A73EBD6 /* UITableView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 8409E2B8BBA225FA53243A31057F10DF /* UITableView+DDCategory.m */; }; - 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 */; }; - 0BCF8CB00A9A52600E24370C7144693F /* EKNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C8B6185261C4A1F47B8494904765E50B /* EKNoteMessageView.swift */; }; - 0BE6D5F00195B60DA630E0A166175168 /* Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 400211ECF73A18F5EF80A57BF4FAC8E6 /* Infallible.swift */; }; - 0C4E880F49B0F01DD8DF4392093AE787 /* SubscribeOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AB8E151032EACAC5DF0370A209F5024 /* SubscribeOn.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, ); }; }; - 0CF0A87B87DF71F838545FC4B0161A8B /* ZLResultModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4CD34B8BB386448EF5A713B15600AC32 /* ZLResultModel.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, ); }; }; - 0D7F3A17B7CDD4079F6555A2A6105A13 /* DisposeBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70CA38B9B302CB892D83B42C9D260996 /* DisposeBase.swift */; }; - 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 */; }; - 0F5CA6C679D45D3382D87A90E92DA143 /* Date+Dispatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B3A9D01AB4924136619B4FCCBD9A510 /* Date+Dispatch.swift */; }; - 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, ); }; }; - 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 */; }; - 14006084B55ECBF580E396E89C097D64 /* ZLEditToolCells.swift in Sources */ = {isa = PBXBuildFile; fileRef = A50025A48B4C30B28A6D2B6E4BCD2811 /* ZLEditToolCells.swift */; }; - 1407EAE2457FA01EDEFB9BAD6418F566 /* Placeholder.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF6C455861CE7535DBC4C7C506FC4BDE /* Placeholder.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 */; }; - 14C821B748B65A96E6D91708B70C0A93 /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 081E5C402ACBD0B56D7B56AB8E8F3A00 /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1508C2BD698331D7B1EBC514D41DA0A2 /* CompactMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = C34D216497732A44544F47481406400C /* CompactMap.swift */; }; - 150C28155BF8CF59C73A6B0358ECD72A /* Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = A830C26521C532751DB622B4D379B501 /* Create.swift */; }; - 159BBC585A2C51D44D40DE88B5B18AAF /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = FAB77DBD2EAA9186B4C583AE22CF34A3 /* NSBundle+MJRefresh.m */; }; - 15ACC15C516BDF3E1A2331158B73E281 /* ExtensionHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3043EDD79265F99BAB8C607B74DB57C2 /* ExtensionHelpers.swift */; }; - 15D38081B9302FBAF9A361BAD7E5B05F /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 19C56CF2A70806FCBCD97D965F5DC0E2 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 161A175EF28B75C2705F6B0444A8168E /* AsSingle.swift in Sources */ = {isa = PBXBuildFile; fileRef = B401C5BDB0EE0FDF670F962EC5A6FB42 /* AsSingle.swift */; }; - 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 */; }; - 17C901067A0CC336075ABAC7A279589B /* BRPickerStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = FBE9BB952D4ECCE48077BB3240E04B16 /* BRPickerStyle.m */; }; - 17DA0483F109F5BA66CF5DD7366E36FF /* UISearchController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = A292BD1DA40FF7CD44D5F6FCF9DB47C0 /* UISearchController+Rx.swift */; }; - 185B0D419A33CA0454FDAF84316CC25C /* RetryStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A9B13FCEF59922F87375AC9A6F110E6 /* RetryStrategy.swift */; }; - 1874DC3D934C7225FFDF0965A4EDC46E /* DDBaseImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C2D7260426F88BA7D0B8F13FFCE24BE /* DDBaseImageView.m */; }; - 18E4DFFF2ECBE2E968AD95E4B0C913AC /* Reduce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E6DFAFE27EEC553B733AE781B308FDB /* Reduce.swift */; }; - 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 */; }; - 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 */; }; - 1AEC7FEC5BD730C2FA817BAD4BE06FE6 /* Box.swift in Sources */ = {isa = PBXBuildFile; fileRef = 364384CF1B6BAFAF34AFAC6D64A0B2D7 /* Box.swift */; }; - 1B2A260FFFFCB3D9E0AC958E83C57F4B /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 09F7D2E7C9DB8F796D68D5765F3F9431 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B786F5EACB4F35B35F882A1DD2096F4 /* Cancelable.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF6E8F7D25ECF33B09FA952CE6EEDE59 /* Cancelable.swift */; }; - 1B86EFDE6D30AAFFE138E1265122CA9A /* MainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A3DC87B2C6A39B7CEBC890582EAA58D /* MainScheduler.swift */; }; - 1B957CE26D7722E306F95886B5EDC013 /* RxTableViewDataSourcePrefetchingProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3E10375E5768292EEC184DFEB9301F3 /* RxTableViewDataSourcePrefetchingProxy.swift */; }; - 1BA88BD6149449B0EB04E4E7F2822237 /* _RX.m in Sources */ = {isa = PBXBuildFile; fileRef = 7373A506072C533C303FBDB01375DAAC /* _RX.m */; }; - 1BB3F58335FA1580C8E33B7BF9552D1B /* SerialDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D74D0A422C3B16B8DA4F849EF7E9F8A /* SerialDispatchQueueScheduler.swift */; }; - 1BD5A32C94ADBAD9D8831EDE764CA273 /* CallbackQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = F351DA757BE07CE570A716607D354353 /* CallbackQueue.swift */; }; - 1BED5C40C873A14BD22FCC7A8BC11848 /* RxTableViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C666B74A169FA98F3FFC12AF54248FD /* RxTableViewDataSourceType.swift */; }; - 1C0B22AA4E83F0C0C7E55FE842D3C1F9 /* NSDate+BRPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = A20B398A6CC241B39BCA9C2F2BDB08A9 /* NSDate+BRPickerView.m */; }; - 1C255CB13861F1833DBA77964611EB32 /* Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAC5D322C3E7C85FB85CF8A95F7D9FBC /* Debug.swift */; }; - 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 */; }; - 1D6D63D61E41CDC8C9A95724CF0E75CC /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = B93041A630990C6AC415ED34106D1D1A /* Validation.swift */; }; - 1DAD1ABC0638C45123D6AA1E78167F56 /* StringEncoding+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF6A987FBC1DCE05DA16BA51DDFC41B7 /* StringEncoding+Alamofire.swift */; }; - 1DF58F80AC0A6C167AFCF76ABE39A9D2 /* DDBaseMutableAttributedString.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F659E622FF5611F55167C9B569ABE18 /* DDBaseMutableAttributedString.m */; }; - 1E234BFFFCD5B002184D6D3474DC259E /* InvocableScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88C0FDBDD3131A48271ABA3AC630739F /* InvocableScheduledItem.swift */; }; - 1E4A2E4EB128ED973EFAD8D0A76ECCAF /* ZLPhotoBrowser-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F2D87110AC2D64F74ECD8AC9CDEF0C1 /* ZLPhotoBrowser-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EEEBBE30DC7921A7842C22447CAAB2F /* PrimitiveSequence+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A1AB87A7484DFD8846AA2132C2A1C52 /* PrimitiveSequence+Concurrency.swift */; }; - 1F601A8A4AE7C27226B893F8C4611E0E /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 55839B1F12E9A7641E179EF55A520DE0 /* SDWeakProxy.m */; }; - 1FC870398A64B8565B90B11479B88B68 /* IQKeyboardManager+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E1D11043291F9B266581EBA47576CF /* IQKeyboardManager+Position.swift */; }; - 20189A8CEA3D9133A230F3390C2C54B4 /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA5C696C22AB834D1BE5C85C00880A12 /* InfiniteSequence.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 */; }; - 20DC5EFA536B064520E620C2ACAB766E /* CachedResponseHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = A65948E74F7149FE3E49C2025975F504 /* CachedResponseHandler.swift */; }; - 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 */; }; + 00149C338A154F7A90372D9D111E890D /* UIScrollView+ZFPlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 93953438C7847BC10CB6D8CE72332FB5 /* UIScrollView+ZFPlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 011A1EBE3B8FEAEC24BA46DA5217CA60 /* DDBaseButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 12C2DCF0F1B288634DD5D38942FD25D6 /* DDBaseButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 012C3348FDB9BD307BC866EC0B5D23A3 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 3549C98214FF7D02981B0D98B6CA79C0 /* SDImageCacheDefine.m */; }; + 01B815BD97E0BA94CF89C42FE41254A8 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = FBDE697F9795769E18B4581F176558C0 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01C132EB3605024492C96C11F1094D0B /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A72BBBF3A4AD8500A8EE38B2BA3FF16 /* InfiniteSequence.swift */; }; + 01D8AE321F1FA71F2D43127EAC90559D /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 90E2B1053E365BDBC042170E244B454E /* NSButton+WebCache.m */; }; + 02780D132E8AA44865FEF53E4D5155E6 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CEEAF670DB302937514821BFF491B38 /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02C5131798FF28B7D851F0DB13D67C00 /* UISlider+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = CBC27A72198BDB7C38AF24FB25452AAB /* UISlider+Rx.swift */; }; + 02D531FA1E9A19A134ED8BD68C5E04C0 /* JXCategoryBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = BB981F0C9DA54389C6DDD68879E22750 /* JXCategoryBaseCell.m */; }; + 02EDCC0E7DA24D63CD39E7D6326F5A56 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = C89CAF766E92084E7C51D42506C29379 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03124F72EF06C7536F370EDCBDDE884F /* Enumerated.swift in Sources */ = {isa = PBXBuildFile; fileRef = E114FC8ABA6674618A8351F359A7663E /* Enumerated.swift */; }; + 0325FC0D4CE47D33E675D5F9546D482C /* BRStringPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F2768B53DF2C464A975A8DBA8B995D /* BRStringPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0328E2D27FBE6EE399FC37D913E2290F /* EKRatingMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6F1F16135F50452C526976E6E09EC5E /* EKRatingMessage.swift */; }; + 04131C0EECA33AD45AD1E07CF500E344 /* RTLManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FA5A3AE782254FA1E0D1E276AD75C737 /* RTLManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04177031848602252135AA81165B8366 /* BooleanDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFFC2C3D9D45DCA576D36792FCCC30A9 /* BooleanDisposable.swift */; }; + 044C9F746F7E39BA1B482B553386CA48 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = C18639A09489747C02189F6DF46B16F5 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04627B60DC22B385B394FFA6FCABDF32 /* Zip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00B020D83C3657253A5DAC1E41D38C06 /* Zip.swift */; }; + 04C0033DE2A1FD3EB256E41523A8F0E0 /* ZLEditVideoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2086FC0D5B10E864904539B38AF3D2B /* ZLEditVideoViewController.swift */; }; + 04C95DB4DD1BD71AAF5FD233628A6C6D /* NotificationCenter+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4F040872596CD5B6DB008D070998948 /* NotificationCenter+Rx.swift */; }; + 04F76D53D4FE82D8CF7171010FF955DC /* Event.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8546678868EA3265DCE799A4719BB8C6 /* Event.swift */; }; + 054300BE7C77B1D601717D0D11219E1F /* Observable+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBE7E9FAB60DED8D039B6C14E4B9E1E1 /* Observable+Concurrency.swift */; }; + 054C5D3D52D113CC9A7AC9F7115A26A4 /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6137F8F3FC4F62A185DE46FE7984DCA9 /* Platform.Darwin.swift */; }; + 055FD13CE509E194412FE8E424649053 /* ZLFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEB4131AE9559193312626739C057CEA /* ZLFilter.swift */; }; + 05837EAE1BFAD0F1F8FF8E9249F28CB5 /* ImageTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76F379F05F1624C746C7F5F98C40D9C9 /* ImageTransition.swift */; }; + 0591B0EE71308251E0E53C6D3EDB3D4C /* ESTabBarItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF8C9ABBCCBC2EE3A31AB56FAC7FEF57 /* ESTabBarItem.swift */; }; + 059DE39D2D7414DD88A410B406D3AD8F /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = C72BB617E03A0A34B429A279437CAAC3 /* SDImageTransformer.m */; }; + 0605E2513549327B19854B3FED759B44 /* ControlEvent+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7DCEF4622623F43A005D529D79F285D /* ControlEvent+Driver.swift */; }; + 065E058B7EFAEF60F0FE94916FBF3CFF /* DDBaseModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 993C86813F3952C70B72D38AB0A1BEC0 /* DDBaseModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06A20EF6BA10D63870C3AB7C0E1BA53E /* ZLPhotoModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = B19C42512763A8CEA24DF9124119997B /* ZLPhotoModel.swift */; }; + 06B371D4F95E8184613EDABA69676D5A /* DDMAGeometry.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E7FAEF8333E1A8BBA0069BC2D6B07E1 /* DDMAGeometry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 070AC1A560FD65090FD38168F6F8E8C4 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D6E7FAE8A3D8AA188E7627A096DF2EF /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07CCE86C8E53C22E52CFAD1C91C29B45 /* UIFont+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 8904651863EBDFA68DD55853CF2E0D8D /* UIFont+DDCategory.m */; }; + 0811BB981A2EF4E3C78C193E8AE1A4BA /* DDCollectionViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBC7D17C40AA258F184EA25BCAEFE4A5 /* DDCollectionViewCell.swift */; }; + 08592C50901B163D432A8365236310A2 /* DiskStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32AE1FE472FCB6CC7C6905B414F597BF /* DiskStorage.swift */; }; + 08CC4F2CF084EB4C21FD37F7D5C1728A /* ItemEvents.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62D3EA982927D46430AF9EA0FC945EA6 /* ItemEvents.swift */; }; + 09A7BC6E4F7A7E07A31EC29DF349645A /* ConstraintMultiplierTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = E20DE510854E5D03F5D7D3BC510E4736 /* ConstraintMultiplierTarget.swift */; }; + 09B9E5FB7E73F28A4E1F581917EF868A /* JXCategoryNumberCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = FC7451C4E086CC15DEF77C9DF1B03D17 /* JXCategoryNumberCellModel.m */; }; + 09CB072529CD8E230649CBA428E3550F /* MJRefreshConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = C434EB5EFD9A8E047F442AC63A679FDD /* MJRefreshConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A6572E7A523E998FCD8732236E16AFE /* CompactMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7B498F0D77FDF2CEA1A0ED6976D5E80 /* CompactMap.swift */; }; + 0A762FAE78A91ABC899CB431FE10B9FD /* ESTabBarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2DAD6CBF3EE2D2C18547B8FB92B67D5 /* ESTabBarController.swift */; }; + 0AFC7C512782A44F5F97A173D3DB6E6F /* Throttle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A56EC2EEC3B74BF75D5510561E40AE7 /* Throttle.swift */; }; + 0B4577864274CE4EB338A238A241AA0C /* EKAttributes+Precedence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CA8C889B446D161712CE863896F7BE4 /* EKAttributes+Precedence.swift */; }; + 0B52A423F3F9E6C5A42612A06BCEEEF8 /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 5972E9A326023DFD310F055DBD1F380F /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B5B8EB020F39AD312D8C7A32FAF741A /* EncryptedMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64255098B3D01AD4A925A661CE48A0FF /* EncryptedMessage.swift */; }; + 0B6874DD516C1B5682A9DF3ADC1FA97A /* Generate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 043C2A0CF70EF451E3F7019DB5C8FBA1 /* Generate.swift */; }; + 0B92D11F4A4F9B04C06C917F3A4A0442 /* Decode.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4F973818D77610A8EB47E58911872AF /* Decode.swift */; }; + 0BCF8CB00A9A52600E24370C7144693F /* EKNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B4AFAD429770C88E5AC0799A78C98BA /* EKNoteMessageView.swift */; }; + 0C7A81B76F81FFAA7AFD437D61831C77 /* DelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E533C5837506931185AA2A80EB49E5E /* DelegateProxy.swift */; }; + 0C833DB2294851CFBE098DF5BCEBADF3 /* _RXKVOObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 8482B2B8C9C28ABD46B989FF22D3EA3B /* _RXKVOObserver.m */; }; + 0C83C845A20F4CDC656714E4DBABC116 /* ZFSpeedLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = AC118F61A29BC33C872BEDB062ECAED2 /* ZFSpeedLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CC9F1CC0F792E1F8654B5C12ADD37B7 /* Source.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FFA609DFFFD0D424ECB7E97724C2CC8 /* Source.swift */; }; + 0CF0A87B87DF71F838545FC4B0161A8B /* ZLResultModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41EA1A9C8B2CEFC47FC9413A9FBEE795 /* ZLResultModel.swift */; }; + 0D1A811C791795A8542C361D563C1457 /* RxSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 54C2475BDBBA23ADBE4B7776D55C7834 /* RxSwift-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D444C6AD7BA8B3307579F9FCA9F43FB /* EKAttributes+Shadow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC6E85FE7043840E8B131B9D323E2E7A /* EKAttributes+Shadow.swift */; }; + 0D536CBD733C8354E24D5753892BB371 /* DDBaseTextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E7F97EB592B989FE0CF4BC7EFAFFAE9 /* DDBaseTextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DB6B5E1DF5C6AECD07329C6038DCD88 /* WKInterfaceImage+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BCCBEDCD22DC7F0FE533D49617EB2D5 /* WKInterfaceImage+Kingfisher.swift */; }; + 0E707BDCE910931921EA8898DDBE7919 /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = 091BE0E4A42182BC24A0EDCEDD9540DE /* Platform.Linux.swift */; }; + 0E84EA21B0858EDC04A53458A7F8DBDD /* HapticFeedbackGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F68F524E9F1B440B700B4C7896C0D57 /* HapticFeedbackGenerator.swift */; }; + 0EC5EC45F806F2DC7B68E6727227E49E /* ZFLandScapeControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = C16007D5A25CDCDC00B9C26CE43B7D82 /* ZFLandScapeControlView.m */; }; + 0F2AAE2334C409128ADD57B132E767F6 /* JXCategoryTitleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 10A8C3071A8476EE39EA7D86D0AEFF30 /* JXCategoryTitleCell.m */; }; + 10706A4AAB6CA0EABD99A968ABD8509D /* SynchronizedOnType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 192281E6AA83FC6D9865A4E78F4B1233 /* SynchronizedOnType.swift */; }; + 1112AADD470DD6BB1410B7C32A0EA334 /* IQInvocation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B3709D9480CB26E4BBA3335187F937C /* IQInvocation.swift */; }; + 1121FDE3C4A93E9DBACD2F97EF58320A /* ObserverType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 093EFA1B5B0866A1E1D47F9E287F7BDC /* ObserverType.swift */; }; + 113449F2555E3D59B58F18DCC4C2F809 /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = B87E673A0B4439C6149A466E8EEBC135 /* RedirectHandler.swift */; }; + 119A65AD7B8F6C7C39DD19128A7B2DA9 /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 51D325EC40F0DD46BB8D12D5D7B875B6 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11AB235088CD275D409080F1CD0511F3 /* KingfisherManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B10484601C6C25094EE2083E5EE997F /* KingfisherManager.swift */; }; + 11CDFB1A43FE6D23D2F8463B142537CC /* NSControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 353E568A1A831B3A346D0130295CF756 /* NSControl+Rx.swift */; }; + 11EAAA60DB73219EFC8B0CF1722D9C1D /* UITableView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 295A6E787530D5136253F0A207197D98 /* UITableView+Rx.swift */; }; + 11EDD6C24F8B0C87EA75DB126E665375 /* KFOptionsSetter.swift in Sources */ = {isa = PBXBuildFile; fileRef = E566354F2B1D3F5622D411A141CE93F5 /* KFOptionsSetter.swift */; }; + 12251AAF8EC8A1FF1BFB365B030D19CD /* DDCategoryKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 41AB2E3834CD80B47895D2E52F2A5A7F /* DDCategoryKit_Private-dummy.m */; }; + 126031E3EAB484C7F6C093D1F8456D80 /* ObservableType+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80C8F4BD3F97D346DAE783697557BB98 /* ObservableType+Extensions.swift */; }; + 127BB0831E7F383B0F7DE209003032B9 /* JXCategoryIndicatorRainbowLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FDBA6D4FF65571F1B96D58FD9AE5377 /* JXCategoryIndicatorRainbowLineView.m */; }; + 12892EF2990601DA944A65DF856C1C0B /* UICollectionViewCell+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 67F64BA9EE0D9424B4480B7FF285F525 /* UICollectionViewCell+DDCategory.m */; }; + 129C1964A364166530F529A390760D71 /* JXCategoryTitleVerticalZoomCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 89D5FE44EE1480C618C6C905D9B62AA7 /* JXCategoryTitleVerticalZoomCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12D78B7FCE8BE9A137700D58C9C491CC /* UIScrollView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 652A6EB0A106827AC3551F9373C42C7C /* UIScrollView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 133DE7E32B43FA8A2F6866B410772E24 /* ConstraintDirectionalInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EE6DD98411B4B480DC229ECBECD6AD7 /* ConstraintDirectionalInsets.swift */; }; + 1379145EE1CE455EBC27791628DABACA /* JXCategoryBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = A32BB7C1A9A47FDDEC109EB78EEF30E8 /* JXCategoryBaseView.m */; }; + 13AA898FB96076ED4D2B2A9B529036CB /* PublishSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5EA7CDFEB6D29B01715D230F749A288C /* PublishSubject.swift */; }; + 14006084B55ECBF580E396E89C097D64 /* ZLEditToolCells.swift in Sources */ = {isa = PBXBuildFile; fileRef = 123D932AC1F019898ED170F0CD40694D /* ZLEditToolCells.swift */; }; + 1437BB3F5BFA3F0EEF784975F7CA2970 /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ABDD7BEA7720240CDB2A483B7AF6DCA /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 144B55A9628A2AD6B54F8BBACAB7BCFD /* WKWebView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0214A5F180FC37AD90D8AA4364FFB20 /* WKWebView+Rx.swift */; }; + 145BBF6F393882C968D5A99AC80004E1 /* ZLLanguageDefine.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC01754C194475C4ECD32BF79C42ED9B /* ZLLanguageDefine.swift */; }; + 1478369EC15DF7726A9A14355F576E21 /* Never.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9CBF9DFB1999D4BE2B957297EDE6B78 /* Never.swift */; }; + 149C942B71CE1447A72F4389653AB87B /* NSButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = F30D377333774804832280D4E65091A6 /* NSButton+Kingfisher.swift */; }; + 14C821B748B65A96E6D91708B70C0A93 /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 66DE3E48FBE5ADAA762D97363A6CBAFA /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 153DE5CB11330B6FB2662353339B13AB /* ImageModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 147D7323EE7670D6346C1D39FA0143D7 /* ImageModifier.swift */; }; + 158ABB7F33D7D0DB9732BE8735F8C4AE /* Lock.swift in Sources */ = {isa = PBXBuildFile; fileRef = D10E9ABC3A41088CF833628918497FF9 /* Lock.swift */; }; + 159BBC585A2C51D44D40DE88B5B18AAF /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = FF0CA2D49697DC423AEF6657A5E01489 /* NSBundle+MJRefresh.m */; }; + 15D38081B9302FBAF9A361BAD7E5B05F /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = B69172B807351CBD0D60A9BF9CE3B69D /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1660E2FBDA4323E7357179056B4B0E65 /* JXCategoryDotView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C944D55A4EB5AF3B90AA9217FF75E93 /* JXCategoryDotView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1682E5C6B1986F5AC5B85F9CDAA1B655 /* Infallible+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE30D79CEAAC1DD7490D2530D0C26C6A /* Infallible+Concurrency.swift */; }; + 168F32A6ABFCE1B9110D5C266D36988A /* UIColor+Hue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BC6C6E91ED727D59BA74D2DED7F652D /* UIColor+Hue.swift */; }; + 16CF16446D25611658F054AD8D64B812 /* KFImageOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72AA863275D84B37CD7FF74C792A5CA0 /* KFImageOptions.swift */; }; + 17A92EEA935899A65BFE2C8B5ADCFD9B /* CALayer+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 838E315A029BCA82AF0F157D6100C0C3 /* CALayer+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17C41565D21989DEE655AF405B94F200 /* UINavigationItem+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = A0AD6D9DB128055A8E5D6F949D01807F /* UINavigationItem+DDCategory.m */; }; + 17C901067A0CC336075ABAC7A279589B /* BRPickerStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F70A5C9739288DC9DE9D99E40915A72 /* BRPickerStyle.m */; }; + 17DA0483F109F5BA66CF5DD7366E36FF /* UISearchController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = F436E50F7B6231BE467F1FB4FB09205E /* UISearchController+Rx.swift */; }; + 181186CFF54E2403AFBFE5647A2D6269 /* RetryWhen.swift in Sources */ = {isa = PBXBuildFile; fileRef = B91A914628E1A1A1DCE14D0A54FC163F /* RetryWhen.swift */; }; + 1874DC3D934C7225FFDF0965A4EDC46E /* DDBaseImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = DA1B4D36BDC5BF26A01A004BABC763DD /* DDBaseImageView.m */; }; + 18EBCC2A133B26DF8B5D5754492F3214 /* EKSimpleMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24B7E9080BFE6C997B5F17619677113E /* EKSimpleMessageView.swift */; }; + 1913969CF05751BEDA31EF6EE7C684DA /* ConstraintView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 351D70A21EFE25A7DD5501D53307CD41 /* ConstraintView+Extensions.swift */; }; + 194D6F32A526649820D6B0AA03EEF12F /* RequestTaskMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19EC3671AF1CF02CE56689C97034073C /* RequestTaskMap.swift */; }; + 1984D4549EEA55FB1812D99162C83E52 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF9E861E526CE09753752959D2C22F99 /* Alamofire.swift */; }; + 19930D4A2B25E5801CCBB603B126AEC5 /* UITabBarController+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DFC036A62A358022223F07BA12A3092 /* UITabBarController+DDCategory.m */; }; + 19B69267A13B522D47259CF72C882725 /* BRPickerView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C18139F5A43A1C285815ACBEE5478A2C /* BRPickerView-dummy.m */; }; + 1A370F104A326B06BB5A7A623DC96920 /* NSError+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA37BA8707C464C319C8280DEA800B2F /* NSError+ZLPhotoBrowser.swift */; }; + 1A64F561597A70C28B3564007FF6D24C /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C0A07F4C1C07D539C706BB2B48E2FC8 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A7ADD63C2F158E10825F3FA38EC3639 /* BehaviorRelay+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 700F8F1B44C665355740785F2A3A4B2E /* BehaviorRelay+Driver.swift */; }; + 1AD7C51CCF7E6204B37A504B68924F16 /* JXCategoryDotCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = E3F8266CE317D8E0975411F90D27C290 /* JXCategoryDotCellModel.m */; }; + 1B2A260FFFFCB3D9E0AC958E83C57F4B /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 78A38AB1BEB652BC61BB8A18964890EB /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B957CE26D7722E306F95886B5EDC013 /* RxTableViewDataSourcePrefetchingProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2051AA305B91B42DE51F92A963FF8B8 /* RxTableViewDataSourcePrefetchingProxy.swift */; }; + 1BA88BD6149449B0EB04E4E7F2822237 /* _RX.m in Sources */ = {isa = PBXBuildFile; fileRef = A6AB124C92496A27782E3881CA0AE52D /* _RX.m */; }; + 1BED5C40C873A14BD22FCC7A8BC11848 /* RxTableViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 724722D5D6003BD8B23E0DB7A876F56E /* RxTableViewDataSourceType.swift */; }; + 1C0B22AA4E83F0C0C7E55FE842D3C1F9 /* NSDate+BRPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = E91F3995EF78A3F4F3F6F6AEDA1F22E8 /* NSDate+BRPickerView.m */; }; + 1C33277D17F042B6BADC5BEFD04DC3E9 /* BRAddressPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FE430B533168DAECFE85F4140191E1E /* BRAddressPickerView.m */; }; + 1C9653CE5BA95B8280803BA82EC70A26 /* DDFontKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8680F130E7D7A59E0B0522366D478E71 /* DDFontKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CAF7FCBD075678639BE65A029B4E56A /* JXCategoryBaseCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 80A649CE3F93375783D7116EF430B256 /* JXCategoryBaseCellModel.m */; }; + 1CD029D4F48324168F0220D8213348D3 /* EKProcessingNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A078AADB3C65F533A3FB7BA287791FC /* EKProcessingNoteMessageView.swift */; }; + 1D6D63D61E41CDC8C9A95724CF0E75CC /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 517F7F3A30F03E692CE1A650603F160F /* Validation.swift */; }; + 1DAD1ABC0638C45123D6AA1E78167F56 /* StringEncoding+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5D8441F4871B0BD7CD000D8C762976F /* StringEncoding+Alamofire.swift */; }; + 1DF58F80AC0A6C167AFCF76ABE39A9D2 /* DDBaseMutableAttributedString.m in Sources */ = {isa = PBXBuildFile; fileRef = 58A8DE468DA39A7F80D4952AD4AB5A4E /* DDBaseMutableAttributedString.m */; }; + 1E4A2E4EB128ED973EFAD8D0A76ECCAF /* ZLPhotoBrowser-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A0F6F9650EA4876E4F733985399251AC /* ZLPhotoBrowser-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E6AB0EB22D31B52A4D692B06F1618AC /* KFImageProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = F3F8EB5BFE51ADEB49C2540FB30B2B8A /* KFImageProtocol.swift */; }; + 1E7FF8DBFF064CCB162745E76BDC72B6 /* Timeout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F76DEE37945EE615FA885440E92759F /* Timeout.swift */; }; + 1F601A8A4AE7C27226B893F8C4611E0E /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E0FE5903EDDBECEBCA6986831792A1D /* SDWeakProxy.m */; }; + 1F983B34AC2EADE1310A476567259DC5 /* ObserverBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A56480E992760E2D2C10E10DB960885 /* ObserverBase.swift */; }; + 1FC870398A64B8565B90B11479B88B68 /* IQKeyboardManager+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8A034D8983AE3073E69ECB1045061D1 /* IQKeyboardManager+Position.swift */; }; + 201DCB4609837224A5A37D44B53026D8 /* Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D3C618870FED685FC45008AF9FCEE6C /* Rx.swift */; }; + 2044A3275F34FBA9C62E91F3A70571CA /* UIViewController+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = CB56ED74DC39CC68AF7A99660929E18C /* UIViewController+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20759C768F51054A64D6E2518B494190 /* DDMASearch.h in Headers */ = {isa = PBXBuildFile; fileRef = FFD5E8663F0D9747A37855DB5D1002D6 /* DDMASearch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 208A97584D845254E986E9C707635B67 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = EAF36973F7C36C1729B5A0CAD7D56D26 /* MJRefreshBackStateFooter.m */; }; + 20DC5EFA536B064520E620C2ACAB766E /* CachedResponseHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6826F805FE0700E370FA67DC727188AA /* CachedResponseHandler.swift */; }; + 210F49707DD9DBE8B45D3D6671CE2154 /* Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB944575C386B1DC0473F6C3B15E2FD9 /* Debug.swift */; }; + 217C8F0A96A5090C40C04671ED693FA8 /* ImageProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC18668459F280A60B4618599D0BD16A /* ImageProcessor.swift */; }; + 218A594F4B538DBFF56BDDBFA62906B3 /* DDBaseAttributedString.m in Sources */ = {isa = PBXBuildFile; fileRef = 42ED0C8493576B3B2DAC8BB706A3C67E /* DDBaseAttributedString.m */; }; + 219624B2DB84EE52D0E4F6B1789954E1 /* ZFLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = B4E4B4ADD21DE33904C43AF84FB5BE55 /* ZFLoadingView.m */; }; + 21D966E2F801F96E6E36D2C7BA73235B /* DDNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DA096E0DD8E7FD2BDAAC89129A2824A /* DDNavigationController.swift */; }; + 21E99FED49147D0F9A608AC646CE78F5 /* CombineLatest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10E12EB5C4AABD1DAF088FFB8A129348 /* CombineLatest.swift */; }; 21F3FE8E6CA8D9E441653D732BA1CE85 /* Pods-OrderScheduling-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A0031ECF94D34F1497602F4B0794DD58 /* Pods-OrderScheduling-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 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 */; }; - 22DD3D111D50B590F1B02A4EBF49CEE9 /* car_xingshi@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D7C2BE8DD9A4D6611E11462A2C06C07C /* car_xingshi@2x.png */; }; - 23070072A95EC58547F751658BD10FB8 /* QLUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87195BAC3EFE744189DAC86EEC887725 /* QLUtils.swift */; }; - 2334435867395114202DCDE45DA3DED5 /* Indicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37365AF186EE02D7D1EAB44D1CC09F9F /* Indicator.swift */; }; - 2354A0786A1EBBC2298B9CB493F8C4FF /* URLRequest+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F7EC85EECC1423B374FC5BCC31766F2 /* URLRequest+Alamofire.swift */; }; - 235F5CA0FE85EC9C9BF77DDF796070C3 /* JXCategoryBaseCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 02FEDAD1C01965FBD955DF32016D6989 /* JXCategoryBaseCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23656DAAD6CA1B44B05E735F99720821 /* Disposables.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD0A4B773F3497967CA6047F3BBE64C8 /* Disposables.swift */; }; - 239036796DB886B9DA46D63F53273AA7 /* MATraceReplayOverlay+Addition.h in Headers */ = {isa = PBXBuildFile; fileRef = C30127D60AA841A915A8039BB99FD886 /* MATraceReplayOverlay+Addition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23939D0CF802892C750ED41964060E15 /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C7FF04AD0134D864551BDA6014A3525 /* Image.swift */; }; - 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 */; }; - 263558AFEBC2825A92503CC6447FD023 /* Resource.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7C14800F2DA5E3340E31A7113A9D6C1 /* Resource.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 */; }; - 26795A0BA75CDFF95FF68AA47A8FA8EA /* WithUnretained.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0598E7DDE673DDF7484F63904625B4DE /* WithUnretained.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 */; }; - 27184CB2A8A5537820A353895BD4ED9B /* ConstraintMaker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90F9FAA765F7B47D959C83CDBA64F581 /* ConstraintMaker.swift */; }; - 272C6A85490A6EECEB5704075A3C199F /* UIView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 130427CD684A106C0D0EE642A156C063 /* UIView+DDCategory.m */; }; - 27408F529F2448D2C5F5A64BEC93A594 /* ImageModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFB8875C560BB590860F8E9E253B6F82 /* ImageModifier.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 */; }; - 28A1424759D095E30EDCA07ED22189A3 /* ImageContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5862FB48825755A261067D1B202C048 /* ImageContext.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 */; }; - 28F4691D456DF658C7D3995CF649A5DA /* AtomicInt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FF4587CF94C7858297417E9CB2B1625 /* AtomicInt.swift */; }; - 290CC252DD7A79A8CD348210A4ECEF8F /* ZFPresentTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = E73CE92DD4FE7D7478F6FBDF487927F2 /* ZFPresentTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 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 */; }; - 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 */; }; - 2A3EDFB16C0CC9B885D06DA82DF22023 /* KFImageProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 88AC54D1B177174E77B56FBB8FDA3C65 /* KFImageProtocol.swift */; }; - 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 */; }; - 2AF8AF604A272C0C4BB37CE14D27D1D9 /* RecursiveScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E17653FB4A421EDAD142B7FA280AD1EE /* RecursiveScheduler.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 */; }; - 2BBD8EA6B3F3A8EA8F721498BE13D6C8 /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = CB3908E3273D37090384F2B128AD30F2 /* MJRefreshStateHeader.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 */; }; - 2CC3AD3D3398B56CF9B85CC4A7F9F439 /* QLCompatibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B62B6C47135CEF2CEB76E9BED44680B /* QLCompatibility.swift */; }; - 2CD4AA5E579EB6A50BC8C0E2752663EC /* Event.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BD5EAC0031F82E3E2E469DF874AF715 /* Event.swift */; }; - 2CFCF233E052F29452123E61CB274CFC /* UIImageView+ZFCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F64E1B390C0BFA057ACB5BB56E9C6EBF /* UIImageView+ZFCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D1E54F9DCFEFCC65ED0A2F70C00F480 /* ImageDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43F124E4FEF45D1428666FF58ED02874 /* ImageDownloader.swift */; }; - 2D2CDCF93A57C458A459F5A968528E34 /* DDNavigationControllerDelegateReceiver.h in Headers */ = {isa = PBXBuildFile; fileRef = 4582A9D4C8AE8FBC80AE2A4C09EE181D /* DDNavigationControllerDelegateReceiver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 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 */; }; - 2F9E0D4337A8560936538DCF9E045BD9 /* NSThread+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ECBE6D55B860A623894EE89ECA6D497 /* NSThread+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 302832D4B7652F756A29A925F087C822 /* Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25AB617439A133C50AD2EA048343F2F7 /* Concurrency.swift */; }; - 303B93CF0EE553490F73F76D9C534C44 /* EKNotificationMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0349A346D47724A1023509E89D07E8E7 /* EKNotificationMessageView.swift */; }; - 308503CCD3E28A3911BCC7004887D711 /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04EE0EBD02463316BE1F289617518D8E /* PriorityQueue.swift */; }; - 30886370AA81B1E7AC2958154611A7C7 /* UINavigationItem+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D42EB94319CCB58A1A442711C58125B /* UINavigationItem+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3088663B2B31153DD3995BB53A10045A /* ZFSliderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 85AE5D42F04D6B691672E9ECE4FFDF56 /* ZFSliderView.m */; }; - 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, ); }; }; - 31BD81A2884D5C5B88D885AB73E66D4D /* Infallible+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = E734E813B60F46993A6A3BDB5218CEEE /* Infallible+Concurrency.swift */; }; - 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 */; }; - 32191A95E5D1D0E00BCF8BD077072280 /* First.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF697E5581829F53A837CA4F94F1C2B3 /* First.swift */; }; - 32830CEAF4535DE977580E789F24760E /* Timeout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61B7B6AFE657B0FF398ACB00652BA68F /* Timeout.swift */; }; - 32ABFAB077CE43574F9209373878FD61 /* ConstraintMakerExtendable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FC7F1B055C62C605A0893A4B4286548 /* ConstraintMakerExtendable.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, ); }; }; - 33043B5E0E8C4E2805481E6D692949AB /* JXCategoryIndicatorLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B91C070B5B833ABCE6DBA6261E0539B /* JXCategoryIndicatorLineView.m */; }; - 33206CE1C59D7666BDDE9E1465A610EE /* ZLEditImageConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61A1AAA8E6195266F5597F86DFED1636 /* ZLEditImageConfiguration.swift */; }; - 337092E1418D3A026C0DD4056E566861 /* TakeWithPredicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D28BADFD21FD34580D06439BF6E9EB6C /* TakeWithPredicate.swift */; }; - 33859D3CB90E4ABDB24C9227DFE85E4A /* RetryPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6341B3EAD98B6AB9285FA974E49C2DC4 /* RetryPolicy.swift */; }; - 33AC18826E90BE17D7F1A342C868D7E2 /* UIFont+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4443E5360C55550FA7EA871AAD12EA2B /* UIFont+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33E6C702602A0ABE4B9FF00731487E49 /* DDBaseTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = F92DC3831B43F4503392BB08C47EEC31 /* DDBaseTextField.m */; }; - 33FA38FABBE076CA206A60CDC6C13505 /* AnyObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0A5E2143F94BF6522848A46BAAAAB2C /* AnyObserver.swift */; }; - 341A0FB184D57DE4398955E87AA2F02E /* ElementAt.swift in Sources */ = {isa = PBXBuildFile; fileRef = D25C6967D8373406CD6C51C689D66DC8 /* ElementAt.swift */; }; - 347E3DBFAA1453009AEAD471F0C36B70 /* ImageFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9DAC7A00E6908FD3CE179B6FF564AA5 /* ImageFormat.swift */; }; - 348A2399833F70160F70ABBDCB980E2B /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = C0620E30D560801C592DCBDEE95B78BE /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 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 */; }; - 35B124D386A8A344DB4E378136803251 /* ZFSmallFloatControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = F58E4C3FDF308B6C5E1472A27C83EE9C /* ZFSmallFloatControlView.m */; }; - 35ED1671F8FD3A5108E1B917130980EE /* EKRatingMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B5C0B9769308527090C7360F61F0C50 /* EKRatingMessageView.swift */; }; - 365DE3259C4106D8E3AC066DAEEB4720 /* DDBaseSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 535ED29470EA89A1CB2DCA32ECF39E69 /* DDBaseSwitch.m */; }; - 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 */; }; - 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 */; }; - 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 */; }; - 397F953120E27B83B099127611936656 /* NSMutableParagraphStyle+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB935E2D962998DC8976D0C90B14258 /* NSMutableParagraphStyle+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A10B0AAD9F15B171EF41F035369BECB /* ZFNetworkSpeedMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = 775E9F99932457EB38E1830414C07C59 /* ZFNetworkSpeedMonitor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 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 */; }; - 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 */; }; - 3BA07D26BA7B31AD481DCF513B101864 /* ZFPlayerView.m in Sources */ = {isa = PBXBuildFile; fileRef = A0075F18943CBD04D78DFC48361C17F5 /* ZFPlayerView.m */; }; - 3C11CB98AFEFBE7A201DA71292528A69 /* EKRatingSymbolView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28A9933BD3E7F403EB5ED19E803A74C2 /* EKRatingSymbolView.swift */; }; - 3C135A7BFDAF0683DDEAD3F3B35B22FD /* SchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FE35758BD8F68C0937204A63AD8C001 /* SchedulerType.swift */; }; - 3CA6371C85FE25DFE2889186676D041B /* PrivateKey.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74F8FEA5A910644F177B1663C04516EC /* PrivateKey.swift */; }; - 3CAF136BE87234D71267979B45D6E67B /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BA63FF274F9C8199BF6CA2EC71544AA /* SessionDelegate.swift */; }; - 3D1DB9B06A570F6243016C3FB3692C4C /* ZFPlayerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AE38A3F9708F4BF8E26C436B4013776 /* ZFPlayerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D8EEB102DD4A3A48C9E31AC98C92BEA /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F65C8C0533DCFF9A8AF83591B1C66855 /* DispatchQueue+Extensions.swift */; }; - 3D99594286ED1D20D88E0A86886224BA /* SwiftyRSA+ObjC.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEFB7C567B170E54023DD9E3C7C9E6EB /* SwiftyRSA+ObjC.swift */; }; - 3DB9872080D437F2A851158F1F8F2693 /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = BA2F69C3200D9F1B94E8644DAAFA3758 /* SDAnimatedImagePlayer.m */; }; - 3DCED093909BD1B85FF12C8281183CB0 /* Reactive.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5496498F906246971438B7605E35C37 /* Reactive.swift */; }; - 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, ); }; }; - 3FE17AA44DD3A1A5179103D3798D079F /* JXCategoryDotCell.m in Sources */ = {isa = PBXBuildFile; fileRef = EEEE057AEC3F23421B6EA9039FDB2856 /* JXCategoryDotCell.m */; }; - 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 */; }; - 4139B49E8556C97A3D8FE0AB885CA1FD /* JXCategoryListContainerRTLCell.m in Sources */ = {isa = PBXBuildFile; fileRef = ECF55172DABBA580348BAC9B753BD5AC /* JXCategoryListContainerRTLCell.m */; }; - 417F88073D2B0203BC70C580CA9AACFF /* EKRootViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9F99F41CE9BBA098B5CA0619B11EF16 /* EKRootViewController.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, ); }; }; - 427A109E0FDAC814930510E6B45127A6 /* CALayer+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = B0FBB8CED66D2D0C449A59D458746A67 /* CALayer+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 429AC37278014388FB98EF000ABF9700 /* MAPointAnnotation+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = FB4414A9248D03B8B7104D1E67CBC979 /* MAPointAnnotation+DDCategory.m */; }; - 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, ); }; }; - 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 */; }; - 4433D02EE9231F24E94E5FD44492907C /* UIViewController+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F39DFB50C0CEE5C07570D1F53966326 /* UIViewController+ZLPhotoBrowser.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, ); }; }; - 45B27FE47113597587330F91F73E3A48 /* UINavigationBar+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CAC48F6B20494CE156685ACBB595423 /* UINavigationBar+DDCategory.m */; }; - 45F2115D4EC21D89A899E9D969CA1810 /* NSTextView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12FFF6F7F693F3BB234800879918D57A /* NSTextView+Rx.swift */; }; - 460CAF3FCDD140A11875B67D3124B8BC /* Combine.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA1AE6DF6ABD2055C14B6AEC6FDCD0EB /* Combine.swift */; }; - 46260B6630DDD84609FF722514A05DB5 /* NSURL+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D3AD7C118DCCD7B7B303F30C66BA970 /* NSURL+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 462B09F7F53D96E61024046A2F06ECD9 /* String+MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = C67827622B2E2B8F80571936FA2D77E8 /* String+MD5.swift */; }; - 4630F2467021E70770DCA52953A02D3B /* DispatchQueueConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF268500FC0ED762949E63422B790739 /* DispatchQueueConfiguration.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 */; }; - 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, ); }; }; - 477BADEE897F3C0AA214683C37B50980 /* DDFontKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 68330B3B59229F935EB0700BFDAB1B97 /* DDFontKit_Private-dummy.m */; }; - 478EC96FFD402B504517C9A5F6F5FC08 /* AsyncSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6C8D677B166F29318F8622DE9A027D8 /* AsyncSubject.swift */; }; - 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, ); }; }; - 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 */; }; - 4A2FD67A19693B63311D9E0DB18D5287 /* ConstraintRelatableTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBD33BE475D8487B542491727DBBD29B /* ConstraintRelatableTarget.swift */; }; - 4A48E82F99ED27665CF929386AB1FFC6 /* ZFPortraitViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EC0FD51086DADF03B4999AF9F7BAFA4 /* ZFPortraitViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A4A6A4AB239531AEDA08C8C49D39A6F /* NSAttributedString+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 35A827FD3B260942A337B9BB317FEE1F /* NSAttributedString+DDCategory.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 */; }; - 4AAC23ABC7AA59943802AB81FC2C9020 /* Empty.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBD2651733A27E35D22EDB7006D5478D /* Empty.swift */; }; - 4AEEFC52D4F0E173563EF56901855257 /* ZLClipImageDismissAnimatedTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59D19E9E35F2D88873495B9878271ACD /* ZLClipImageDismissAnimatedTransition.swift */; }; - 4B2AFCCA9BE567F592F8116FBA15A4BC /* ConstraintMultiplierTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 117F315C434C3863D42FD21EB781CA98 /* ConstraintMultiplierTarget.swift */; }; - 4B541C41E90C260270E635F42EDC9B7F /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E6850B62AE527DFF6DA66A3009D736D /* UIImage+ForceDecode.m */; }; - 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, ); }; }; - 4C8FCD807EFF6FC9A36B30853BE9F61C /* UIBarButtonItem+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 30D781AC3C405856C160630398633026 /* UIBarButtonItem+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CFBCFBE0205E6688F8E47137BD45C15 /* DDBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = F78C1CC1793BC4D0195103A4600830E1 /* DDBaseView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D768D7F05A1C7D3C916F59AED413ECD /* ConstraintDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C665BD596A5079363EB7617BE4EDDF3 /* ConstraintDSL.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, ); }; }; - 4EE2193AA4850C857375E0226EC7BB3F /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C528017A7AB37E2EC46C8AF82F85321 /* Utils.swift */; }; - 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 */; }; - 50683116C8A8EB1785C08D63F1648C0C /* car_xingshi.png in Resources */ = {isa = PBXBuildFile; fileRef = 0A23019F4D09D5FFAA156BED696736AD /* car_xingshi.png */; }; - 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 */; }; - 521DD709D23F5A3F8FBA7FF6A964DA2E /* Generate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCC0513B7BC3798F7F3017E3F5F1F884 /* Generate.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, ); }; }; - 527B2370D6731A168E069E93814E6ACA /* Scan.swift in Sources */ = {isa = PBXBuildFile; fileRef = C097AFF1B8C2C891B31FD8EFD9BC3A35 /* Scan.swift */; }; - 52B912B7BEDC2F753DFEF70FB308B16A /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D20DB404ABAFE99247C3AB55859F9AC /* RedirectHandler.swift */; }; - 52C9B66237274EABBD850C9C2B7470C5 /* UIScrollView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = D712A94B0A589E674743E2F36DC32EE2 /* UIScrollView+DDCategory.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 */; }; - 533639C7340E31F53672214A4DE43316 /* GIFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3732C756B9A8F8A504B32D6494F93598 /* GIFAnimatedImage.swift */; }; - 53693C4A79EC833BC3BA47F4CAAC9E44 /* ClearMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE42E9A9BCAECDCD62405C4D535D6B48 /* ClearMessage.swift */; }; - 537F15E26603218DCC1D7193F4FB0C9F /* ObserverType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 109DEBF28F16126F32DDDCE9500BF311 /* ObserverType.swift */; }; - 53A8449A2AB1430B1001ED45223DCDCA /* DDBaseCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CC7D35DE0658E1E65BD001B3AFA5702 /* DDBaseCollectionView.m */; }; - 5434354C379A1C85A849409F278C7BC0 /* DDMutableAttributedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45599187E0E306D492961BB44A1110D3 /* DDMutableAttributedString.swift */; }; - 54B149AEC25A87FC292DE4908FC12FD1 /* Zip+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = D833F99829076C9F074DCD0531EFEAA8 /* Zip+Collection.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 */; }; - 54D9A16950602901B2A9CB2FF4F94273 /* ConstraintDirectionalInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDDA5F4711874E111FF9BC56716D4961 /* ConstraintDirectionalInsetTarget.swift */; }; - 54E7ACA4C129B78296C039BFE5E61BC6 /* ZLGeneralDefine.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7CE230AB72519EDB823EF72848204C6C /* ZLGeneralDefine.swift */; }; - 54EB2D29BB3EBA2F93E5303074F5B987 /* FormatIndicatedCacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CDCD98CD8548CF04A7D44BC78B3E9AD /* FormatIndicatedCacheSerializer.swift */; }; - 54F6E020F2DF279CCFCA75239CC40C93 /* UIWindow+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E637AD0363C979CEAEC2DDEDD522239 /* UIWindow+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 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 */; }; - 558597156934A37271A804BBC2058DAF /* Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A902D49CF099405F20016D58DE2DED3 /* Zip+arity.swift */; }; - 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 */; }; - 567D6DD5F3CD77BFD2EBB69187FE05A0 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C93DF9F137469B6087FF40ED2C39675 /* Error.swift */; }; - 568303B3D247378112A34B0B7AC87620 /* UICollectionViewCell+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = ABE7E82F6A637D933B9A7E37477281B7 /* UICollectionViewCell+DDCategory.m */; }; - 568DF1ED8C470080C126EA9D00448949 /* DDAttributedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC7563FB49B3B7F0E4710216BC923FE3 /* DDAttributedString.swift */; }; - 56A09E981BD164D088D33F846A063CCC /* SkipWhile.swift in Sources */ = {isa = PBXBuildFile; fileRef = D87D38F8DCD8D3B5BEF78D23FDD2E7B0 /* SkipWhile.swift */; }; - 56D33A6E86B978BD0A7C66442E2D8B52 /* IQKeyboardManagerConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5F0C2764A264E37BD41416288A31CEE /* IQKeyboardManagerConstants.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 */; }; - 5709846A51BD5E0B04123E9DDCEE5C9E /* RequestModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD334EF9FD4B9B594B828B61097EF08F /* RequestModifier.swift */; }; - 57A0637C2323655E6D5CED2D0F5DA6D9 /* NSBundle+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 98B8534159943A5AE3BE4E7F14B3EB6E /* NSBundle+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 */; }; - 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, ); }; }; - 59ED634AD1AF8B308666AFD696ED77AB /* UICollectionViewCell+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 431E1D05FC37D52831B2B63F11611B8C /* UICollectionViewCell+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A18E4F1E797987FD46675D6E1A9232E /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 99FBC6A3FF72C9C93EC26EB55681A3F7 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5ABC51355DC4C0B3B10D3024A3E7E069 /* ConstraintAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A32E70CB124358D5CECEE227AC887B2 /* ConstraintAttributes.swift */; }; - 5B4158DD9189A65A3EBB0E711814A309 /* Timer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41AF1F2AF9D17DF44C12C7DD6B6A5117 /* Timer.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, ); }; }; - 5C11500E97014B2156025DCB5AEA19EC /* AuthenticationChallengeResponsable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A4F7B8A08F758239FCEF13B69A6CE2F /* AuthenticationChallengeResponsable.swift */; }; - 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 */; }; - 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 */; }; - 5E5CFE3393CAE39EFDCB3909193DD10C /* ObservableConvertibleType+Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62B1828F05879B6F721502FE2006F6EC /* ObservableConvertibleType+Infallible.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, ); }; }; - 5F6C8E94AF9E38470F1F5FAD64C24055 /* Delegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 616DD5AB4C4A809B51FA7EA1C93D5C1A /* Delegate.swift */; }; - 5F73068079D791AB651DA5F0563C5EB9 /* IQBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44A0675187A0F57C3A2ECD0D4EBA682D /* IQBarButtonItem.swift */; }; - 5F9B87C411C013A2A4151C1C26C6B1FA /* NSObject+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = C4A993DBC2B198CC671EA3E4BE861FD4 /* NSObject+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 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, ); }; }; - 607F69E7D9313D48ABCED09008D8E14A /* ReplayRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9DB545FA70E55DCB2EEA485007A5B046 /* ReplayRelay.swift */; }; - 608E5CD7CA96A3E486C33D9F312FC900 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FE6E76773837601F72CB86EA43A6D61 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60B20E80F87F27E75DEA03156974E0F9 /* CacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87B7E469C0FC78E881890CB0E91FFD2A /* CacheSerializer.swift */; }; - 60EF2DF520F1164BB293FB035B4F965E /* UIView+Responder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AD0733D9FE75FC636F2208A06CEDD0A /* UIView+Responder.swift */; }; - 6190183F92C453615419F55F3BD08E87 /* Completable.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCEE53B07BD954B681873FBB74FC12CB /* Completable.swift */; }; - 61B5D7DACF71FABBA2A23BC96030639D /* DDPersistenceKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E82C182B3D851259E53CBC4E304D5314 /* DDPersistenceKit_Private-dummy.m */; }; - 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 */; }; - 62903FEC56800C8FB41040C23E1F77B7 /* TailRecursiveSink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 434CFEDAB464EEA10B068B7300D13E51 /* TailRecursiveSink.swift */; }; - 62E03A7C90AC5E5B1D0112A6CC78F131 /* NSBundle+BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = D42473A68DA9A31A03103D6868ED2EB7 /* NSBundle+BRPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 632C96E0B7AF101CD955F4311CDAF91C /* DDUIPanGestureRecognizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB2559B43ED5D8E1230FB84F96A3B679 /* DDUIPanGestureRecognizer.swift */; }; - 638AD6074B37A0C82745B41ABB520CEF /* DDMANaviManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8134BB2AA5305F578302AA8091E2FA82 /* DDMANaviManager.m */; }; - 638CB4E100033345DBD27B66C19DA582 /* Catch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 149E0EBE3D08C3F6A2CFB834CEBB8562 /* Catch.swift */; }; - 639859131F5B6B971A6D5F13570E2E5D /* EKAttributes+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0450DC13CC441C0967176B8071579F56 /* EKAttributes+Position.swift */; }; - 63A77C21EFD53EA8A7E3B79ABF59E2F7 /* DDBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 813B31DDD073B067BC6D0DC097A0072C /* DDBaseView.m */; }; - 63AB5017F5A15BFAE51EC1C05E672D46 /* UITextView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = DCB224F266E399DCEDEDC6891CABD5F2 /* UITextView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63FFF49598498CF8C2ED679A60632466 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51946AC57D296D98D6432284558DEB32 /* Request.swift */; }; - 6405B88F00699FB27D556521FA391E9B /* ZLThumbnailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F3E69CB942B27EDDF39B17D0250CD8E /* ZLThumbnailViewController.swift */; }; - 645ECF5547FF7E69909B1B8E79464806 /* UILabel+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 571449703C21E04DB0D3FE2092018A67 /* UILabel+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 646EC53D580DA2B0F27ECED432FD896E /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED39E4E52F3FC602FFBCC85FF5C9F1E1 /* Result.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 */; }; - 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 */; }; - 65BED936CD021991A0B643B97ECF9D43 /* Sink.swift in Sources */ = {isa = PBXBuildFile; fileRef = C31BD0A86D6F1766685BA2FF1AD9144E /* Sink.swift */; }; - 65FBF2652959C0C03F5BEB1A97949DCF /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00268894DDF3544121282102C01F415E /* Protected.swift */; }; - 662D8B722CE76FE956E05768FD3ED3B0 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E491F032B37C7D205E0EE1094D35416 /* MJRefreshComponent.m */; }; - 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 */; }; - 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, ); }; }; - 66AE8AA7CA1BCD7EDA9110232BD000F7 /* SwitchIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA9DCE00A1CC7C0A1E8963EC44BC3F0C /* SwitchIfEmpty.swift */; }; - 67361CCD8BA6B13F5AFA500684267561 /* JXCategoryViewAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 62E5306970D9BA46CCECD33499D37743 /* JXCategoryViewAnimator.m */; }; - 67430BE95E8B0E11731B68E2800C9308 /* Throttle.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1FD2BAD4E1D02181AE2E2D81F6E5490 /* Throttle.swift */; }; - 67613012FC19662F5A1A452C9DFD7AF3 /* EventMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3D3D87C73EAE5BB6974D14F6EAF73BA /* EventMonitor.swift */; }; - 678E3ECA55B06B72144E0F1FCB7792D7 /* IQKeyboardManager+UITextFieldViewNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05C288F5773FAA8DC4E25B88D7FB406C /* IQKeyboardManager+UITextFieldViewNotification.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 */; }; - 689AF1114893C59282F92646242F8B86 /* NSMutableAttributedString+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CD6C27BA7A7C0372094BB0F987EA2AA /* NSMutableAttributedString+DDCategory.m */; }; - 68B47A93890C8366EED81AEA3B590CC7 /* Materialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 253569B5607BC7CDC1692A171D3F00C5 /* Materialize.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 */; }; - 69C160D5BE01F3377DFD24D2122A9C65 /* Decode.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA4F6B68BCECD6440DEECF0F4BCED04A /* Decode.swift */; }; - 69C303549B8C8DC6586AC4D570FAD12C /* DDBaseImage.m in Sources */ = {isa = PBXBuildFile; fileRef = AD83B4509F3F1CD3C9E05C7C52414CE7 /* DDBaseImage.m */; }; - 69EC7466EB3C133CE0D82257EF336100 /* ServerTrustEvaluation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8255B663C7C175AF3CD61B93F9EFA011 /* ServerTrustEvaluation.swift */; }; - 6A0D347CD72983F789D42015A4C98CB1 /* ObservableType+PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = B93C321456BC9DB8999A599AA84293D6 /* ObservableType+PrimitiveSequence.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, ); }; }; - 6B3B203D335CE4201E3CBB15DC28CF80 /* AnonymousDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92A1D0D97078E98FB87C120217562479 /* AnonymousDisposable.swift */; }; - 6B553F2B3704D9BD7FF7FCE04E403CC1 /* UIFont+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42583EE86A5BB9F9DC1D5D9AD849DDA3 /* UIFont+ZLPhotoBrowser.swift */; }; - 6B66FA28308AAD03CF48491A2156DBDE /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = F39C7DC5C8AEA909746794BE8A37DCF9 /* SDImageHEICCoder.m */; }; - 6B9EF973DA7E48C11046DD7F06009BE1 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CBD83D52B3A482D5D31D9499E095405 /* Errors.swift */; }; - 6BC64D5A73FFE6223CC0F3146F9F59C1 /* UITabBarController+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = D9E7D9EE698F5F05F581FDF728B6836A /* UITabBarController+DDCategory.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 */; }; - 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, ); }; }; - 6CDA31D3C8E731309F01B987177B73FE /* CompositeDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7DB509EC577AF23023320DFBABB4DAA /* CompositeDisposable.swift */; }; - 6CE3D48BE3820932D7CFCB809536DCDC /* KingfisherError.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8B40D5A6943D4F6EFDBA40C484F7B2C /* KingfisherError.swift */; }; - 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, ); }; }; - 6D1295F002B144E1731C38BEDF62855E /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A5283D5CDCF7F930F4EBD8F066BDA4D /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D3627B8D626B89FE0B1F6FFF90D3878 /* Multicast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52675871FE5D8FD60A740327292ACABC /* Multicast.swift */; }; - 6D66B157F2C2C7D11C02BAD169291CD8 /* SubscriptionDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 498408C41F764921B2B91F75343B37C0 /* SubscriptionDisposable.swift */; }; - 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 */; }; - 6FCA41DDFC81BFA4055D699C6C9F8172 /* UIImageView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = FFD2DD6C44BEEFE07B7C888B111ADB65 /* UIImageView+DDCategory.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, ); }; }; - 701D612752F9A703971CAC2C803BAB38 /* ObservableType+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1251C85209716C617C7B9F371BC3DEAE /* ObservableType+Extensions.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 */; }; - 70CB725EC2D3E4977E8C55CE9EAC4D0A /* ZFPlayerGestureControl.h in Headers */ = {isa = PBXBuildFile; fileRef = CC8E283F6E8225E91F6D44784460A8D5 /* ZFPlayerGestureControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70D83519B4B265A3013DB754C8A4B901 /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EDA3613935AF40D8DB29CDE75D50025 /* Platform.Linux.swift */; }; - 714B1CA2AD44049A52267BE368CD4C8E /* SwiftEntryKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BF835AF874C679A92945FD3680D97C6B /* SwiftEntryKit-dummy.m */; }; - 718A1B75242F781D6C7E88A3EDE3476E /* SynchronizedUnsubscribeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D0C5B8270C483F02144AA8D18C90901 /* SynchronizedUnsubscribeType.swift */; }; - 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 */; }; - 7281A5DFC4AC7D1F62AF44943C10B361 /* Producer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 935A60179E482420807581C62CECC8B5 /* Producer.swift */; }; - 7293ABFCA8C8B89CFCC760E539AEF304 /* GroupedObservable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FDFF23D0CA9275C1C9B3BF37FC20772 /* GroupedObservable.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 */; }; - 737617367A663955CE8E903DAD1C7159 /* DelaySubscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 779ED11063FBD714E51333AF36ED5209 /* DelaySubscription.swift */; }; - 738337670D9EE179710E506D02EF963D /* KFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7633FA2DCAF01B51453AA097D12BC7DB /* KFAnimatedImage.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, ); }; }; - 745D1703E1D29FD12340402A7F6B71D5 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 7161FD57350902AECABFE98E777A0DF2 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 748A364CF094F96B550366CBB186E41A /* Do.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63419DC0BF3A8E6707B28DD5DEC2804F /* Do.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, ); }; }; - 75C045B811885FBDF3FCB78F77326FDF /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E8A684D5AC3AC69C9F81671547F8CAA /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75C1FA82DA118DA3208E28DCA8A8AD05 /* ConstraintConstantTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F183400195575164CDEFA521081774A /* ConstraintConstantTarget.swift */; }; - 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 */; }; - 774CFF5DF8BB0D8AF40C421AC4E7427C /* SwiftyRSA.h in Headers */ = {isa = PBXBuildFile; fileRef = CAE61E46CD80D963B04B6CED2CF096C6 /* SwiftyRSA.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 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 */; }; - 79980E7A30DC97BA8D5BCE44B05CDE0D /* KFImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9509045BB173ED128A8FD4BEA2C1169 /* KFImage.swift */; }; - 79D547FB7599B9D84A5F5697924BC58B /* JXCategoryTitleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 67EA46B2D4684A456D577D01ACE5C09F /* JXCategoryTitleView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79E0DAF50845A6D1EAFD7D91D7770187 /* RxSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 29C345A668B64C44B7B0A74B0206470F /* RxSwift-dummy.m */; }; - 79F7344C573425769AF35D858AD4A67E /* UICollectionViewLayout+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = D47153E7D24BB2FCD8C70411D09E2F43 /* UICollectionViewLayout+MJRefresh.m */; }; - 7A7F0269C175EB857FF42B4F9DD8ED85 /* UINavigationBar+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = D096A66A7BEE99520FA331B561FDE88D /* UINavigationBar+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A82EFD927CC0F6EE14B185490BDA0BB /* Concat.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE54042610CD5021652EE0303692E65D /* Concat.swift */; }; - 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 */; }; - 7B0B8A575C497874E971408584743E02 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 96C749560C78C4DCA700A3EC0CCA6ABA /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B45550C7795D7B29E6E558F00864D1E /* UIImage+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9383B6931E6379E29C9E8D1371AACCC0 /* UIImage+ZLPhotoBrowser.swift */; }; - 7C4555B4F80F91CE5F03F39C2D64D86D /* IQKeyboardManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90B66BB5F4AA694B89A8CD59D21A1D5E /* IQKeyboardManager+Debug.swift */; }; - 7CAC352F732EACD3F592D7EDAA97DE80 /* ConstraintLayoutGuide.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C2DA1167FE33CA58E41E634B332A355 /* ConstraintLayoutGuide.swift */; }; - 7CC298CB85BBB9C814F22B8AAEF94281 /* IQPreviousNextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A789DB64B15EBE6C180F3F4A0CB33C14 /* IQPreviousNextView.swift */; }; - 7CDD4BF0209AA2F717C7546D5B6BF979 /* ZFPersentInteractiveTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 22D0C1EF358F431DAAC79A38578A86A8 /* ZFPersentInteractiveTransition.m */; }; - 7CF30055D9C88997ADB663E49F04C4DE /* ShareReplayScope.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F81CC6D2F90366A5CEFD1D0CA455A37 /* ShareReplayScope.swift */; }; - 7D10A506462A02D4921F5C1E7D8B737D /* SynchronizedOnType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 968B75F61B67C9F78C8926BFB0A3041F /* SynchronizedOnType.swift */; }; - 7D14FB4DACB91F024A5EABFF36E101E1 /* ConcurrentMainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46AF650B6387318653732241EE6C7F84 /* ConcurrentMainScheduler.swift */; }; - 7D23A05408E0E17BB56E5909C983386D /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = 910515F363886336E686FB0B7BB42736 /* Notifications.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 */; }; - 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, ); }; }; - 7F1340DA47ECB0A1DC7CA72DA1901E44 /* Disposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1BD4BCBFF2205C91FBE2FBF1E963ACA /* Disposable.swift */; }; - 7F4D207C18AAFAA5FB0A27C776AD697C /* UIApplication+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E445AAD498A96C299DEDA2895DE9FA6 /* UIApplication+DDCategory.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, ); }; }; - 7FD541C37F57A49DA86354FB0AC6CB72 /* HTTPMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32160D9FB5932DE0FC0B26B94BABF671 /* HTTPMethod.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, ); }; }; - 80AE5BB1069E14FBEE07D7A3F785E408 /* UILabel+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CFF71A147395732903140C250F76BB7 /* UILabel+DDCategory.m */; }; - 80BC7581EDC7EF248D8E56A3AB986B53 /* RxTabBarDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDDF3BEE0A9AA78EFB976893E987A6FB /* RxTabBarDelegateProxy.swift */; }; - 811C9A2E83585BC123F9A759F78FE3D1 /* HistoricalSchedulerTimeConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFCD7365B39C984D4DD7614F53B3369B /* HistoricalSchedulerTimeConverter.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 */; }; - 815660FECD771288E39783724086A7FF /* ConstraintMakerRelatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2571F104F558D56AA1643BF2B7EEC96D /* ConstraintMakerRelatable.swift */; }; - 81A3D9DB1BECA7DD9A94142824783DD8 /* ZLFetchImageOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = E144C120ACC7EAE402C3CC12068D9163 /* ZLFetchImageOperation.swift */; }; - 81CF2F90F9E50167C955BC597B1729B6 /* TakeLast.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA0A6C7B87A91E79A318418AE7E08F59 /* TakeLast.swift */; }; - 81FE5B0BFC0DA1D15432688A08CC9334 /* Enumerated.swift in Sources */ = {isa = PBXBuildFile; fileRef = A35FBB2AC4CAC09ADCFA5FD239A3DC69 /* Enumerated.swift */; }; - 82300175606EA43BE4BF57888C4A77E8 /* BRDatePickerView+BR.h in Headers */ = {isa = PBXBuildFile; fileRef = 483B487265D43F02EC9913E734AFD0A4 /* BRDatePickerView+BR.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 824EC46BDB0A2DC05A2036B8556BDFC1 /* AnonymousObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CB5971F9ED2AAEB23FD6EFE689A4BE4 /* AnonymousObserver.swift */; }; - 82BA1FDD75004F5AEBEA51C70E276688 /* KFImageOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F74218AE4EAC3E73C44E2DF119A6765 /* KFImageOptions.swift */; }; - 82C5D788B9D79C55B6C1049A63E535F2 /* UINavigationController+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = B3118754C00DC5A18C3E5C511E5F8F49 /* UINavigationController+DDCategory.m */; }; - 82D903ACDA9DF5CE0FDA6DC4D92FAA02 /* Buffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9784281ACB2D7C2250D7EE2F61CD434 /* Buffer.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 */; }; - 839F5CAF972130D70D9F11D992B2E8F1 /* ConstraintPriorityTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7029C52AFA58A03BECCD586864EC830 /* ConstraintPriorityTarget.swift */; }; - 83BC80AF7D43B32132550067EB4E159F /* CALayer+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F223836A638414EEE091A54C5A888F2 /* CALayer+DDCategory.m */; }; - 83FB80448888FC123E9A45527EEC1C92 /* MABaseOverlay+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = E06781D7B5DE80C2713CA0D5AE9B60DF /* MABaseOverlay+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8408F2B1DD16A7D29C771F7B1A5FAF6E /* TVMonogramView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 986A9CA3CF77D11AB3C9243E0DD60161 /* TVMonogramView+Kingfisher.swift */; }; - 841447C2E526E658EC8102873B77A9C9 /* DDTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32758B14C4EA1965F4718EEEA3DC0B5F /* DDTableView.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, ); }; }; - 856E894487D9C439E27121F88E7C6945 /* ConstraintView+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67DCB1DB968582DA481C0778C3762179 /* ConstraintView+Extensions.swift */; }; - 86144CFC34DE6A3DE7F3CD4CFDFADC9F /* PublishSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 227C901806BEBB3B2BCE64C2FAFC82DA /* PublishSubject.swift */; }; - 861B775409628C66B619E77F522DB27A /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = D68BC02E3A18FAC545AD0942F8BD4C06 /* Constraint.swift */; }; - 8620470517C811FD4767A6DD0371D0D5 /* IQKeyboardManagerSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C14FEF48BB60E0598B42317C989B033 /* IQKeyboardManagerSwift-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86997C2E83106153831376DF4CB88084 /* ZLWeakProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B5BABB42B4568585425BACE04C7435B /* ZLWeakProxy.swift */; }; - 86DB5B0B24CDF7E5B9DC49BBADCBB300 /* UICollectionView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = C6370465DE051DC741FEEC5C865F2540 /* UICollectionView+DDCategory.m */; }; - 86EFDCFB015C812E2695EA28F9F3B88F /* JXCategoryImageCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D133C2E25C41089F9392231ED2B0385 /* JXCategoryImageCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 875E27FB11EE0F1F4A994E9F84868244 /* GroupBy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41DA497EF073626C5D9A197F3F90A790 /* GroupBy.swift */; }; - 876F0A0ED17438D064D6255B031ED91B /* UIViewController+ZFPlayerRotation.m in Sources */ = {isa = PBXBuildFile; fileRef = 6358D58A5AE250044FABF5EBCE2E3229 /* UIViewController+ZFPlayerRotation.m */; }; - 8772F32DE15FC5E2426A36349DE9E7C8 /* JXCategoryTitleVerticalZoomCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = DF49A0B2DB663CA65EAF7EF8C4B01538 /* JXCategoryTitleVerticalZoomCellModel.m */; }; - 8773A2D17F64B052FB58DE3DCB70ED6D /* DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = ADE3ED788C900A0031D6FD43F3C5C8F4 /* DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 878B6B1A4C24B3D46773E79E0294CC89 /* PublishRelay+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = B92F5DE6EDC55DB5A29243A5B800516A /* PublishRelay+Signal.swift */; }; - 879B01381BC507FA5BAFD68194E65C80 /* Kingfisher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 900AF2390E6431427C998DCE7EFB2624 /* Kingfisher-dummy.m */; }; - 87E790F289BC43498505B6D68AD37C12 /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E4FC5C5B4343E8DE91CB31C605EDB8C /* UIColor+SDHexString.m */; }; - 87E876627F3BB158FD39966792B76B65 /* ZLVideoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79810608C2C763BDCF941946182D9294 /* ZLVideoManager.swift */; }; - 880B4FD7BA7033C8224F63E29E1572A5 /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = 539024D7747DFC60ACCE3627871052CB /* Debugging.swift */; }; - 887595F20B78C5473EA5B93D699737A6 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BE4E3D63762739C388C505F63DB6277 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88C6F8BBF59051ECABC820EEEC62B9FD /* SynchronizedDisposeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07C7BB6A20C3D9D02A2634F44201E6DB /* SynchronizedDisposeType.swift */; }; - 88E67755F51F1CA22343EAA1CFBD41E7 /* DDProgressHUD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E3AEBC7766316577BC25AD601AA4282 /* DDProgressHUD.swift */; }; - 88E8C4E6532C1885DE243488021CF2D2 /* AuthenticationInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74EA3689D1F00D98ABFDC927ECCCA19C /* AuthenticationInterceptor.swift */; }; - 89EE70BDD7951D7481D3C66D02A3BCBD /* StartWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DAD147264FA2FBE6ED5247E9B66774D /* StartWith.swift */; }; - 8A0D1FDEF23935B8426B0DD33EF48513 /* ConstraintMakerEditable.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4886924F62ED6D39696DC7BA9F97A4A /* ConstraintMakerEditable.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 */; }; - 8A64ED4C758DC20F9F638F956789182F /* UIView+QuickLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAC84E0E5BBDAD4F6BD6369E5E2C330A /* UIView+QuickLayout.swift */; }; - 8A7B8BA563A699B6B65542C79C2BE291 /* RefCountDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 940B2DE0CE005687375D4B5CF4576335 /* RefCountDisposable.swift */; }; - 8A93BFC4ECE061648BEDA3A17DF34B7D /* JXCategoryImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 10EE53D4E57EA2E1FA40BC7FADE3D694 /* JXCategoryImageCell.m */; }; - 8AB0D1E3AF7A5AA5C5DA523A2A79858E /* ObserverBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6A19355B7723280626F510E715EE27E /* ObserverBase.swift */; }; - 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 */; }; - 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, ); }; }; - 8C0AF30595CA159608D53739512AD139 /* Maybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE9F7B227F17F41307D3E31581F1072D /* Maybe.swift */; }; - 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, ); }; }; - 8C86163FB573BF8082BFA48147D80A64 /* DDUIGestureRecognizer-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F2337F8EE8158B2BA5BE73880E080EBE /* DDUIGestureRecognizer-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CD30B0BDB4A020DCAAAD4D848E9C968 /* SubjectType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BB27990636087FB8595A96CC780733A /* SubjectType.swift */; }; - 8CFB68D77E49914A0DD60B939BA767C0 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 33FDE16A5277EC7BA28DA5C74ECC367D /* SDWebImageDownloaderDecryptor.m */; }; - 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, ); }; }; - 8D9BF3A8C0FF00DD92FB822463511085 /* AddRef.swift in Sources */ = {isa = PBXBuildFile; fileRef = 953CF3FF2D694E7D51C8340D7A4AA9E6 /* AddRef.swift */; }; - 8DA36FCE31A679515EFD8B1C622A7DA5 /* WithLatestFrom.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9816E7B4E8EC58385B4CBC42517ADB10 /* WithLatestFrom.swift */; }; - 8E1EC31D1564C6B1E83C995B882981D4 /* Runtime.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DE1AF0A0764A564599E003AFBDB50AC /* Runtime.swift */; }; - 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 */; }; - 8F6B7420DD1D11D5D4541BCB470C006E /* UIImage+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = B63FC9B6DA49EF325814122062E72D8F /* UIImage+DDCategory.m */; }; + 21FA952E49A0EB77EB7825A78FEF6AA5 /* BRResultModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C9A84455ABE4629AB73B15B698AD049 /* BRResultModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21FADAA36F19612801A23CD9FC35BA98 /* EKAttributes+StatusBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD0E5BBF85B2ACF004F02C14D63AEDA7 /* EKAttributes+StatusBar.swift */; }; + 220574BD646D0F560EC58F7A92D5DBD0 /* AsyncSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CF46F080893FF3D38BDE1324FC8BB85 /* AsyncSubject.swift */; }; + 224D5F6BA39BADAD19041AF6AD880C80 /* Bool+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4763623B772F020E17DCB8248891393F /* Bool+ZLPhotoBrowser.swift */; }; + 226AE9954640E71AA69AC12F268C4B58 /* RxPickerViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 928616C4F91F5DBEC11DCC224AA38C60 /* RxPickerViewDataSourceType.swift */; }; + 2287C5BB509DBADC66D80828A939E186 /* Box.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C44A92ECE8EC09F38A1D3E80C511418 /* Box.swift */; }; + 22A0EE3CF4D4D5DAF933A7871B6E47A9 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = BADC12FA4AA758B1B0C6DF41C2335A12 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22CE10056B2DC6A993C8E3CE966A45D4 /* NSButton+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDEB3B847B55ED766DA3517ED93D6160 /* NSButton+Rx.swift */; }; + 23070072A95EC58547F751658BD10FB8 /* QLUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01680E8EE498EBF8533C103BE519E18B /* QLUtils.swift */; }; + 23278BD64DE695FABB0068DE42C64E5B /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D2390AD1BF0F59E27CF22CA709C6439 /* Storage.swift */; }; + 2354A0786A1EBBC2298B9CB493F8C4FF /* URLRequest+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEEBB5686AE36966FA52BE0268F8C03C /* URLRequest+Alamofire.swift */; }; + 235F5CA0FE85EC9C9BF77DDF796070C3 /* JXCategoryBaseCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F7850CC6AF396911DBC37C096122FC3 /* JXCategoryBaseCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 239036796DB886B9DA46D63F53273AA7 /* MATraceReplayOverlay+Addition.h in Headers */ = {isa = PBXBuildFile; fileRef = 2073F13CD5B17C87AF57433704ED9629 /* MATraceReplayOverlay+Addition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23B683FB3262FAB104127CD59D29E34A /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 7609B2B03558E4594631C731EDB10728 /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23E7FD08C3DF07540AD2118EA057AECA /* DeviceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 076767C801825F6661A6B2EABC90BB53 /* DeviceInfo.swift */; }; + 23EFAA45BE23C0F05AE3A5A892808639 /* UIView+Shadow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45A54B0C5BBD3E42F6B6CE069DCEA312 /* UIView+Shadow.swift */; }; + 242239DF798489A840B26EC33F3F5D94 /* NSURL+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = E9D8D0F8E9A255A92414961BA7142CDF /* NSURL+DDCategory.m */; }; + 24488C0EC1CD3766AF3BA0C3361D2F05 /* KVORepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD422C83BC57172173F0F98093036145 /* KVORepresentable.swift */; }; + 245998E286CF524C5B424CA339520E00 /* ToArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAD68A0C77868E41D5CFFECC43E9C127 /* ToArray.swift */; }; + 245D0E313372FC4F2297E8CDC17BFDF4 /* ZFPlayerGestureControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 07836296D8BA406CCA3977BA36F255BE /* ZFPlayerGestureControl.m */; }; + 24E92B843F6FA24594FB1963D297E1C1 /* DDViewControllerAnimatedTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 635AE42BDFD151FFE2EAA9B7790FA772 /* DDViewControllerAnimatedTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2508C13A6D783495CAA9FEF848ED3408 /* DDBaseButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 66BDB5B6BE44519D1B66F53F19E4EB7D /* DDBaseButton.m */; }; + 252E57AFD2DEE7B0073115B49A524DC8 /* GroupBy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 055E3E762F3C890BA7920B0EF52410A2 /* GroupBy.swift */; }; + 254DB7DF69C8F0DA8BAC684099B27944 /* ZLAlbumListModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1765FCE93311E671DD3BC7F16484E116 /* ZLAlbumListModel.swift */; }; + 259DD1BE69FB6C8030BCD5994B5E5B51 /* SwiftyRSA-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CA0D30FAACB5B4E05E683B2ACCF273E /* SwiftyRSA-dummy.m */; }; + 25BF5D9FAE084BAE3824007EA8E0196C /* IQToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 175055EB2724632F731192715848AF5C /* IQToolbar.swift */; }; + 2629F4B4BB44F29B18925FA447D3D1DF /* Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = A50F6C14295C24018D3303C5B335B506 /* Create.swift */; }; + 263E6DC0FCCF45948585AE8D649ADCE4 /* UICollectionView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD34685F95073E4F2CEF63EABFFA0452 /* UICollectionView+Rx.swift */; }; + 2655C03CDF30A7690E43D892DDC95AB5 /* ZFPlayerLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AB528A1B975B3C2034CDED6750905A6 /* ZFPlayerLogManager.m */; }; + 27043FD4E15DBD03FD933A60109C3009 /* EKAttributes+HapticFeedback.swift in Sources */ = {isa = PBXBuildFile; fileRef = D56FF46099C41C4179B37FC480371703 /* EKAttributes+HapticFeedback.swift */; }; + 270ED905740AD9FEFB9A346AC527D53A /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0133C5CA64F9E7B9EC4CD81E278FC21B /* SDAnimatedImageView.m */; }; + 2776B3355D535E5A68E18C4C77B2D595 /* ZLPhotoConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24F414B07DE7D57F29C8DD5C1B7B94BA /* ZLPhotoConfiguration.swift */; }; + 27770DF47A61DEEB841F3E977A6BE99B /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 6882F146555E57F04598A96644573544 /* SDmetamacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 279C4E09D6D4113942EB37DE5DD034B0 /* JXCategoryIndicatorBackgroundView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5169308318F183E8145E35DFF3BBD5F0 /* JXCategoryIndicatorBackgroundView.m */; }; + 27C8D5411BAE1F694760489635B2FF45 /* UINavigationBar+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 101C9488C6B56B8AE42CC2DEB14858D7 /* UINavigationBar+DDCategory.m */; }; + 27F6C0BEE3F135D3F986B933CCE51CA0 /* AsSingle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C394CEBB4546119ECB1C24B64E6ADE3 /* AsSingle.swift */; }; + 2862606CD649C1CBAA5F4AA304CAE1C1 /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84D2B83AA07FA4EE846C5ED2A2BDB6A2 /* Utils.swift */; }; + 28E3B45C51EB7B6711CC6AF6BBA4F32F /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = BD282A85AB1DA40361B8DA2454E817CF /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28E8453EBEAA5D3187A1FB686F807A07 /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 893FD45896F746FE284051A52A86426C /* SDWebImageTransition.m */; }; + 290CC252DD7A79A8CD348210A4ECEF8F /* ZFPresentTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = EF2A8113E9DE65767CE9D7CC56250105 /* ZFPresentTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29A94387DA04DE3CA441D0244ED3B6E0 /* ZFPlayerConst.h in Headers */ = {isa = PBXBuildFile; fileRef = D8F227D5D68ADD3C74755F408D3393E8 /* ZFPlayerConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29ADDEB7070613224B9510A61E41A745 /* EKAttributes+WindowLevel.swift in Sources */ = {isa = PBXBuildFile; fileRef = D10BE5B1E91883492D614DE95EA20871 /* EKAttributes+WindowLevel.swift */; }; + 29BDE26902A035FAEBCB2DC35DEE16F2 /* ControlTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2EBCDEA0E18CFB49CDFE9A4AEA421A4 /* ControlTarget.swift */; }; + 29C7B5B61EDB9B6010093123C95146D0 /* ZLCameraConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F05A75DD37C54EA2690FFEFA61CA0A8 /* ZLCameraConfiguration.swift */; }; + 29F4DFF55D0B18B9ACA5820B30481389 /* DDLogKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D557D6B686D3717A1C25B4A91E77138 /* DDLogKit_Private-dummy.m */; }; + 2A0807F8CA4518AFFF47520CD2303443 /* UIWindow+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 563C56E411D4BC9C5D6141B44B45F985 /* UIWindow+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A6423FCAB17960280B3035F79F4DD6F /* IQKeyboardManager+OrientationNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B4298074354977BE3B096F2404B2CEA /* IQKeyboardManager+OrientationNotification.swift */; }; + 2A6516A21BC488E02185E80B8CE10CFB /* DDMASearch.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C1F185253DC51F255BA776064117957 /* DDMASearch.m */; }; + 2A854D8E21E27051797A922AEB5A9551 /* UIImageView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 44A1DBE692BF431955C710EFEA6D5010 /* UIImageView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A9587CB9E83DC818BC42AB6D3BA6C93 /* AlamofireExtended.swift in Sources */ = {isa = PBXBuildFile; fileRef = 706FDF0D1877BEEB3B72FA667455D2DE /* AlamofireExtended.swift */; }; + 2B33DE72B5F7194283CD3DD4A4473726 /* ObservableType+PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 447B4B856DF296CBC8356A4E4F0DBB49 /* ObservableType+PrimitiveSequence.swift */; }; + 2B6E7E401FECF3BA6B6856DAFE81E233 /* UIControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = D30FF4C708DCD643551784C15B84203F /* UIControl+Rx.swift */; }; + 2B799593BA9EF6DAF478B5551D7E7A6D /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F71FA752AF4AD1CBE961DD87253EB4E /* SDImageCachesManager.m */; }; + 2B950052FCD0FC8888AFCDB34EC1D89A /* Disposables.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89B784E3FCB395FC266E9DB14E05012F /* Disposables.swift */; }; + 2BBD8EA6B3F3A8EA8F721498BE13D6C8 /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C2B307DF007DE390712809DE011C5B43 /* MJRefreshStateHeader.m */; }; + 2BF1A8E6F302964E4EA7E6B004474BF6 /* RxCocoa-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AB1E39CA6AFB7FE59C944D0E54210502 /* RxCocoa-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BF6AD4F75D3FFC369CCB82DCA4C730E /* MJRefreshStateTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 857089AD8B62EB613B627281C537EA3A /* MJRefreshStateTrailer.m */; }; + 2BF7BE1115AE5E63724A339701C1D7C3 /* ZFPortraitControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = 515845AD1E4F81D84BB2B852F2EABB53 /* ZFPortraitControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C0D806E4CC111F69F6DA1589BF4DE81 /* PublicKey.swift in Sources */ = {isa = PBXBuildFile; fileRef = D46282E095DB304180ACC5813886B840 /* PublicKey.swift */; }; + 2C37F2D2D4CEAD643BD8D6212242A740 /* UIRefreshControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC57A02B7CA9FDB37D02FCA6A5F82488 /* UIRefreshControl+Rx.swift */; }; + 2C6800A5F9C1D1678421E5BEF03AB8C9 /* MABaseOverlay+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = C1FBDDD488E914C54EEC45235F6F15AD /* MABaseOverlay+DDCategory.m */; }; + 2CC3AD3D3398B56CF9B85CC4A7F9F439 /* QLCompatibility.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFA7D24EC65CBCA265744E7840B2C390 /* QLCompatibility.swift */; }; + 2CD84976B5168609BEBA3877A2479A1B /* GIFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0CBB0E3F0A61ACC8CEF2A45411A5AB0 /* GIFAnimatedImage.swift */; }; + 2CFCF233E052F29452123E61CB274CFC /* UIImageView+ZFCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 99C2A3CC9DF59387B3895793F1B686B7 /* UIImageView+ZFCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D2CDCF93A57C458A459F5A968528E34 /* DDNavigationControllerDelegateReceiver.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F288A0F3BBE89DEAB560F1358EE6383 /* DDNavigationControllerDelegateReceiver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D7F5FAC79AC4A2DA11B983E349810C3 /* ImageFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE25602EA493B11A1957661FCE674D16 /* ImageFormat.swift */; }; + 2D83E793BB320606B62CFE1E10C2A490 /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = A5D4E64068394AA154860B9C15CC04F9 /* MJRefreshHeader.m */; }; + 2DD0FBA0F581E85B661ECC806DCE619B /* Repeat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E5EA93FE5870D31B6974C927E031778 /* Repeat.swift */; }; + 2E3D2707E7E60BE010D3246CD02D6584 /* ESTabBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 738E4B79AC68A6F43F3E49E0F2EACD34 /* ESTabBar.swift */; }; + 2E79DAC320EF92181E82D10CF39B627E /* Disposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = F92315184F69837BBA685B0BE3427A7A /* Disposable.swift */; }; + 2E7F3CDAAF53377E46D82BA29C31E95C /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C32471D17BB084A1CD575044F9A328 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EA54986168480B85D657D590E556229 /* ObservableConvertibleType+Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42CE894862A6551F3FD6D62E3B4F513A /* ObservableConvertibleType+Infallible.swift */; }; + 2EDAF39A638BF0797DAC0C75226CE335 /* UIApplication+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E955CE6C1C09B352957B302A7537C11 /* UIApplication+Rx.swift */; }; + 302832D4B7652F756A29A925F087C822 /* Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E70B43D74E84F3AF81B44C10CEE495F /* Concurrency.swift */; }; + 303B93CF0EE553490F73F76D9C534C44 /* EKNotificationMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C5F422FD2A112BA0F9EC79C48A85A03 /* EKNotificationMessageView.swift */; }; + 305215A4B4F53C554E7FA7D013915954 /* NSBundle+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0705F50356EDCD9449E150194C43FECD /* NSBundle+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 308503CCD3E28A3911BCC7004887D711 /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56D827DD71933586827C60C59B2F324D /* PriorityQueue.swift */; }; + 3088663B2B31153DD3995BB53A10045A /* ZFSliderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FF528BDA2A44ED52A07746A34A62DC8 /* ZFSliderView.m */; }; + 30BB7C6430A2B582DF78FA630BF7FA2C /* ConstraintMakerEditable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF7E309CD40C8902B3DC69167A80DF37 /* ConstraintMakerEditable.swift */; }; + 30E36A3FBE43527FAE6BB1A0CB663411 /* UIScreen+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B5E1308D0498DDA1BAE3780B738588E /* UIScreen+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3134DD1CEBD5377DC15CC2A839C41CDC /* ExtensionHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D5E4C805A263C00F598441E53FFA2A0 /* ExtensionHelpers.swift */; }; + 315E6E32711371D1E923D202C5BDF0D4 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E2DDAE53B52C281E0BA6830BEA149E7 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 316ECCB1FEC71196E803E0DDCED7C651 /* DDBaseScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BD16989233DEC0EAF9163AC4121FF46 /* DDBaseScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 317855D5F00F5D17E1B4BE94BFBBE936 /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18A21A161377B697F7BD65D55700753D /* RecursiveLock.swift */; }; + 31C23CF66BBB1520FFD4D8C8AFB510DF /* IQUIScrollView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E62D8BC57B064B2B77157DB54B023CC1 /* IQUIScrollView+Additions.swift */; }; + 31CF6A9299E02044EA28735F99B19686 /* UIView+ZFFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AE2FE6CDA623B5D1DC005A03600F5E0 /* UIView+ZFFrame.m */; }; + 31DC9ADFF2E15EE5623A797A393C8952 /* Switch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A9621857C668E485CA2AA9762EAE498 /* Switch.swift */; }; + 32D2FA4F8AC6EBE83DDF786AF4629B28 /* DDAF.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC674515650A7193BA73BF558F4961F9 /* DDAF.swift */; }; + 32E95A874664AF103BB1075B97BCB00C /* DDBasicControlsKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AF2256806EB74927FFAEBE52134E034D /* DDBasicControlsKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33043B5E0E8C4E2805481E6D692949AB /* JXCategoryIndicatorLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = D66D24BA0314D69D80A4725766A65B41 /* JXCategoryIndicatorLineView.m */; }; + 33206CE1C59D7666BDDE9E1465A610EE /* ZLEditImageConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = B60734D98697BBE0BDA5907476C2F8E2 /* ZLEditImageConfiguration.swift */; }; + 33859D3CB90E4ABDB24C9227DFE85E4A /* RetryPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CD1C09E35E0FC2C32AA7FCD3AB19C76 /* RetryPolicy.swift */; }; + 339D85A37AB838F7564B9254207DE99F /* ImageBinder.swift in Sources */ = {isa = PBXBuildFile; fileRef = C987838EA618BD73F6A28ACD07188BC7 /* ImageBinder.swift */; }; + 33E6C702602A0ABE4B9FF00731487E49 /* DDBaseTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = A3AA6DD0FF21EC10EA126324BE0C6EA1 /* DDBaseTextField.m */; }; + 348A2399833F70160F70ABBDCB980E2B /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A01F98506172B29980B23B134681B21 /* SDWebImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34C07B18252160C63FBD16003E845CFF /* JXCategoryNumberCell.h in Headers */ = {isa = PBXBuildFile; fileRef = E881C79A457FA3C852B9D5199547AE30 /* JXCategoryNumberCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34DB33F3EDE087D762F6EE5AAAA7E1B5 /* AsMaybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 980BE6CAD2A65E7CA227BB5EC5D8BA13 /* AsMaybe.swift */; }; + 34EE7B15E96B44F2F505FF8B47CA47BA /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6574527F11AEEBBBD10C4390745E3850 /* Response.swift */; }; + 34F4C47DFD00CBF46312DFB03A6E8840 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 52FF72F067B913274A50FC6B65772CB3 /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34F7EA493734DA89520E55955E5A0DBF /* Scan.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FF4A0F5E61D523DB46B7274B7ED7FE5 /* Scan.swift */; }; + 350DE16889C579B6F6A25063F2F8EB8D /* Delay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A46E93833CAAF0016F1A076B6A5C84D /* Delay.swift */; }; + 3530FB5ECF1B91F9E3243BF34F446980 /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C4E2D5039129C5DDB1F47E2757EF79E /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3542BDC08CBCA8BB1951AB507AB42AA1 /* JXCategoryImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 84139A709116A6DE8AA5ECFC893A1675 /* JXCategoryImageCellModel.m */; }; + 3563535F257C8923038E5C66A70CD288 /* BRPickerStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = B4654BC1E670D3428DC237EAAA471D3B /* BRPickerStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 357C743823312159B0278D1810A8A481 /* EKWrapperView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2620ADC3E00641CA2E744DB523F945EC /* EKWrapperView.swift */; }; + 35B124D386A8A344DB4E378136803251 /* ZFSmallFloatControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = D251F6F5E7A097DA804D6B11A84EBCC7 /* ZFSmallFloatControlView.m */; }; + 35B750040F955CD43A5356CCDB855884 /* Amb.swift in Sources */ = {isa = PBXBuildFile; fileRef = E07E5EEF70E220B4DF1EFA02EB269F20 /* Amb.swift */; }; + 35ED1671F8FD3A5108E1B917130980EE /* EKRatingMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD914B4E305D6933F1457453419AA739 /* EKRatingMessageView.swift */; }; + 35EFB687EAD4B6CC33E2D5F4765EF4AA /* SchedulerServices+Emulation.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC525EA2503D26BE1EB7223B4E059630 /* SchedulerServices+Emulation.swift */; }; + 365DE3259C4106D8E3AC066DAEEB4720 /* DDBaseSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 87D5941B2ADFCAB567FA9C59C9702BE0 /* DDBaseSwitch.m */; }; + 367AFD3796B3274A848E43700C089BDE /* Do.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46A34A02338061EADE6D0A8E23EC2901 /* Do.swift */; }; + 36AB9414D82F70F6517E1948301B56E6 /* SDImageAWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BB996E3B95737B5D391C477524EABA6 /* SDImageAWebPCoder.m */; }; + 36B204B1822DC0BB1A37AADE7218B28C /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = C944813E51D25FAADC9BEBD18CBF3C24 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 36F40E8EBE86E294348DF7F319E98D8A /* AutoUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5C924DB562B5A9157005183A61F78F2 /* AutoUI.swift */; }; + 36FEB6DD53D08DB2164BEE84F3653BE7 /* Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FA83B8A7AA08A8094261110F8AB52E9 /* Driver.swift */; }; + 372B67097EA2150B5AF1C739C6B32DED /* ConstraintLayoutSupportDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 431451112586F267C934663C4359E1AE /* ConstraintLayoutSupportDSL.swift */; }; + 372DFC5E474E6F5988D709EE7BAD99E6 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = DBF3F7C6011FFF9525AF4F9EA7BE014C /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37503C1DE9265411ACB8A7E8E3190128 /* Skip.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC6F7EDE8C85ACEE871942207EC9B8DD /* Skip.swift */; }; + 379EF14788368688008C6046091CBA72 /* ESTabBarItemContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C38F44EE363718812226442A59C3B00 /* ESTabBarItemContentView.swift */; }; + 37A034F160E2FAAA145ABACA1FCAA74B /* Reduce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BE7D202B93B07C3559872F2CBB2421F /* Reduce.swift */; }; + 37BA615A168F40110AA141834FC96956 /* NSThread+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = DE0880A8271F9D408AB8559DEE604AA8 /* NSThread+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37DA31E97761C9AD09DB9F3AD80AAA70 /* JXCategoryViewAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = E6849A44E28F80902A3A32765DB0396A /* JXCategoryViewAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37EAAF1E2438D10B67FB93C216B08784 /* HistoricalScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33D9D57752039D3412720692F13977DB /* HistoricalScheduler.swift */; }; + 3808291BFCAA43687CA6EEEBA0A23A78 /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = A528AF6CA50672282B779DDDF556B1A2 /* RecursiveLock.swift */; }; + 38113EA83CFE5B14B6BCFC96772A2BDE /* IQKeyboardManager+UIKeyboardNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1B398DD661B46203B21F05443005216 /* IQKeyboardManager+UIKeyboardNotification.swift */; }; + 388BBDF2D1096563AA5C9266E06AF151 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = F54196355345A9E53E3144536DE2C295 /* NSImage+Compatibility.m */; }; + 38B5C354CCEB18536DC8739368429DA9 /* UIGestureRecognizer+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8D5FF5C9DE17D7A3F5AA39571E95E70 /* UIGestureRecognizer+Rx.swift */; }; + 39FFE68A2DE066898D0EA1643D3C9950 /* Kingfisher-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DE4652CD4273BE4BB3440653574A55FF /* Kingfisher-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A0E2B7223710E58C04C5D77110BA351 /* ImageDrawing.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21E6071B51761D1B0624904B2F6FD1F2 /* ImageDrawing.swift */; }; + 3A10B0AAD9F15B171EF41F035369BECB /* ZFNetworkSpeedMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DCF5D4CAE57B21EC2F4AB5A1A708765 /* ZFNetworkSpeedMonitor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A4EF42201CDEC7D5815443CF67E0F09 /* BinaryDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49B243634C54B2984100673C44A1395A /* BinaryDisposable.swift */; }; + 3A6E2C4AFDE24B27E1107FCF960F7927 /* MATraceReplayOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 17DD0BD7D4BB86F9A859AC0A834DEB26 /* MATraceReplayOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AAB1695C0F9AAE144A7E37E34966F45 /* IQTitleBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 478DFBF13B36D4A09093D2C16A33EAE6 /* IQTitleBarButtonItem.swift */; }; + 3ACCD6DF1F9C7989B0BB3482AD01D786 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 69BFB506BEE1F9BC2B4D02D3B312774E /* SDImageCoder.m */; }; + 3ACFBA19004CE54466BBD8C6BEF1D27B /* JXCategoryTitleImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = AACA4276A4DD2A181A29CB5A6D4F987F /* JXCategoryTitleImageView.m */; }; + 3B14941EB241AF1ED07CFF634860BE1E /* RedirectHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4EECC192C97F684F343F01A7084A8535 /* RedirectHandler.swift */; }; + 3BA07D26BA7B31AD481DCF513B101864 /* ZFPlayerView.m in Sources */ = {isa = PBXBuildFile; fileRef = CA6CE727FB080198540D2C3A407DBEF6 /* ZFPlayerView.m */; }; + 3C11CB98AFEFBE7A201DA71292528A69 /* EKRatingSymbolView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D37A0365AA292CAFBC01F43B562A1F3 /* EKRatingSymbolView.swift */; }; + 3C6EB76A28ED5AA81C4EA0A62ADCD8CE /* Sink.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA258E03BA62E8F40739BD9A32A99295 /* Sink.swift */; }; + 3CA6371C85FE25DFE2889186676D041B /* PrivateKey.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28E96632CE12E61FA77F2320A4E64891 /* PrivateKey.swift */; }; + 3CDACAC9E75A9E69F02B42B2D1C56B27 /* Bag+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1897387CE50E8C5942286C2C84929154 /* Bag+Rx.swift */; }; + 3D1DB9B06A570F6243016C3FB3692C4C /* ZFPlayerController.h in Headers */ = {isa = PBXBuildFile; fileRef = A102EC55EA836A841D7DE393469035B3 /* ZFPlayerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D99594286ED1D20D88E0A86886224BA /* SwiftyRSA+ObjC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2790E6FB8D6725649EC7DD0E59B9679F /* SwiftyRSA+ObjC.swift */; }; + 3DB9872080D437F2A851158F1F8F2693 /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = C7EB26E761192D0B395DF0707941F389 /* SDAnimatedImagePlayer.m */; }; + 3E760F1E447D237A0A3BC6293C159944 /* ConstraintPriority.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51CB50772BAF3D0328DE0CB9E8F9E354 /* ConstraintPriority.swift */; }; + 3EBC1473805AE2975380A13C46E9394E /* RxCollectionViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A0F6B89029BFCFC9259FA080CC8A169 /* RxCollectionViewDelegateProxy.swift */; }; + 3ED2486A34EFAD23ACEA160695EEEAD9 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = AAACDCDF1E3045C2A52F24EF41A8CF93 /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3ED94B5871CF835E3F3B5FFCEA1405DC /* UIButton+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 414DEEA9CD0A32CBD5AD1D286EB2228F /* UIButton+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EE1F3D911A2EEFC8A9BC6503440FAA4 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = D42114A9586DCA09FC1B2CA5FD4ABA79 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EEB15302467C142726D815653A92E15 /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = CCC376750741E45723F18EB3F2CDB897 /* SDImageGraphics.m */; }; + 3EFC804679D24748F1AE2B2ECC493751 /* ZFUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ECA2DBB53DE392B801A4D9D04EE15AF /* ZFUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F04950F30488FB6AD475A0519B0B16F /* JXCategoryCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 56B3B7BAD0B37E1BF1AAEBD2594EA662 /* JXCategoryCollectionView.m */; }; + 3F47273BBC147327BCC5270A29ED1387 /* Completable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 022AD389712FCB24D1EE0385BDC6ACCA /* Completable.swift */; }; + 3F7C7042BBE1B605BD0FA37056BB1D78 /* _RXKVOObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = D9067A036606DA7919DB719E91C4BDCE /* _RXKVOObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FE17AA44DD3A1A5179103D3798D079F /* JXCategoryDotCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B334D67E5E5903730B1973E16286BF27 /* JXCategoryDotCell.m */; }; + 406B70834D7638A4706184831DA1BA56 /* DDPersistenceKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EAD835816757C62EA46382EA25F34BA6 /* DDPersistenceKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40736D23F2F2F3C6B16BC375529FD544 /* VirtualTimeConverterType.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1D6D8936528F3AA710EDE666E1B1CB8 /* VirtualTimeConverterType.swift */; }; + 408E77F6FB2A28181214F3571597C6E6 /* Signature.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA94AE7ACCCFA7BF65E3740A76E672B7 /* Signature.swift */; }; + 40F0EC1B6B9648E6668E369AB598A876 /* BRResultModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 14B89CDF3DDB78BF755C4BE289D591B6 /* BRResultModel.m */; }; + 40FC8D96E22C2F5E03572425C568E3A3 /* Placeholder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63D1E9A0D7E004AD26F2F18F56D56581 /* Placeholder.swift */; }; + 41225DBFBE08DB3C547663BDCEF25E5E /* Optional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 626E5D8C1BCE379CFE289243A1B88899 /* Optional.swift */; }; + 4139B49E8556C97A3D8FE0AB885CA1FD /* JXCategoryListContainerRTLCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D3CEE42B0CF04A30F8A7C5D0CE4A67B /* JXCategoryListContainerRTLCell.m */; }; + 414AB08D97926FD48D8F53A55648C3ED /* ConstraintLayoutGuide.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99A4D11FE648A96A5BE41191F5B06135 /* ConstraintLayoutGuide.swift */; }; + 417F88073D2B0203BC70C580CA9AACFF /* EKRootViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21ED43FD5413676EAFFB003362ED05D5 /* EKRootViewController.swift */; }; + 41929FC0F76D38940ACF7C6C56735C0B /* Date+Dispatch.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0CF26A88667E560740999AB750DAC70 /* Date+Dispatch.swift */; }; + 4223E964C57E9A4588FA614FE769EBB1 /* Toast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5897C1795BDA23E9A770BDF904032173 /* Toast.swift */; }; + 422409F17E1D8888C76E2CA81AB42AC7 /* UITableView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = BD6B47A1E312055E908C51240253355E /* UITableView+DDCategory.m */; }; + 423A35F848C2ACF286C3733820576B57 /* DDMAMapView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CEEFDA1834DF558CEC910B1A10481CB /* DDMAMapView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 429AC37278014388FB98EF000ABF9700 /* MAPointAnnotation+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = D0DFEC83AA1947F7C57D3AC19B582D65 /* MAPointAnnotation+DDCategory.m */; }; + 432CDB24FD1A51EC0E886D74F109EF4F /* MAPointAnnotation+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = D8E1371FFD90B69B7CD816246FC91E70 /* MAPointAnnotation+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 432F9B4E6023BA249378CAF9EDBB5CCA /* DDBaseAttributedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BFA0489989445DD2B4962E11806481B /* DDBaseAttributedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43D29A93EDF3396DB7784752D1F35A92 /* Infallible+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3345FC12F5432119241137F410F1F47D /* Infallible+Zip+arity.swift */; }; + 43F6105765D915CF37B8900BA2C9FA86 /* Debugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92E672D36B67460E69224E81585F7781 /* Debugging.swift */; }; + 4408CB04AFDA8CC998F4FD00910B4738 /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 06EC634AB32CE67F5935F6F0A5AD69C4 /* SDWebImageOperation.m */; }; + 441793180F0D4EFB3B71D6117EDFA872 /* ESTabBarController-swift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A2B2D3DFC187C5D4FDA5530EBD965FF /* ESTabBarController-swift-dummy.m */; }; + 4433D02EE9231F24E94E5FD44492907C /* UIViewController+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49FB1EC653D272840E215E57E322E4D1 /* UIViewController+ZLPhotoBrowser.swift */; }; + 4482C25FB41CA449FB31D498FBC4C50C /* GradientView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B585CBB58624E0EF2F21DF85166782A0 /* GradientView.swift */; }; + 44BDECE8B10C6DFB4BBFB8621A636FB9 /* ControlEvent+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F3E133440B92A7064598D733291ACB5 /* ControlEvent+Signal.swift */; }; + 44C35B8EF128278FA7F9F22C82379DEC /* DDBaseTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 398DF2961A9DBEDEEE8F37805E3DE56C /* DDBaseTextView.m */; }; + 44EF5606E69638A6745A03132AC2F3B8 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF2C5E718C6769207083C6E8EB1A93 /* Filter.swift */; }; + 453C775A0F9ACCD310681A1C49D051AF /* ZLCustomCamera.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4B663ADB8E7392C70972270C49038CC /* ZLCustomCamera.swift */; }; + 456C758D7BE4EDCF597AD04A3D095711 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C755B12374C83F0BFBD661E2D8291FF /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45F084A3F55EF0F0167224B2188F96F2 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77C5DD767DC3FF4E2DDD42B2D01D1EE0 /* Filter.swift */; }; + 45F2115D4EC21D89A899E9D969CA1810 /* NSTextView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 976FF2E2E06321631D7456A718FDD8E2 /* NSTextView+Rx.swift */; }; + 460CAF3FCDD140A11875B67D3124B8BC /* Combine.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0C758BFBC8029DB40D25E71D3D8A697 /* Combine.swift */; }; + 463859BF5F9D7AAD1F9216EA25687599 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 395C2231E068862D97CA29529AD18DE1 /* MBProgressHUD.m */; }; + 464C0BACBF2990B25DC1444413849288 /* Driver+Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76E60CD55C6020A770B1F80F87EE77A9 /* Driver+Subscription.swift */; }; + 465DDC88E2B046AF9FBB74B1D3D3FECD /* DDAudioPlayerKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0973E02134AB7228128B912DFBDC1A81 /* DDAudioPlayerKit_Private-dummy.m */; }; + 466076161BAFA79E1EB9C034956DB0CB /* EKAccessoryNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19B9354E9C62D4DD6CBAC98AE3EEC6C0 /* EKAccessoryNoteMessageView.swift */; }; + 467D4EE85BC0B82D9338DFB1CB37E5B0 /* ConcurrentDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5CB79208405463217F0D40ACA654549 /* ConcurrentDispatchQueueScheduler.swift */; }; + 468F7993E475998F74D45D577A1A8079 /* ZFLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 042B658BD51FCB5C4C38CB4002CECD7E /* ZFLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46B324EC5E73894A704F258E4EDD51A3 /* SizeExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E872D89E831F2D48C7F15D1B0B98A37 /* SizeExtensions.swift */; }; + 46C36454D8E82CEC47B95D6426063110 /* ZLPhotoBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 89691CA8F799C21F0DE4A9D1BFDC06FD /* ZLPhotoBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4723320357D0EA504D83E69BBCF159D6 /* ZLPhotoConfiguration+Chaining.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A74F43E5A5B27409A7B16F84771A955 /* ZLPhotoConfiguration+Chaining.swift */; }; + 474B94BF4B12B3168F0A330F9858BAD9 /* DDSwitch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01309EBADA81CB2BD2FB50A8AECC3C1D /* DDSwitch.swift */; }; + 475A2347C2C908A8DDEACC4C98C0C388 /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = BD9D7EE9F0B4F6321A931EDA5AEBE7D3 /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 477BADEE897F3C0AA214683C37B50980 /* DDFontKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A83F58220ED8E60F55506CCC8E3586C /* DDFontKit_Private-dummy.m */; }; + 47ABDC62006F547E265B058A1D70E8BA /* RequestCompression.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DA168B63AF6CDBCA12F68E28D35EA3F /* RequestCompression.swift */; }; + 484940673D2B49420F4CA31D609A52F3 /* RxTabBarControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 464CD8F4570B51C519E09AFA41112A3F /* RxTabBarControllerDelegateProxy.swift */; }; + 48ABC57D2D89E310C169F45DC8EABD23 /* DistinctUntilChanged.swift in Sources */ = {isa = PBXBuildFile; fileRef = D67851B86363F8528BAC1048E06347AC /* DistinctUntilChanged.swift */; }; + 48C8179391555746A729FA6483B7EAB0 /* JXCategoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = D04F4025DAA6AE1607CA0C6A613E77D2 /* JXCategoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4980DADD831068300F504E6010C54A08 /* DDAutoUIKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B457EC806E1D1DBAD8F081B5BDBD0F0E /* DDAutoUIKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49B34E046084601F4A21F26D84FE832B /* _RXObjCRuntime.m in Sources */ = {isa = PBXBuildFile; fileRef = 52C50037DD90E5A587B72957FB017716 /* _RXObjCRuntime.m */; }; + 4A48E82F99ED27665CF929386AB1FFC6 /* ZFPortraitViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 54474303245141ABEE828DB13E805DFE /* ZFPortraitViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A5855A5E58F24A944BA6D1CEBDC5BBC /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = A52E72F667979A0CE385524329010DEE /* SDWebImageError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A73E66A0348DE3EB7FACE0F8FD7DA61 /* ZLPhotoUIConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCDBF3F0094FDEA2FBB95FAE3D171DB7 /* ZLPhotoUIConfiguration.swift */; }; + 4A8438BA1927768B5ABF3C58D9B8E25C /* DDToastKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 021C02479E90CC819FC3EDB366419AC0 /* DDToastKit_Private-dummy.m */; }; + 4ADC43C8AFDA76BB3708A6CB6BC0BBD5 /* NSThread+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = E4BE4480E2643990990E862622D1F862 /* NSThread+DDCategory.m */; }; + 4AEEFC52D4F0E173563EF56901855257 /* ZLClipImageDismissAnimatedTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A9B4B246DAC7932B71D79F43E53F722 /* ZLClipImageDismissAnimatedTransition.swift */; }; + 4AF0A14FFEF208DB224243AD157C1620 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2436F8A52D8B95050082CCD91AEE312 /* Result.swift */; }; + 4B541C41E90C260270E635F42EDC9B7F /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 455BE24F5F1C7200E7C8BB60ECD4DF6F /* UIImage+ForceDecode.m */; }; + 4B717036F93677425DDB9682C705B644 /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DAEA17D8EA610C4ABB5439BACEF9627 /* Alamofire-dummy.m */; }; + 4B903D01EADC5277CE0807F254D570B8 /* WithUnretained.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F019F40FEA3144FA977635A40108831 /* WithUnretained.swift */; }; + 4BB281256AF4C43F5356440D9BCA56AA /* JXCategoryIndicatorCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F481836E9BE562C8F412BBB3F237D04 /* JXCategoryIndicatorCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C12DE85147AE7B743C1FBF85A6B4304 /* JXCategoryIndicatorRainbowLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = B312BE4F74F13C76CFFF69A3872936B4 /* JXCategoryIndicatorRainbowLineView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CFBCFBE0205E6688F8E47137BD45C15 /* DDBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = 408A95249D2949BFB8A25794EAB53F2F /* DDBaseView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D2325B4C3D859169D1BC869B6E430E1 /* Zip+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3945DF04317E853B8C494AAFA73FFA6 /* Zip+Collection.swift */; }; + 4D3F08725A59FE09F4638268BA669B97 /* Sample.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BF0BF51AB4731B45B8B03E4AD2D7CED /* Sample.swift */; }; + 4D6BC6600B8B6424D86A4A167047846A /* PublishRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B14E3D0EC43ACAEC29EBACE29E447DD /* PublishRelay.swift */; }; + 4DD86C40D4F594076831DF90DFAF5961 /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAEE195988CEB44DDFB617A767DA79C0 /* MultipartFormData.swift */; }; + 4E1B724F70879610E56C69765A0E2938 /* UIScrollView+ZFPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = F4BC498AE00FB76C5D1E643882957B08 /* UIScrollView+ZFPlayer.m */; }; + 4E2E95B4812870A973F2D0FCECF307AA /* NSData+SHA.h in Headers */ = {isa = PBXBuildFile; fileRef = 73419A92646E09D6B562C28B3CA05BA3 /* NSData+SHA.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EE30E33D02A0D59F317A9CFA0009B01 /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 371181C2A15EBAA5B0FC3C4B09A77A72 /* SDImageIOAnimatedCoder.m */; }; + 4EEB05C55B66338EEC5261DDC2B1A341 /* ZLPhotoPreviewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D05AB07AEAA9420C4540ECDF663E1DDB /* ZLPhotoPreviewCell.swift */; }; + 4F26CB68EB35DAA7A17B98DA6EBC9B16 /* SerialDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E569B2DC927CC8D71F4F23F0003C3ED5 /* SerialDispatchQueueScheduler.swift */; }; + 4F338A6C52C35B05E8A873571A9815D7 /* IQKeyboardManager+Internal.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4EBB71FA963D8F2A4864B1F3103DDB7 /* IQKeyboardManager+Internal.swift */; }; + 4F50E550117789F0699F8F37CFA9BA6E /* JXCategoryNumberCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 24CA29109E20F9275E38F8FBFFAD09F8 /* JXCategoryNumberCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F585941A445D7844040321705205821 /* Range.swift in Sources */ = {isa = PBXBuildFile; fileRef = A057D8D9ADD5B92BDE58B602D44F3685 /* Range.swift */; }; + 4F59B6CC1D4B3EFAA25F42D96C22FF40 /* _RXDelegateProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 97A57E6647F42B87160F851992C14F3C /* _RXDelegateProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F83B72978BA10799657F54BF4E61AF1 /* DispatchQueueConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3D984FA15FC54711E4139BFB912617C /* DispatchQueueConfiguration.swift */; }; + 4FA542506516B8922F8AADE85C136E1C /* JXCategoryIndicatorImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FC99AEF9325DC652C27BD7D2F617307 /* JXCategoryIndicatorImageView.m */; }; + 502EA6DB92E0383603F215C479FA7D67 /* UIImageView+DDWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F50A85F23DB3670CBB61983D42325893 /* UIImageView+DDWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50520A6CAB33DD6A5F11562B65CA78A3 /* JXCategoryTitleImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = A64141A13774D957159C396B00EA1FA0 /* JXCategoryTitleImageCell.m */; }; + 50A65AD0A3814D312D70BD853F3A05CF /* NSMutableParagraphStyle+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 431782679AB85CC792CD54FC66A6F865 /* NSMutableParagraphStyle+DDCategory.m */; }; + 50DD8666AF1EAA8E711927A3EBC87508 /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = CFB4B69CE8870B4A92DC09ABE69C3FD7 /* MJRefreshConst.m */; }; + 511B522F19916DD68AF4EFED285AF968 /* IQUIView+Hierarchy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 333F2DD39100144CEC674B19431775F8 /* IQUIView+Hierarchy.swift */; }; + 512135578BA3F99913265843C0638642 /* DDBaseScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 00B86B4238576B0A6C7EA80D078C1B61 /* DDBaseScrollView.m */; }; + 513CADFB7F193445B353B7320A624FBD /* JXCategoryIndicatorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 7358878FDC99B15E1FD4CF7BE510793C /* JXCategoryIndicatorCell.m */; }; + 51460A037F3BD4D23EB161ED5D9F279F /* JXCategoryListContainerRTLCell.h in Headers */ = {isa = PBXBuildFile; fileRef = A8EE0732B24D9380A9D10F82F68C17E2 /* JXCategoryListContainerRTLCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5150F8B34780E4E3DD7CF2219EDCC4C2 /* DDKeychain.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CDFC2D26E2DBC26781C63F8B6332D47 /* DDKeychain.swift */; }; + 516E3095B8774B6FA0FC6C672ABE4B57 /* UrlLinks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96884774F057717C996491A9F223C411 /* UrlLinks.swift */; }; + 51734B077F9900737E1E59F4E5D6CAFE /* JXCategoryIndicatorParamsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 19D80402B8EF2D87BD76DF3ABB909097 /* JXCategoryIndicatorParamsModel.m */; }; + 520D82BBE670B4E930D1B394FA3741D1 /* Resource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1ECA38E0662E0E754A47CDBD3E9503DA /* Resource.swift */; }; + 52239E0B7EA18D91A2395728B2A9702C /* UILayoutSupport+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9FE411F00585321AC1200E210CE060F /* UILayoutSupport+Extensions.swift */; }; + 523D1B0BB7DE56448B35661435267EC0 /* ZLInputTextViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32730F8A7A18DB932A7FECAAE3F9EBF8 /* ZLInputTextViewController.swift */; }; + 523D1B7E3260356560241D0C2A66A49E /* JXCategoryIndicatorImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = FC37965B09CCF834B5FA66CF7B0133D0 /* JXCategoryIndicatorImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52563FEE66AB6AC291788E02FEE56DFF /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = C8B0D6325FCFFB55E1659D7F832108F3 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52E0B9ED085280B6B8F67219F7EA366E /* DDBaseTableView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B8ABD9E511421907B266B104A52DCB2 /* DDBaseTableView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52E7EA351B5EA7DE9BD235418C0484E4 /* EKPopUpMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ADB5050DFAFC9CCC277FA6CEF1CA00B /* EKPopUpMessage.swift */; }; + 530C1E6E8D8210BD44D1C17B9A089BDF /* UIImageView+ZFCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C875871B00E34B57CB9933E8F9A0308F /* UIImageView+ZFCache.m */; }; + 53136C9E69D0BA58AD108FF73345FB79 /* RxPickerViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2103AD375C76744409D72BA18D2FE29F /* RxPickerViewDelegateProxy.swift */; }; + 5360742E9D7DCE8499CD82397481B6C7 /* Constraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75F647DACAC45348A9F04231C502C7A5 /* Constraint.swift */; }; + 53693C4A79EC833BC3BA47F4CAAC9E44 /* ClearMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = F624085069752CD3E97127DE1AB28641 /* ClearMessage.swift */; }; + 53A8449A2AB1430B1001ED45223DCDCA /* DDBaseCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = F72A61F48DADF887C32B1EC3C8075F28 /* DDBaseCollectionView.m */; }; + 54057CFDEEAA2F443A55EB066CB567F7 /* SingleAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A7A9572A176055DF5C20AEBAEC67024 /* SingleAsync.swift */; }; + 5434354C379A1C85A849409F278C7BC0 /* DDMutableAttributedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D9D869EB97B18CEBE0E38D5942BC7E6 /* DDMutableAttributedString.swift */; }; + 54BFDD82C3BBC603F1BA81AA8E103EAD /* ZFPlayerControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = 02866DF792FE073CC505E4F79CC17826 /* ZFPlayerControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54C7634794172F98C306F0B3597D5F8B /* ZFPortraitControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = 391D39FB31B7FE1E6330FC05742F83E7 /* ZFPortraitControlView.m */; }; + 54E7ACA4C129B78296C039BFE5E61BC6 /* ZLGeneralDefine.swift in Sources */ = {isa = PBXBuildFile; fileRef = 669A2514198294877A8F3491D2A37A06 /* ZLGeneralDefine.swift */; }; + 5502A274E4ECD80E19C7051A6FD195B2 /* ScheduledItemType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B82825CF8D80E3754F11399F172CDEF /* ScheduledItemType.swift */; }; + 5551815A96AC2006ED7008C9DD3F8F56 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CF20B8C9D05A0854551BD468863606A /* UIImage+MemoryCacheCost.m */; }; + 55736FD6531A0F1C3B1FDB92244D02EF /* Array+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0CDF0DC4E1310B05CD60253C71A1D64 /* Array+ZLPhotoBrowser.swift */; }; + 559C39AC9FE303F8E073EC5C205F3C58 /* DDAlamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5B52A5102B12C58C636C40B66E7B73E /* DDAlamofire.swift */; }; + 5619747115BC45D8EF9E0AFBFB7754AC /* Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 808DFCFFFA7B6209039E67CB49C61F63 /* Signal.swift */; }; + 564F74F04646D901439FA92F30873B9E /* SharedSequence+Operators+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFCC15F5CC62820A85821DC00CF32079 /* SharedSequence+Operators+arity.swift */; }; + 5664FEDF3A5F6FBD52B9B19B2EE7360C /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = AE4CEF76965ADC8D00CA001C1C34D24E /* SDWebImageDownloaderConfig.m */; }; + 56777054BB8DD06D810BC35C3FDB9EE1 /* ConstraintConstantTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = C06E47D0E2F2EE6B7CCF4459A0E8FE31 /* ConstraintConstantTarget.swift */; }; + 568DF1ED8C470080C126EA9D00448949 /* DDAttributedString.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19EFD61DDF0AC19F722B561503939DBA /* DDAttributedString.swift */; }; + 56D33A6E86B978BD0A7C66442E2D8B52 /* IQKeyboardManagerConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5D99EFA6A36CB89EF3FD2F10CC0779B /* IQKeyboardManagerConstants.swift */; }; + 56E6249ACC30A676C07E28C381EA77C0 /* ZFVolumeBrightnessView.h in Headers */ = {isa = PBXBuildFile; fileRef = BA7726A48CB2001D8D100932F01059D9 /* ZFVolumeBrightnessView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57096ADF117830FDA4E842AEFAD07BDD /* EKAlertMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D201B56339807B0E62CBD0BE2B42DAA7 /* EKAlertMessageView.swift */; }; + 57B80CE67B76B0DFBD48E90021B939B5 /* Infallible+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C316AFF5F31FD73A1072563D126E34B /* Infallible+Bind.swift */; }; + 57F7B5336A1A7C7C0255D92BD569122D /* DDMANaviManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CF7C4DAFD7BA02F288F6F59C8906BED /* DDMANaviManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58236AA8C078BA049D0224B773054304 /* JXCategoryTitleVerticalZoomCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D6FBC98227692E2EDA7BA0158B148EE0 /* JXCategoryTitleVerticalZoomCell.m */; }; + 58EC762555C4067AD919B935D93F5E3F /* Infallible+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59CA523F5ED4C23CE85B1BAF00D65B8D /* Infallible+Operators.swift */; }; + 58FBC07F1AB57EE09E9E2283BAEC5C71 /* DDFileManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC7E7B1E71A60B4E7A6626233CCAB18D /* DDFileManager.swift */; }; + 5939C34E4D2E9A26E09C2334A50D4D39 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 76CA884C548C653E6CE037C7CC1BBFCA /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5943D1EA324ADEC89AA918C05AAF5FC2 /* ApplicationInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93AFB9A50DB970A45391F3502A121E34 /* ApplicationInfo.swift */; }; + 594D1D762E97E1B91F0320C9CDC53E89 /* DDMALocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D75C33C7224002A89D976BEA77AF3C42 /* DDMALocationManager.m */; }; + 599A18B882F08DE626F2B4BC6FF8388C /* SwiftToast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8234ACE7C19004A77861B162823282E9 /* SwiftToast.swift */; }; + 59D42B6A518B9EA16194171DBE454F94 /* RxCocoa.h in Headers */ = {isa = PBXBuildFile; fileRef = EA620F5C15E32DE573BBB863557DC00F /* RxCocoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59E2A301C7D9D99C8175B271BDFE40B5 /* GroupedObservable.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA8F36DD09E2278795519B20F2B4E371 /* GroupedObservable.swift */; }; + 5A18E4F1E797987FD46675D6E1A9232E /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = B5C295419664BF01C1693D120BA2E13A /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A34B62D619873887A4B949D7F548FFB /* UINavigationBar+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = E16096F57A2ABE72DA71031E8C7657A6 /* UINavigationBar+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5ABDAA4FF178EB851CCB2DB80EE56957 /* ConstraintDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A3D76E1EBD6AF7F47748C406FF163CA /* ConstraintDSL.swift */; }; + 5AEE4E23BEE70ADEE597F665EBCD1494 /* ImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6988BF2C6DA9CCFB885A9A2177E8BAA2 /* ImageDataProvider.swift */; }; + 5B35B262F1A59ED958F62EE17B84A57D /* CallbackQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = A90EFFF829D8B6C031175B3F16DBB192 /* CallbackQueue.swift */; }; + 5B61B135DCE322C883A69872A356F596 /* DDBaseNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = D6F65073F0DCD250E60942545C47750A /* DDBaseNavigationController.m */; }; + 5B9B3869CE36800618F1D641E9B002F5 /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A0A2E4D8C87760B993D19FF9F3341B7 /* MJRefreshFooter.m */; }; + 5BB30E1122D6B5C92B596B7839DCDF00 /* NSMutableParagraphStyle+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 63384AFBC552DE6802E90CEF8F8899C6 /* NSMutableParagraphStyle+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BB847676A6F2EC8B5A779AEBC5EEBD8 /* RxWKNavigationDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F3DE80888D43D3C9951DE4D84D5D1BE /* RxWKNavigationDelegateProxy.swift */; }; + 5BE1573FD25A25AF030B0BF733677457 /* Cell+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21CD825AB7F6DDE2D64572AB5F46E51C /* Cell+ZLPhotoBrowser.swift */; }; + 5BEB2A988FCD05A226349FD9C4BC4619 /* JXCategoryView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 39C5A540E8623D397DB9B33C786EEB34 /* JXCategoryView-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C8D180662E74F979FE9FA3DC5BEC582 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE2E4FB8E2BEBDB74313DD9741AA817D /* ParameterEncoding.swift */; }; + 5CFCDC35057A3E9FD4B24DD4CBB161AE /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DF705364F0BC43C833CC7D012C90C75 /* UIImageView+WebCache.m */; }; + 5D11AC3B4B8825EB526924266D467239 /* ConstraintViewDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8AF3DFA7313D7AD950DB8A2B53D323D /* ConstraintViewDSL.swift */; }; + 5D2DD5EB76769B9EB4AD52992EC29C6E /* CompositeDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEE5CD9E26178F50D5F9DBB7BCEA887D /* CompositeDisposable.swift */; }; + 5D3023A3FDDAEC5C7D316E3C88815548 /* RxTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 824856A69D944DFA92D760070A3D0B4C /* RxTarget.swift */; }; + 5D3DDCB7D5EAD124482FDE8694A6464C /* InfiniteSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = E658E32B7A68DF45947738A024C2EA14 /* InfiniteSequence.swift */; }; + 5DA9D5D4FE27BA93CE470741D4A1D202 /* IQKeyboardManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26574936449535B509BE5C6D0034E0C7 /* IQKeyboardManager.swift */; }; + 5DC4E3C2A738F07C2943D5C49C79BDA4 /* EKImageNoteMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82CA52148C0CB755C01EB157B7F47220 /* EKImageNoteMessageView.swift */; }; + 5E228FEF4C8DAD374328D4560B129417 /* DDDateKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05985D471561D3CC0EB9CAB71C30BCB5 /* DDDateKit_Private-dummy.m */; }; + 5EFB9B488300A7396D40C60E2ABB5CEB /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = 0623870DBBA652E111B0F87326866E00 /* SDWebImageOptionsProcessor.m */; }; + 5F178DC2C4D71599481251FAC75742E2 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = B9595AC6B4E211E882A35383440D86A0 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F41ADDEE1A3170476DADD035BFF8DAB /* ZFReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 02C13D7C293C466E0360052DBFF396A7 /* ZFReachabilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F73068079D791AB651DA5F0563C5EB9 /* IQBarButtonItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34CC3770E898F07F459877A63FAEB43E /* IQBarButtonItem.swift */; }; + 5F76B07236861DA2649B62BAED302E71 /* SynchronizedUnsubscribeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B0827036701F362EE661426BD2AEC3D /* SynchronizedUnsubscribeType.swift */; }; + 5F7EA1365A5B77FBC27F52654628DC31 /* ConstraintPriorityTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA39B81C9F694AC9835EFD3EF8670823 /* ConstraintPriorityTarget.swift */; }; + 5FEB0A58659C60C0B299319EEB72E290 /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 834D7B33EA6C1B57E4D8041DCC012066 /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 602983DCC2D9CA5C4E5F9EAB1D7316A4 /* ImagePrefetcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3756881A50A8A89FC1A80F48932308B /* ImagePrefetcher.swift */; }; + 602CC4A58ED9B538AFD8A04290F44C75 /* BRPickerView-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FF392CDD230947518F93FDA3A3921DD1 /* BRPickerView-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 608E5CD7CA96A3E486C33D9F312FC900 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = E74AF6C7BD2D5935C1BE61D88A3F6730 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 60EF2DF520F1164BB293FB035B4F965E /* UIView+Responder.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4D11B919FDBFAB3BF936AE6C7687EF1 /* UIView+Responder.swift */; }; + 611F7E72C62A7D9836A5C8BA014ACAA3 /* Indicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05F9822BADAAFBFBB5BED13D41072C8C /* Indicator.swift */; }; + 61B5D7DACF71FABBA2A23BC96030639D /* DDPersistenceKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D49ED24DAC355802A4BED057B46466F6 /* DDPersistenceKit_Private-dummy.m */; }; + 6210A5E8C94D9610DD9326F3F053E236 /* EKTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43BAAF4125B2B7C23F8E906FA3E7997C /* EKTextField.swift */; }; + 62643C2B0784DD59DA7827A6E98164E4 /* RxTextViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DE136CDA8F1AE0B45CDEBCDE4544398 /* RxTextViewDelegateProxy.swift */; }; + 62645F034EC4123B63B4EF816CA13844 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = A66217270CAC388AB3038D0BAB44FC2A /* SDWebImageIndicator.m */; }; + 62E03A7C90AC5E5B1D0112A6CC78F131 /* NSBundle+BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 69CB524E1CE7F91DB1DB1F3E7C633DC4 /* NSBundle+BRPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62F4B9B2C5999BC71B820F292BD9D244 /* UITextField+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 61B51A451CB94D7646E7B17DA15A9554 /* UITextField+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 632C96E0B7AF101CD955F4311CDAF91C /* DDUIPanGestureRecognizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD9622D78B67EBBB9F0CC68E96C76460 /* DDUIPanGestureRecognizer.swift */; }; + 632E458328F01C905EE92A0529A94AB7 /* Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = D710895E749BAB946654E01B8DD21773 /* Kingfisher.swift */; }; + 636362D9EA734D660CBD6DA487DCC2D3 /* UIBarButtonItem+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = E58AE775FD469CACC6E857C5744573D1 /* UIBarButtonItem+DDCategory.m */; }; + 637DC4D1436A780B796EA1BAE5D9F812 /* KFAnimatedImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41E8E4C5E9E29C04A7A8A4B585174610 /* KFAnimatedImage.swift */; }; + 638AD6074B37A0C82745B41ABB520CEF /* DDMANaviManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0259A6312EF907AF2D060BD0242AAE8A /* DDMANaviManager.m */; }; + 639859131F5B6B971A6D5F13570E2E5D /* EKAttributes+Position.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D9D590E09C0FE35D12401482B553D98 /* EKAttributes+Position.swift */; }; + 63A77C21EFD53EA8A7E3B79ABF59E2F7 /* DDBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4AE11246EECD0B976F9CF8B81E2297F /* DDBaseView.m */; }; + 63E331ECB295DB90E3C240226034B7F8 /* SynchronizedDisposeType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25197147B1BDCF7829FAC33F8D90A2A2 /* SynchronizedDisposeType.swift */; }; + 63FFF49598498CF8C2ED679A60632466 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD2E6735A74591F3855974973FC5689E /* Request.swift */; }; + 6405B88F00699FB27D556521FA391E9B /* ZLThumbnailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCB938EFA10CB6F188D79421F12A0F09 /* ZLThumbnailViewController.swift */; }; + 64893E98B959886000BA45B3DEF3BA5C /* Merge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53970BE51104CA4805F2DFF4EADEC94B /* Merge.swift */; }; + 64C3041F08A2B870F8EE53C9DCF2A5AE /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B3B4DCE1064643B0D0CBB423131D13D /* UIButton+WebCache.m */; }; + 64CD94A1F944E48BADFB3C052F6F82E4 /* ImageDataProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C86605B5DB4A207C18DF0BAB0B51C4C /* ImageDataProcessor.swift */; }; + 64E217B3FE62EEA10B5EB992A7B2435D /* UIActivityIndicatorView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D5673F98454B8ECA0782B1C3CB6F38D /* UIActivityIndicatorView+Rx.swift */; }; + 6526EAD8B470F52119D2C453861C687D /* DDBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5ECE700F4AFF8B78540CE2C56469DC8F /* DDBaseViewController.m */; }; + 65393DFEDA642FBE76283D75C070E00B /* ColorUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6FE25C4D36212884AF611DCC2F0CEC5 /* ColorUtil.swift */; }; + 656FAF47693B8206511951C1DF2D9CBE /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6F24528ECAE39081EE2ABB142D7CCA50 /* Bag.swift */; }; + 659075391B642E87AA542B9F3EC30173 /* SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 900F09E3AB18DCC591F8FFCDC5623C90 /* SharedSequence.swift */; }; + 65C088CFD6FFB712E43AC260421BADF3 /* CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9D1D343EEA5C27B4D71F54C04E93242 /* CombineLatest+arity.swift */; }; + 65FBF2652959C0C03F5BEB1A97949DCF /* Protected.swift in Sources */ = {isa = PBXBuildFile; fileRef = B99629159D169DC44E98D52B41782603 /* Protected.swift */; }; + 662D8B722CE76FE956E05768FD3ED3B0 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 38CFCC46DA1554A043039C4464B0CF5D /* MJRefreshComponent.m */; }; + 665C707285723F3A68DEDF48EB6117F7 /* DDBaseTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = D7C1CDE591EA590C681C78F2EE8AAE00 /* DDBaseTableViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 669426523C46BED22DB96FFC90045F60 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = F5FD663E24FE150C8C601B02693B4C52 /* SDAnimatedImage.m */; }; + 66A4D5DEBBA734D31FC0052BC438A63C /* EKAttributes+Animation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FED76C158E912D16AC748290C45725C /* EKAttributes+Animation.swift */; }; + 66A90DE49D5D62A6B8B93B1BEB6BB0E6 /* JXCategoryImageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EA6F369CBB3FB4CC48C9D8F5DEB8C92 /* JXCategoryImageCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66EDC4F0B9003016D81C3F7D177D6625 /* DDCategoryKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 232C78DA30626E4D5D630977C88C02DE /* DDCategoryKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67361CCD8BA6B13F5AFA500684267561 /* JXCategoryViewAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = AA527DB264FA6745EADFF0A0CE995A64 /* JXCategoryViewAnimator.m */; }; + 67613012FC19662F5A1A452C9DFD7AF3 /* EventMonitor.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5BD9AA5C1EDB586301FBC4F00CA9DA3 /* EventMonitor.swift */; }; + 6777B592AC9488AD68703660ABCFD16D /* Timer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7215AB564266D20DD5A4F1100DB9AA21 /* Timer.swift */; }; + 678E3ECA55B06B72144E0F1FCB7792D7 /* IQKeyboardManager+UITextFieldViewNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8F3B8B01FCE5825085A99950D9F7F28 /* IQKeyboardManager+UITextFieldViewNotification.swift */; }; + 67F2E90F42B5116F653D1FCC9C2E9D4A /* PHAsset+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = E602F76967902D5A6254723E3A53BF52 /* PHAsset+ZLPhotoBrowser.swift */; }; + 6819E936EDDC5F64E03965DDA16F6EA2 /* ZLProgressHUD.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEEBE5B40CE58CE493FE5C5D9213D6F8 /* ZLProgressHUD.swift */; }; + 683BC1392B35D4316ACE1925ED1C6CCD /* NSBundle+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = C6915CD2CEE7988922F4725DF5020F04 /* NSBundle+DDCategory.m */; }; + 685297AE4AE28A8EA07BECA639E313E9 /* DDView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F3181A148D887E3096CEC99ACD066B5 /* DDView.swift */; }; + 68B4FCC1E1A2735532B81982ECC9BE5B /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D21AD7E4E73EF184AB3068EECD2A7EE /* SessionDelegate.swift */; }; + 68C20F65E3110735F394C2D1E0E60AC5 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = C4C8C391E4D58569D9C9704C1F5C01E4 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68E2EB96ADD02E7BB9F052B4B33F111A /* NSObject+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 20697AEF7802331E3C05E0E40131C8C8 /* NSObject+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68E3BB3C139447BA9A82E53CF485909F /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 72DF7CD3DFEBD01540DA11A3E3670683 /* SDImageCachesManagerOperation.m */; }; + 68F046F4FDD449625A4B144954ABFD4F /* UINavigationItem+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B854826A7789934EF05F096D5A1ADA3 /* UINavigationItem+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69628B06AF6EDF37ABECD410CCFF53D7 /* SwiftEntryKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33E92A2F19E132481C1946D42238AB68 /* SwiftEntryKit.swift */; }; + 698D4BC94388BEEF0696C5F30A549DAB /* RTLManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C44F62C22DF3008C7CC0519407F5187 /* RTLManager.m */; }; + 699FD0DDE23477ADD43B01223B63D5CF /* Sequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42E3EE2F918DDAC497F04BB514DDC8A4 /* Sequence.swift */; }; + 69C303549B8C8DC6586AC4D570FAD12C /* DDBaseImage.m in Sources */ = {isa = PBXBuildFile; fileRef = E3C50D22C12C0396D54E5E85E927B93C /* DDBaseImage.m */; }; + 69EC7466EB3C133CE0D82257EF336100 /* ServerTrustEvaluation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C964BB96BC503D38ECEF14B560F872C /* ServerTrustEvaluation.swift */; }; + 6A6F48CBEC40D32D1FED610A00C2CB8F /* ZFPresentTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 48329013E34142821D40FA4D80F06EDC /* ZFPresentTransition.m */; }; + 6A95182C5170DB1A678531A86CD70A16 /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05602809C43207445EBFF4B478A81D7B /* ImageCache.swift */; }; + 6B243EEB7444D034A045EB712ECBF436 /* DriveRouteCustomAnnotationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BC172D80DCC9AAA3282F72EFA8003F7 /* DriveRouteCustomAnnotationView.m */; }; + 6B354D42839B601C9DEFD984415411EF /* DDControlsKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B1620DBE640F42A0484DAC836441326B /* DDControlsKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B53DAE351695E193CE14AA47F739F49 /* RecursiveScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23A2B938F4BD4B9E2AEF9E234DB2D33C /* RecursiveScheduler.swift */; }; + 6B553F2B3704D9BD7FF7FCE04E403CC1 /* UIFont+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FD60DECEA703EE30485EDA50460B3E2 /* UIFont+ZLPhotoBrowser.swift */; }; + 6B66FA28308AAD03CF48491A2156DBDE /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DBC035755B1803221013993CD09AA72 /* SDImageHEICCoder.m */; }; + 6B8C01A7118166BB22E1CB290C7892CA /* ConstraintMakerPrioritizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16DED397735FC490E1E2796743323B2D /* ConstraintMakerPrioritizable.swift */; }; + 6BCEC0DE81E072E922CE82BF2C10D0D1 /* BRDatePickerView+BR.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D6C429E59862D8114B998F10E190F8F /* BRDatePickerView+BR.m */; }; + 6BD973EF2D9AEAAA897F19ABE6ADB442 /* ZFLandscapeWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 529098BF095FDF966BB0C87BD9C50986 /* ZFLandscapeWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C28E9419DF813E4F8D0AF3495936CB9 /* ConstraintLayoutGuideDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF97B43039A1F982A20CE0CC4F5AF496 /* ConstraintLayoutGuideDSL.swift */; }; + 6C3B575651FF6BCDC6907608E2F89583 /* ZFLandScapeControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = 06DF5453A700B20897B8134227B3DE0D /* ZFLandScapeControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C850BF5602E027A876A27784A160519 /* EKRatingSymbolsContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA5EBAE398E16FF5FCD459C111346D33 /* EKRatingSymbolsContainerView.swift */; }; + 6CBB8A0459051E23B564D2D128E4B219 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 189DB1C08EA125B2655BB4B8D723FC1A /* UIImage+GIF.m */; }; + 6CCDD8BBD40821514AC48F42628D4D7A /* JXCategoryTitleCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 33752FE261B0C078F848B58A07AA481B /* JXCategoryTitleCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CEA6FC42B1EBFB8EB263DDD2295BA1B /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = BD515F0CAB886D098AE122B690E42E07 /* SDAnimatedImageView+WebCache.m */; }; + 6D03CC06F12EF550B8B756CB4F7DB26B /* Debounce.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA4E09FE12FE17375DB070BB5609959F /* Debounce.swift */; }; + 6D04BB428ED55D57D68354552C043A49 /* JXCategoryViewDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = C6529C9411134215EF4AFE57EA35EE07 /* JXCategoryViewDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D1295F002B144E1731C38BEDF62855E /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 98DEA0F029FC14297B49A679EB4136F5 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D42059AC8748D951DF47484C42BAD3E /* ObservableConvertibleType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 124086291346572E126D220A49243645 /* ObservableConvertibleType.swift */; }; + 6D8A1EAC97E1ABC816801F06E11AEF2A /* EKFormMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6B0C031C1EE54B51D9A123D0FF03124 /* EKFormMessageView.swift */; }; + 6D9162F60E7975B61948B1E253941FB8 /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = BB35825F8353ECDF2C2601C5F963D471 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DBCD383C164E5ACF1DAD34C9E2FCE34 /* DDMATrackManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 76589309CDE359FD002B6DDBBA48F92A /* DDMATrackManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DF8E7C3E612645CB0F3523DAC8E1F33 /* DDBaseTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DD398B6FCA0459FC7C53C038027EF81 /* DDBaseTabBarController.m */; }; + 6E79B8E1DBB132B9953B5F37A743CB43 /* JXCategoryIndicatorComponentView.m in Sources */ = {isa = PBXBuildFile; fileRef = DE85F40402691E08F01780481F9605A4 /* JXCategoryIndicatorComponentView.m */; }; + 6EAFC1A2247B438FCC2FB57ACE840384 /* UIWindow+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 20755936004034DEBDEDE77720ADCE70 /* UIWindow+DDCategory.m */; }; + 6ED53F14FE28A988F44B3EDF4865365C /* Using.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55FB4BBBB52C50A53E47FF064D22FB6E /* Using.swift */; }; + 6EE3CE5E6C7683F30D2D59D0ADAC6FDA /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = C314B40C7A1C38F08D09515E5EF67E13 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F1069801D599DD2F8D1BCC610B1685C /* UITabBarController+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D0097DBB3542F32ECCF4A04A38DBC63 /* UITabBarController+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F1697BC66902A6089A108DFE1E31B00 /* DDTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = E35A634B22BAC8E75370F090651C0C47 /* DDTableViewCell.swift */; }; + 6F1A2D673D8F3EB993C8FA46E7416D8B /* CacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDC054B08B8EE649AA446C68E377138 /* CacheSerializer.swift */; }; + 6F1EC7D7C6057783745CD6C5C41EE5EF /* ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = D64D0833F82FDE2751B36C155118635D /* ZLPhotoBrowser.swift */; }; + 6F2010F8F1E7179F227BC35C550C4915 /* ConstraintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A055BE9D13701A22B26256670EADF51 /* ConstraintView.swift */; }; + 6F219D11D5269BC45B463722F17CC0D6 /* TailRecursiveSink.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0455936191935FDE41FAE9F6960B4404 /* TailRecursiveSink.swift */; }; + 6F46408B20EA653BE535660788D44444 /* ZFLandscapeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C0C25B49BD53F96C514E15B4669C4B9 /* ZFLandscapeViewController.m */; }; + 6F6324778DAEAC9A6B9C1E5EFEBBA492 /* Signal+Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 106934C177203CE79035726700083CB4 /* Signal+Subscription.swift */; }; + 6F79E710B8E8A20F0BA00F15F9D03E4C /* Completable+AndThen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B8597EBAE0BA2A238E46E49308F9191 /* Completable+AndThen.swift */; }; + 6FA29C0A343CD009CAD5FBB50810D9D4 /* DDBaseTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B763723156DA73EF644488D056097FB /* DDBaseTableViewCell.m */; }; + 6FCCBD397D9B887B427DD63D118DE589 /* DDMAMapKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AA3C07D84C8D2A116EF8BDDDAA93B6FE /* DDMAMapKit_Private-dummy.m */; }; + 701681C35B325B45CD0E46CF0D5471F1 /* ZFKVOController.h in Headers */ = {isa = PBXBuildFile; fileRef = 685AAE8626FFB044E491839EA1AE043F /* ZFKVOController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7035ACB419535A7B6C484D238A612BE4 /* Dematerialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C99216E5060E42043ED32D42481323E /* Dematerialize.swift */; }; + 708122038CA6D6697142EB3BD7A03014 /* DDBaseMutableAttributedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 52F45FFF8D38F14F6DDB947E2069BCE5 /* DDBaseMutableAttributedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 709711B731CC35DA65084FE1C1A2F73C /* X509Certificate.swift in Sources */ = {isa = PBXBuildFile; fileRef = A48039FF0278CE5400B58D59DD3DD6AD /* X509Certificate.swift */; }; + 70AC10609FB1A12D49AAF643F6DB6799 /* UISwitch+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCD740B82CE0D5EECF2564CCEDCB5CEA /* UISwitch+Rx.swift */; }; + 70AED23C9E4B7C54A57E04BB493B1632 /* DDColorKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B91E55916F03FB5A884E37F37DA426F /* DDColorKit_Private-dummy.m */; }; + 70CB725EC2D3E4977E8C55CE9EAC4D0A /* ZFPlayerGestureControl.h in Headers */ = {isa = PBXBuildFile; fileRef = C42AD4008CAF52D99B0A5EC0626FB27D /* ZFPlayerGestureControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70F02A673E4FB5B97499E3F6D615CF4B /* DisposeBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = E683AE11C689053760361CEC6EDD18CF /* DisposeBase.swift */; }; + 714B1CA2AD44049A52267BE368CD4C8E /* SwiftEntryKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF8D41B69396E37597B5BCAA8A9BF637 /* SwiftEntryKit-dummy.m */; }; + 717F7C2B82068EC8C678196C1163CFB2 /* ConstraintMaker.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3754C37E46E640F2371B2F9646878CA /* ConstraintMaker.swift */; }; + 71BACD458EFE7CF21260654449513C75 /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A767EA155F4FE2D8900920C612ED2DA /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71DB10940DB22B16A264B380FC269808 /* LayoutConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = E519F3D7EAFE11EC2B0C8CC8524A7949 /* LayoutConstraintItem.swift */; }; + 71E369AC039524E2F13AC548B3B043EA /* DDColorKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B27CC71B07E04E4A3DE495BD283CFDC8 /* DDColorKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 721A97ACFEC77E36D1023E41BB0AE1AC /* EKAttributes+BackgroundStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1FE83E885A66F2D4CFE3AB3BAA6CA98 /* EKAttributes+BackgroundStyle.swift */; }; + 7241BABB32B3F312D33F7683C82461C3 /* NSMutableAttributedString+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 07154D91CF0F369BF9976F9AFC21C82B /* NSMutableAttributedString+DDCategory.m */; }; + 727E42D377DEFB1F57200CBD121222F7 /* DelaySubscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2BED0B84C9F4F09488DA9F074487C21 /* DelaySubscription.swift */; }; + 72B0A8793C1F38AA19A0CD865BEE8BE7 /* EKAttributes+Validations.swift in Sources */ = {isa = PBXBuildFile; fileRef = B205A73F66530DAB4EBBB7E3E82982DE /* EKAttributes+Validations.swift */; }; + 72F356CD21125C06DA4581B8EFF5C612 /* RxMutableBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D781BACE05EBDA6DDEA3D37FDD11976 /* RxMutableBox.swift */; }; + 731BC8F0B05F16D9E44C9EA00B22F4C9 /* Session.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEB0151009BEFAB52EBD2964A7F66675 /* Session.swift */; }; + 73A9E4170A91F0F715E9E7C1F069FA45 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = EC5143172543E45623D048866016F143 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73E288FCEA27F5DEB683B074F96D0846 /* SharedSequence+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 647065FD7DD8B6206A2F633440F1D513 /* SharedSequence+Concurrency.swift */; }; + 73FFFD550E5D834616601E46F7468513 /* RxSearchBarDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0B6C77B4BA6348B8AF0C7C8B2FC8DC6 /* RxSearchBarDelegateProxy.swift */; }; + 7409FFC5269708E4F4606C21C9DF1B97 /* DDNetworkingOfAlamofireKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EB2475FA10D60EF9C01C950A862E50E6 /* DDNetworkingOfAlamofireKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 745D1703E1D29FD12340402A7F6B71D5 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = D91C2D9AA7C3D028D3B93A66682B4DA9 /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7539BFBC46E1BB8AE022CB250A405582 /* HTTPHeaders.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33D7B7C9CF4C295AA54334F0046EE901 /* HTTPHeaders.swift */; }; + 757DAD9E812317B7B8FECFBD78953286 /* DDOCLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 5927B9EC34CF6DA5023F1C46B6B43CD0 /* DDOCLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75BF05F0CC4E919BAD4828533BE7F65B /* CombineLatest+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = F260A6317D4BC56066E8259CA9DE2026 /* CombineLatest+Collection.swift */; }; + 75C045B811885FBDF3FCB78F77326FDF /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = F6AA9C5D53F1567D9AE1F9181A613231 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7615AD04C15B5C1E8A259A80825D68FC /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F5F02C9DB38EB4B37BC0F8D03E8544F /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 767B34150A7EC0ECEAB57A811942BCE7 /* Multicast.swift in Sources */ = {isa = PBXBuildFile; fileRef = D046A9A05FB9780661487BAC2E06C7EC /* Multicast.swift */; }; + 76A190B0F869A4BA61AFA27C1EB92F4B /* ZFOrientationObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B0BC6C34D5DACF09568881AC14F98DB /* ZFOrientationObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76BCD01DEA5DFB76E7975B68591D4235 /* _RX.h in Headers */ = {isa = PBXBuildFile; fileRef = 38B3C4A9564C4C0152FC378BECB78BBD /* _RX.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76FFD8BBEBFDA70717385A5C74DFDEA1 /* DDUtilsSwiftKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BFB0B638678F6BFCA7FA5729464D317E /* DDUtilsSwiftKit_Private-dummy.m */; }; + 774CFF5DF8BB0D8AF40C421AC4E7427C /* SwiftyRSA.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B603928CFDD379AC71B438DDD80A16 /* SwiftyRSA.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 780B82DCFDBD9C2D7E5C92DF80FF1630 /* JXCategoryFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = B78F93A260C4C4D84185389BDED0CB5C /* JXCategoryFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 783D920333B6B4B083625B41ED6B6735 /* Buffer.swift in Sources */ = {isa = PBXBuildFile; fileRef = FBFC963F935FDE16ACF08B32F7C05419 /* Buffer.swift */; }; + 7867E2730114828625D52A47C43CCD2B /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C3F1C0CEB0DB2B062B28FB2207CB90A1 /* SDImageCache.m */; }; + 7883AAD62884AE78827E1C74222CD896 /* UISwitch+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 305627E9AB98A769E88C7AFABE7746CF /* UISwitch+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78F19D9EAA15F4779D096963F790CF62 /* JXCategoryTitleCell.h in Headers */ = {isa = PBXBuildFile; fileRef = A539BA6B3B78E4DAC06E1E5107D57351 /* JXCategoryTitleCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78F42347772C57AEB0CE35F118F14AD5 /* JXCategoryIndicatorTriangleView.m in Sources */ = {isa = PBXBuildFile; fileRef = DEA89CCAE3A256282C9F94981D3768C7 /* JXCategoryIndicatorTriangleView.m */; }; + 791629CECDE0D6A5445563A3E0025ACF /* ZFPlayerMediaPlayback.h in Headers */ = {isa = PBXBuildFile; fileRef = 346C2ED81B703129EE19E024234EFFD8 /* ZFPlayerMediaPlayback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 792446A77D8069F8624AAC79E8409FCB /* AsyncLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE8430A3BCB9BEDD0313B6C7722F54AA /* AsyncLock.swift */; }; + 7927E6770872983115C36150EAD11B8D /* MATraceReplayOverlayRender.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BF69CAA1539ABD030E097DAB8F9A0C9 /* MATraceReplayOverlayRender.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79353E2CE471FF7BFA255368F3A3323E /* SkipUntil.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB665F5DCCD07FF7CC73658A9DFFBCD1 /* SkipUntil.swift */; }; + 793F19320DBE5EBACB9D67FA411F720A /* ObservableConvertibleType+SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 363F011DC1FF87C3247411AFB1659531 /* ObservableConvertibleType+SharedSequence.swift */; }; + 794C8686B1DFD5AA5216F9165ABD8EE3 /* JXCategoryListContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = A08401120D6B9CF22F102CB12AA300C0 /* JXCategoryListContainerView.m */; }; + 794DD48330D078E760BEB61471C7BD44 /* ImageContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85B9198B32A14C16CAD74E5A03D08110 /* ImageContext.swift */; }; + 79C420380639474B11D13E1FF1E80D0C /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20F3500FF1E044EA580817468A430F1B /* PriorityQueue.swift */; }; + 79D547FB7599B9D84A5F5697924BC58B /* JXCategoryTitleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 01416891F274081B2D37C2AA6BFD09C3 /* JXCategoryTitleView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79F7344C573425769AF35D858AD4A67E /* UICollectionViewLayout+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 02A7667604B8B8A9FEB30F134B8AEF89 /* UICollectionViewLayout+MJRefresh.m */; }; + 7A852F0AF1F3E1693579BFB0EE3DFEAA /* IQUIView+IQKeyboardToolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 027E9F99FC3E914592E499094AFBE708 /* IQUIView+IQKeyboardToolbar.swift */; }; + 7AB8E1F03D7085D0F1CF9CA55F17E9FB /* DDNavigationControllerDelegateReceiver.m in Sources */ = {isa = PBXBuildFile; fileRef = 77AB66EBFFB2BBC4ADD123C3E59838A1 /* DDNavigationControllerDelegateReceiver.m */; }; + 7ABFC8DDB94ABE4C0687BC981E98A2BE /* ZLPhotoPreviewSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C0B2654E471DCE015DD262A8C792E77 /* ZLPhotoPreviewSheet.swift */; }; + 7AC2AEEC49B5EAF037AB1FB8806A2C86 /* UIApplication+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 087942B39BA653DEDEA65CCA0A22F61A /* UIApplication+DDCategory.m */; }; + 7B0B8A575C497874E971408584743E02 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 273B2F6C4A42A708F9FCB7CE4D6A29B3 /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B45550C7795D7B29E6E558F00864D1E /* UIImage+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = E38A562FCE12AA031A1E952092F9D1BE /* UIImage+ZLPhotoBrowser.swift */; }; + 7C4346BBA2B8B8F70FF7A185B63EB9DB /* Concat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0199FF7AFDA3A15238DDCC6F4C75CF9E /* Concat.swift */; }; + 7C4555B4F80F91CE5F03F39C2D64D86D /* IQKeyboardManager+Debug.swift in Sources */ = {isa = PBXBuildFile; fileRef = 472562C8601F869521F331AF37C73900 /* IQKeyboardManager+Debug.swift */; }; + 7CC298CB85BBB9C814F22B8AAEF94281 /* IQPreviousNextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCE5F3359795423CB6F03A90926A420D /* IQPreviousNextView.swift */; }; + 7CDD4BF0209AA2F717C7546D5B6BF979 /* ZFPersentInteractiveTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 44251D79E3CF70706B8F34DB409652E3 /* ZFPersentInteractiveTransition.m */; }; + 7D23A05408E0E17BB56E5909C983386D /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2FA7600FD210D1D7792C7FE040B8F72 /* Notifications.swift */; }; + 7D5AC16F195967267DAD36F198E0A5F0 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AE4B09D86F4BCF782B0FB4761A2A097 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D936B67BEBF724223E19CCE0E17BFF2 /* DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = F819611A9738F394B8B061A5CB6FF438 /* DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DE42C387F42A8750F35683020699F83 /* UICollectionViewCell+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E2F004D13B5E083B12131387642B38A /* UICollectionViewCell+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DF26FE5A9AF886EEA362BD9C81678E7 /* SwiftyRSAError.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEEA491E725F633B09A7FB4EBC582CA8 /* SwiftyRSAError.swift */; }; + 7E32D9B167099CE8AD829C38B357DE40 /* PrimitiveSequence+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFCD53A3C84813D3B134DF865878EC9E /* PrimitiveSequence+Zip+arity.swift */; }; + 7E747A6BADFA9D3673259C768DB2F13D /* Infallible+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1D08A8BA7B30876E4E67632D41FA753 /* Infallible+Create.swift */; }; + 7E77F7A02B348F2B136DC0548A0AADB1 /* RxPickerViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE6BA1F6EEFAA0B4CE781C96EFC1C2A5 /* RxPickerViewDataSourceProxy.swift */; }; + 7E89E3B38E4ACBC2954D330AB4FF0293 /* ZLClipImageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D234F382762E9E04BFD8CD5B7800AACB /* ZLClipImageViewController.swift */; }; + 7E9CB89FA3B14991D8C31254F7594BAF /* JXCategoryIndicatorComponentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 277FF58F134845011CF6F9EDF6779546 /* JXCategoryIndicatorComponentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EA7149F92436C4ABEA394CD2F270F6A /* ConcurrentMainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4F4B7872AC1A1ADC3F4D426CAE827B1 /* ConcurrentMainScheduler.swift */; }; + 7EBA339DC884CA152138B594D55BDFB9 /* UIButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C739B3A8EED462322A08F10D243BAE6 /* UIButton+Kingfisher.swift */; }; + 7F00CC21C4CEBAC2157BF0A964284D7A /* KingfisherOptionsInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D2C743851A09B2A6B3724C89D6EFD0F /* KingfisherOptionsInfo.swift */; }; + 7F646201C11F75FEB2701844D49DF702 /* JXCategoryCollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = D90F21EEE1973C55BEDCF3B1F0635C53 /* JXCategoryCollectionView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F788186B54DE2B3C290A67BA8F5FB7D /* UITableViewCell+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = FFB9C7EE34B4C65027FF911301143D82 /* UITableViewCell+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F9C36B013D01F2188457E0D3A7AEF07 /* ZFLandscapeViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = A8D570BCD1CECC9A0823EA4C9E1D6B30 /* ZFLandscapeViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FD541C37F57A49DA86354FB0AC6CB72 /* HTTPMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECA03F3180D61A6BD34ABCA471E0E9E4 /* HTTPMethod.swift */; }; + 80474D488D0DE9EEB589E4B5F9EE1256 /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DE9018BD5105B76C813A2AFD2640AF7 /* DispatchQueue+Extensions.swift */; }; + 80707A9E832C8EEAC361896B59A1DE19 /* IQUIViewController+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = D50725068B2B8D4A638C632229E93A05 /* IQUIViewController+Additions.swift */; }; + 809174478F55FCD93B0706148F6D9B72 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FFD1D36EFD317E6742A34B511D00A64 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80A081B2EEB193DD2B447C29A6921817 /* SnapKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 684CDF94DC7DDEE1D5D861459C94717C /* SnapKit-dummy.m */; }; + 80BC7581EDC7EF248D8E56A3AB986B53 /* RxTabBarDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72E802F37C854A4FF90F1A66060A25DE /* RxTabBarDelegateProxy.swift */; }; + 813567124B996AD29CCAF98621B4D917 /* DDUtilsSwiftKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E25E5922102E676BF98BCB18FC0D741B /* DDUtilsSwiftKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81452427ADF1E98E642A1233E6B650B0 /* UIScrollView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 274E947A2A873E3FD5362C0F2FD472C0 /* UIScrollView+Rx.swift */; }; + 81495AC63688C3355033D5BA9CCFC035 /* BRAddressModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 993F005147DF1700EF33D4939308A4E0 /* BRAddressModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 814AA2BB51B51E467391D717BF24FAE5 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BEB9FF0C6D5FB00AB9A5220587A1880 /* SDWebImageDownloaderRequestModifier.m */; }; + 816C47D4F5B29FE9219FFC63E49A202B /* Kingfisher-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 406F7E3229F593F84AD83A7E85A7761B /* Kingfisher-dummy.m */; }; + 81A3D9DB1BECA7DD9A94142824783DD8 /* ZLFetchImageOperation.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF887A0534F724EB92045A93644F7A73 /* ZLFetchImageOperation.swift */; }; + 81F3304EB73E7749BCE7BA366924C7D6 /* UINavigationController+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 78AA2EE182FFF0E6070E53AB44E25754 /* UINavigationController+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81F8C8EB633C6FCD3E89E8A27813A825 /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = C05571DE1282BD2F8C442DBB7DD55963 /* ConstraintRelation.swift */; }; + 82300175606EA43BE4BF57888C4A77E8 /* BRDatePickerView+BR.h in Headers */ = {isa = PBXBuildFile; fileRef = AD5400297361F68F8ABF2376D58B0890 /* BRDatePickerView+BR.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82F6C49CD5442529B117D4B77ECD8518 /* EKStyleView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA50CE27FFED03713C09CBB312C7134E /* EKStyleView.swift */; }; + 835173C7877CC2512FC25FC6EBBA0350 /* RxCollectionViewDataSourcePrefetchingProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A4F4C4A9DE17BCCC7B4B7C711D146E1 /* RxCollectionViewDataSourcePrefetchingProxy.swift */; }; + 83888A11B0701E2D4EE236DFA1E56800 /* Result+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C1F47EC9BB1BB5960178F72DFDF3EC2 /* Result+Alamofire.swift */; }; + 83938D5CBB19BD3E148DA8E030218776 /* MATraceReplayOverlay.m in Sources */ = {isa = PBXBuildFile; fileRef = 100D6BB138CBC111FBCE28C3F415AD85 /* MATraceReplayOverlay.m */; }; + 83FB80448888FC123E9A45527EEC1C92 /* MABaseOverlay+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F820A7A12E660E164671D6BCCBA7CC8 /* MABaseOverlay+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 841447C2E526E658EC8102873B77A9C9 /* DDTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDBEDC79DF9A98BBC255B9B5BDC6BE1B /* DDTableView.swift */; }; + 8482273A5EDD767C705E9B8BD2AE26C5 /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 135D36C375B935327E65B243CE6E1AEC /* LayoutConstraint.swift */; }; + 84CBB8B38762FD16B0BF7B4BA778228E /* EntryCachingHeuristic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56BD7AE02538E9E4B1C6E71F2D3A1635 /* EntryCachingHeuristic.swift */; }; + 84DC0626D65FE608EACE77EE19BCF92F /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E8A6022C8CF2F4E01ABDC35B4A847E9 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85009E6683793653854800667D2B1785 /* AnyObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2AAFEF40372B8476A5373AE50FB4DED8 /* AnyObserver.swift */; }; + 855086250E9FC191DBAB2C9A271494E3 /* Take.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D79204022D7BD5A86AD846C6A9A3B67 /* Take.swift */; }; + 8620470517C811FD4767A6DD0371D0D5 /* IQKeyboardManagerSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CEA02D2597987A57E68109914486C35 /* IQKeyboardManagerSwift-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 866739281FCB4D9C164C4A61322FE806 /* Maybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1AB94E7718648455CBB26CB8B4D9E528 /* Maybe.swift */; }; + 86997C2E83106153831376DF4CB88084 /* ZLWeakProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9269A7E274CDE89A331D16C9372E34D9 /* ZLWeakProxy.swift */; }; + 86EFDCFB015C812E2695EA28F9F3B88F /* JXCategoryImageCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = BD08CA20CB5FA13ACA16424C2F36B7B9 /* JXCategoryImageCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86FD36F607B71D5C4B50DBFC30FA5C23 /* Producer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C6624DED0B4B32DD8620EF629949DFE /* Producer.swift */; }; + 87161646F503BF7D6C9E258EB462B823 /* UIView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F4AAB2F90DD1E2F4B29A34CE29B042F /* UIView+DDCategory.m */; }; + 876F0A0ED17438D064D6255B031ED91B /* UIViewController+ZFPlayerRotation.m in Sources */ = {isa = PBXBuildFile; fileRef = CD676FDE4E4D758581197A7BB38EC06E /* UIViewController+ZFPlayerRotation.m */; }; + 8772F32DE15FC5E2426A36349DE9E7C8 /* JXCategoryTitleVerticalZoomCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = B7358F3BC873542366011A08ECF48E85 /* JXCategoryTitleVerticalZoomCellModel.m */; }; + 878B6B1A4C24B3D46773E79E0294CC89 /* PublishRelay+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51384E5611E36C571C0066EA9BD9137F /* PublishRelay+Signal.swift */; }; + 87B6A24DA5DF849DAB52EA90AD726431 /* CurrentThreadScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2161B7F55B0DE5BE6EFF11A465F486D1 /* CurrentThreadScheduler.swift */; }; + 87D72228C0AE800DB239910BC8A94B0D /* SerialDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C59C90FEC69AED1404197E1EC6BCF8C /* SerialDisposable.swift */; }; + 87E6E2F2D8E4936810DBAFF637E6FD3D /* Materialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB4FADDE9C9081AA415889358C397FD3 /* Materialize.swift */; }; + 87E790F289BC43498505B6D68AD37C12 /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = 170E2432ECA7E947647DFD3DA349D579 /* UIColor+SDHexString.m */; }; + 87E876627F3BB158FD39966792B76B65 /* ZLVideoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = D98D93B3F0A5345AC7640F9F5D106304 /* ZLVideoManager.swift */; }; + 88248746579354180F9A84AFC5445FE4 /* ImmediateSchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = D40BB621ACD2745962A92CF9F9DE8C4E /* ImmediateSchedulerType.swift */; }; + 887595F20B78C5473EA5B93D699737A6 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = 89922CA1364279A9646DACAA3A0E8A80 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88E67755F51F1CA22343EAA1CFBD41E7 /* DDProgressHUD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1844FDB8C983AAB88D20C4DB9D2636B6 /* DDProgressHUD.swift */; }; + 88E8C4E6532C1885DE243488021CF2D2 /* AuthenticationInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9330F01C623DE38FFCB15ED382FE3CB /* AuthenticationInterceptor.swift */; }; + 891EDBB92ECA26F04D7390CA8E906A32 /* UITextView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B73C4F5B228339805AA81EBE2AC0D73 /* UITextView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A3E8C9849B1E73D113589B8F007E566 /* JXCategoryTitleCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = AF470B49F52DD3204C90082CED57987B /* JXCategoryTitleCellModel.m */; }; + 8A5D7CFB78278C7861D3061D212B189D /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0676D11EA6C44D22CBBC194815F5219D /* SDWebImageCacheKeyFilter.m */; }; + 8A6158438F3B894DE7F91DE5FE93C795 /* Message.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14393B03067AF37F0C86DF51FBEFA40E /* Message.swift */; }; + 8A64ED4C758DC20F9F638F956789182F /* UIView+QuickLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6283B713B7BC1CC1ED7247C918B65B3B /* UIView+QuickLayout.swift */; }; + 8A93BFC4ECE061648BEDA3A17DF34B7D /* JXCategoryImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 198924C29838CDB965722E2D7481E605 /* JXCategoryImageCell.m */; }; + 8B0CFF8D26F4A367D95A9DCEA12EEA65 /* Runtime.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14512F9D2A20420A6E5096EB01EF2155 /* Runtime.swift */; }; + 8B1A402F74B6E4E6F42C395DDE64169C /* KVORepresentable+CoreGraphics.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4107E70F84423A8E0BDB9EC90133CBD7 /* KVORepresentable+CoreGraphics.swift */; }; + 8B3145567FD389F30FCBB34C08F60CB0 /* Platform.Linux.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BB9413189F199CCC7631A86CAB55B7B /* Platform.Linux.swift */; }; + 8B5C7472AB1189940F2C7A38AB4E5D57 /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 85684DC09A1ABE3769AC1969830D5214 /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B753F9A4427257D3732F4AE2E2EDCCD /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 44322A20D771C3F7CB740629F767410D /* SDWebImageDownloaderResponseModifier.m */; }; + 8BD7243E27CAB2AE337CFA2AAC384640 /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 16AADA904B2D52C7DC15CC5DF9F2E04D /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BF878796834ECEA997A949F8D4E1EAE /* DDBaseTabBarController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8013288FC0E5537A40B5E188A3930002 /* DDBaseTabBarController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C1123CFF840715FE9BD669C43D75E7D /* JXCategoryTitleVerticalZoomCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 0161B0C88CEDF24D81D909CA07FD8B59 /* JXCategoryTitleVerticalZoomCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C5AE031DA4F7E6C727B298D2CE5AAAC /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4272B0BD4A2BE9F19990E0C6EFE3E0D7 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C86163FB573BF8082BFA48147D80A64 /* DDUIGestureRecognizer-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 83880583FCE2648A59907391AE06CCE0 /* DDUIGestureRecognizer-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CFB68D77E49914A0DD60B939BA767C0 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C2E8959AB3413D81CEC970D12580AAF /* SDWebImageDownloaderDecryptor.m */; }; + 8D2C2E93E44DC32A322DC0F747FE8D7C /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 91156020EF5382483A437EB042DCDF32 /* MJRefreshAutoFooter.m */; }; + 8D42E6E44020386BF96406F0D3540D19 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 781C9D59C456C7219ADD79A80E021103 /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D4F017EFFAAB42AFE5BEF5486263A27 /* UIImage+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 95BC051C3B8A110581BAB84448C26CF2 /* UIImage+DDCategory.m */; }; + 8D67E1E9F0E2F132D6A0D8EFB3C36974 /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D80DB2D7D6078201B7CAE9618F76E6E /* SDImageAssetManager.m */; }; + 8D7B5F3D2457D1F8E54BF758F6F0388F /* DDLogKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BBF420C7141239FA67A0CE2B8AD80A3A /* DDLogKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E14E44508EA01AA0C2F3E7699D0FCD3 /* SubscribeOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = 100E9B3E567B3F8FF45DF000D5AFF696 /* SubscribeOn.swift */; }; + 8E70E01111277D53396B3D151C3F321F /* Infallible+CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15C920D1845B970208F10EBFB92ED7CA /* Infallible+CombineLatest+arity.swift */; }; + 8EA71FCE62BCE72E1798AC86592F4747 /* JXCategoryDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D98CB88D6B58CF42397FB2EB934B487 /* JXCategoryDotView.m */; }; + 8ED0EA8B64CA7C4860DC6D8B565F4448 /* RxCocoa.swift in Sources */ = {isa = PBXBuildFile; fileRef = 337AC09FE0D05A9DA699E817FC6F5F51 /* RxCocoa.swift */; }; + 8ED4D4F8A906D49E93D5479E4375A3F2 /* Reactive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9353CBDAAC363717113BFB5518B02DCF /* Reactive.swift */; }; + 8EF8D0C1BE201C03A65D66C92BAD9206 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8102F50289748651CB2EAFBAF3BA5C39 /* SDWebImageDownloaderOperation.m */; }; + 8F6C6C87251B8DC0F7115D0F6F0CE66E /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2D27982E1B5C44AEE9B99893A3AAEF6 /* ConstraintDescription.swift */; }; 8F7C09C252C91A4C49C70B874D9AD4EF /* Pods-OrderSchedulingNotificationService-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 861E3EABF816A1CA179B292C434C7624 /* Pods-OrderSchedulingNotificationService-dummy.m */; }; - 8F94DE7C574F2E68FB7F4182FF4AA19A /* JXCategoryTitleImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B22C2AE111B6BAD52B1C1CCF832049C /* JXCategoryTitleImageCellModel.m */; }; - 90069087CDA6A93E23EED727B4A1084A /* Typealiases.swift in Sources */ = {isa = PBXBuildFile; fileRef = 164362782043234383B02483B232185E /* Typealiases.swift */; }; - 901325CBB6F28FC1B74C624BFBB9F93D /* SchedulerServices+Emulation.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFBD3DE3DBE50C35DC8C125936E8C594 /* SchedulerServices+Emulation.swift */; }; - 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, ); }; }; - 909B008FAA370989E2B72FC086CB80CB /* RetryWhen.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8D9026E6AD733D4F82F478DF11DF6FD /* RetryWhen.swift */; }; - 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, ); }; }; - 91869DD3B7F7EE5EBB2D5908A5695AC1 /* ConstraintLayoutGuide+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6AD4B383AA40248F0A4DCFB58420DD4 /* ConstraintLayoutGuide+Extensions.swift */; }; - 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 */; }; - 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, ); }; }; - 92E1CC691570870D10C937401658C251 /* LayoutConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 551315C765C362FE3E5FE52E04073406 /* LayoutConstraintItem.swift */; }; - 92EDFA4F4C858B454161D4634B3B9F2B /* Bag+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 688847A899CA9D29452FB72F219FB4A5 /* Bag+Rx.swift */; }; - 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, ); }; }; - 93C25343A940D20BD21AE6C1EF582189 /* ZLThumbnailPhotoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DE7EBCD7288EAF466A187DCD0C6ACD3 /* ZLThumbnailPhotoCell.swift */; }; - 93DF6D6B5E32104AFE985F15355F629A /* MJRefreshNormalTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = BE5F512A605C45E66D7CAB4121CEC4ED /* MJRefreshNormalTrailer.m */; }; - 9413C7DB4B03B9C9178A64659F476AD0 /* IQKeyboardManagerSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 512F7F1CEC0C4E9F9BE5BEBD8B35AE94 /* IQKeyboardManagerSwift-dummy.m */; }; - 947C7F7FF46FA942751276C598174CFC /* ConcurrentDispatchQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE1B17E31649C1CE911EB3C8EE16F83E /* ConcurrentDispatchQueueScheduler.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 */; }; - 94A21473C70C3AC33AC1626B06014B9A /* Optional.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D8B384A69484CA60996D0C597D70630 /* Optional.swift */; }; - 94B52F9D43DC46D45062BB39E53E9DE1 /* EKBackgroundView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB4721B00F3D917AE91CED8A02279E2 /* EKBackgroundView.swift */; }; - 94DE529939F7E6CFD088184A63BFF5E5 /* DDBaseViewController.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6C6B6319757C56C6491867CB296B6C76 /* DDBaseViewController.xcassets */; }; - 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, ); }; }; - 96199F1BEE04A029B3278BB1BED5F276 /* IQNSArray+Sort.swift in Sources */ = {isa = PBXBuildFile; fileRef = 091DBEDBDEDF1ED2890ACDE092228429 /* IQNSArray+Sort.swift */; }; - 962AB86D9403D69DE60BEA87DDE504CB /* Storage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63BE86A3E05D0A822812D3A6547E027A /* Storage.swift */; }; - 96351482FE93C85C20C75E992ACC4D3C /* RxCocoaObjCRuntimeError+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D5F1E5E3E2084D1B61C8124D66FF6AB /* RxCocoaObjCRuntimeError+Extensions.swift */; }; - 967FBE349AD0E4C53B6EEB6575FC051A /* Delay.swift in Sources */ = {isa = PBXBuildFile; fileRef = F36B19F3BB62251835321071E1D44A0A /* Delay.swift */; }; - 968275C7F081A3E15A8475CA7DC7BC6C /* ImmediateSchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37823DB9A4881236466DB30127339D61 /* ImmediateSchedulerType.swift */; }; - 968D57E322826A7265C64F108CB6814B /* WKInterfaceImage+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3651E0BF8409EC9EBB8C8115BF0C1727 /* WKInterfaceImage+Kingfisher.swift */; }; - 97352932EA7908FEA0DB6210F4692034 /* MKAnnotationView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = BD8C0BEA44A3F19AB254339CA52001DC /* MKAnnotationView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9748E831A4C4539A6D589B236F832A04 /* ConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AB9909E45891C02CBD6A4A15CAFFED2 /* ConstraintItem.swift */; }; - 976AAAA309D530E98B3A32DB0372A57B /* SnapKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 57155DB9CE595E8AACB409106F4EC230 /* SnapKit-umbrella.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 */; }; - 98098C8A3F199F3E87B4DF8DAA4B9EFE /* Amb.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A7B59AAC6E01A3567809323235B2261 /* Amb.swift */; }; - 9817388F04E487B7ECB5C08DDE606F86 /* MJRefreshConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = B0FBDCF01215D7EABC956A4621ADABB3 /* MJRefreshConfig.m */; }; - 981F1BFE14D989096611F7DB1D782B97 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D570C112416E8D8300D3C014ECF3429 /* SDDeviceHelper.m */; }; - 986EB69691079B11749E7C9B59BC7114 /* ImageBinder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2821BA426AC4839F9D0D22A12836DFFB /* ImageBinder.swift */; }; - 98A114F283EB9A4BA3D55C519B6C77AD /* ImageDrawing.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29FDB4081ED8501C10FD8223CC672335 /* ImageDrawing.swift */; }; - 98D29CF8E516F6FCDEC453AF63CE01DE /* RecursiveLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04ADAC8C01EA757A396D3761DCD700BD /* RecursiveLock.swift */; }; - 98FD8009CA41D7F8615734AD58B1BC55 /* Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 176CA123F6C4804576C556235D98057E /* Kingfisher.swift */; }; - 9912583A0C3DCE5F8AC15A3FC34E6FE2 /* ControlProperty+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = B545480560F1C724C5E6029068B80140 /* ControlProperty+Driver.swift */; }; - 992049D3EE75635F0D75846549850284 /* ImageTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = E387B9595875534C9E33B3C0DF8D95C0 /* ImageTransition.swift */; }; - 9932CDBFBC922273D6C9AF8B4BA194C4 /* UIBarButtonItem+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 7118AE0E0A3BCFA850CB5C2126039708 /* UIBarButtonItem+DDCategory.m */; }; - 999790F009DC67E8D5CF080C4C9C0B65 /* DistinctUntilChanged.swift in Sources */ = {isa = PBXBuildFile; fileRef = 373509CBF26220BD6D3A6892AFA34762 /* DistinctUntilChanged.swift */; }; - 999B33DC38983D04AD690B4599F3C316 /* ZLTextStickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7943AF051F1347D4280447B8B5EE8BEA /* ZLTextStickerView.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 */; }; - 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, ); }; }; - 9B4069DA5EA636E23E81F1313DE11D74 /* KF.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B58963D08961F381D42EB0456E355AE /* KF.swift */; }; - 9BE899982FAEB47E89D2EE2FD9684CCA /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 051BA53CB2192FF6D24C7F99747C8FDB /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C31D5A61DB6D88845781094EA815257 /* ObservableConvertibleType.swift in Sources */ = {isa = PBXBuildFile; fileRef = A438275CD02B434CCA172C62742F143A /* ObservableConvertibleType.swift */; }; - 9CD009CCE47386B34B9B24078174F588 /* NSBundle+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 65FD06ADE19FC189779D2A632024BC2A /* NSBundle+DDCategory.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 */; }; - 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, ); }; }; - 9DDEA3182B9F7D8CC39F35FC3C054AAF /* KFImageRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 271CC52B3DB7767A2547236203540694 /* KFImageRenderer.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 */; }; - 9E5DE60858D56AC1F26F66743A7B21D8 /* ConstraintMakerFinalizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB14354CA0CB3F670EF99A2295D90BC3 /* ConstraintMakerFinalizable.swift */; }; - 9EA55F404A7BE4684E3299402A5B88AE /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = D41F03449EFFAD7334A04DA3C9EAFB70 /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EE55E6E57DFF49D9CEB2493AD5B93A9 /* SharedSequence+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68443807C91B3F869EDE10F7C28F5A48 /* SharedSequence+Operators.swift */; }; - 9F26F0EB6575EEC06D48252EC38DDC46 /* EKXStatusBarMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 872D28CD57BE525D147ED3B3DE76EA4B /* EKXStatusBarMessageView.swift */; }; - 9F47D1C9DD2F26198A7243A42ACECCF0 /* UITableViewCell+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = B3A3678CD7310132EA271C69596E9969 /* UITableViewCell+DDCategory.m */; }; - 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 */; }; - 9FC7ED3A574626EAB89E3CBA40350E0C /* ConstraintDirectionalInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45A7ADF680DF48084013C21660919A71 /* ConstraintDirectionalInsets.swift */; }; - A011FE7F352E2DC4F52A72ACC985E865 /* ParameterEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BD8457D4685C7868DBF890E8B00BB76 /* ParameterEncoder.swift */; }; - A050509EC2602DB8BED3F7FE050509AB /* Debounce.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B420DC9E7E878F705D9118F5CE92256 /* Debounce.swift */; }; - 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, ); }; }; - A07259D50DF08034F108E32D8794BBB7 /* UITextField+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = DD3B7CDE1ED4737841DC86337C34CB1A /* UITextField+DDCategory.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, ); }; }; - A101325DEF7860D56A8FF2C659B3FB04 /* Kingfisher-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AC435BCDB1D6D0921B24985828F65ABB /* Kingfisher-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1059E3A9E938EE8F540D5639AB4B4E5 /* EKPopUpMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E3CEAA25B59FE6453C4320D43FB8D67 /* EKPopUpMessageView.swift */; }; - A13B4CC2584A03BF7414FE90F04C487D /* EKNotificationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E3D08B57DCDB9B37946A48DF6482C85 /* EKNotificationMessage.swift */; }; - A152C11A8AF761E13842334978E5D205 /* UITextField+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 304994798CCDFA55DBD2260E3A7C0B30 /* UITextField+DDCategory.m */; }; - A17B88101B55AE2259598D30E3CDA92E /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B578F82B80DEB9A94BF0A4CB575273C /* SDAssociatedObject.m */; }; - 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 */; }; - A2E808AAC56115B857623E66B779B564 /* SingleAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = D26F5BBECDC3294562AD41764B614AB6 /* SingleAsync.swift */; }; - A328DD14BD9500BC78D1C7120DBC30E4 /* IQKeyboardManagerConstantsInternal.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8A98015C90C034E9C04D6E0F1ABD1FC /* IQKeyboardManagerConstantsInternal.swift */; }; - A358C72687DDFF484CAB4B0124CE34A8 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = A62C7AED05AFA7022D1DD6F203907AFC /* SDWebImageCompat.m */; }; - A375B030497EC2C7E52E3A83D6F797DD /* ConstraintPriority.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3423FA0A90F7A80595AC06FDB905ACA /* ConstraintPriority.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, ); }; }; - 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, ); }; }; - A4ED8FE52D6474620046D4A7A6F1B785 /* SessionDataTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7851F5F987DC2A5FBCBB3196F3E607A2 /* SessionDataTask.swift */; }; - A54493E4474FBD0A8F08DFD70D849A82 /* ImageDownloaderDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB192712A70143FF7483B04CD367F714 /* ImageDownloaderDelegate.swift */; }; - A576C4698BA14346E54EB6463022EAD9 /* JXCategoryIndicatorCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 15C521A39AE11898E33A5894C1A91596 /* JXCategoryIndicatorCellModel.m */; }; - A5C172D967EB006F5BE3ACCAEBFCBB9B /* BehaviorRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 314B021694CE8545DE6A4314F037B601 /* BehaviorRelay.swift */; }; - A5CBC9C918D94A22E0AF4BC60F832D56 /* UIViewController+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = CA6DFF43188781594F72C45869D3D810 /* UIViewController+DDCategory.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 */; }; - A60337C2CD0592E0D320A5F26140D089 /* Sample.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5BABAD0DB889E399D6337FF47931FC4 /* Sample.swift */; }; - A608BF8A042013F0E8E790941B4D8866 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AB63A8D2DFFD91C683D442599E5AFD7 /* SDMemoryCache.m */; }; - A65C92A0E34BB1F06B9D952EAC6943EF /* KFOptionsSetter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50BFD4E41EC70A76600A4D2BD756249C /* KFOptionsSetter.swift */; }; - A679A4A9DBE57A9B857CCD12E7699289 /* ConnectableObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B70E30F33A95BAF13F8A49DB969F860 /* ConnectableObservableType.swift */; }; - A69C94A0DD35B9524F7481113B574E33 /* SDWebImageMapKit.h in Headers */ = {isa = PBXBuildFile; fileRef = DDA69305344998ECA41F4A63617370D5 /* SDWebImageMapKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6ABAE33B9D22F02100966BE903210E0 /* ConstraintOffsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD9D667C94A007216D3FF3F2869CD15B /* ConstraintOffsetTarget.swift */; }; - A6D371F7B8F0AE9A55EE402E33583504 /* EKButtonView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C0FEB40C6D7AE8B70353F2A8C8219AB /* EKButtonView.swift */; }; - A6D743CD31F8BE6B743622F1EE837BE1 /* DDBaseLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 61443FC3DFF69856B4148D8A6E81EB44 /* DDBaseLabel.m */; }; - A7A0B1081163E647C7529D121D8031C7 /* car_xingshi@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = CD0A4601DCEDE01FE45C61E92804430D /* car_xingshi@3x.png */; }; - A7D732BCD6095E20082A24707C117912 /* HistoricalScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 290E927FC45FEC741770263CB43552BC /* HistoricalScheduler.swift */; }; - A8286173F12D8749B3B5CF0CF0CF527A /* AsyncLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFF73BF54B3E9B8EBA2ECD20D3D7CF55 /* AsyncLock.swift */; }; - A859C89F424EDCA9AFE07133A3CF3FC7 /* DDSpeechSynthesizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CE87AD2396F79DE4134FE95D84EA276 /* DDSpeechSynthesizer.swift */; }; - A866EDDE2568DEB79F53006E7F24F45A /* SizeExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F152A8D92F8C71DD5186AC3D836B0091 /* SizeExtensions.swift */; }; - A88D569C6D40F093E8AA5773B735147D /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F75183CDE076D8CCE6404A74A0A9C4D /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8A016E76D5AC0E630885430E3560887 /* BehaviorSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = B19F4E5342F19A3EDF819802D9F91F20 /* BehaviorSubject.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, ); }; }; - 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 */; }; - AA6F9F6A4405BB9AFDDAAFF967296ACD /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B5A50B006A6B5F82E978EE34682CF652 /* SDWebImageManager.m */; }; - AA858A4709B9E35ECBAE115A703CF95E /* Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DEB92004F24D012A2DD2A749EA68696 /* Rx.swift */; }; - AA9CB06A7DC4EA362B3BD579C8182DBD /* Lock.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BD69EF40759F9D8FA64ED40014A9891 /* Lock.swift */; }; - AB8707AC05E95D10D125F69C0F1F84CC /* ZLImageNavController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C46EA8EF1DE47563CC626D13BD71006 /* ZLImageNavController.swift */; }; - ABA3BE298F1B209B9A4F53D73F8EFAE7 /* ZLProgressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3ED6B9AEBE20C1AFCCCFFF1EE7527E28 /* ZLProgressView.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 */; }; - ADD89E299179396F528B56309E8DC500 /* KingfisherManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4B239218EC15B23D1256268605F2D5A /* KingfisherManager.swift */; }; - 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 */; }; - AE208AEF1CA4455FFF88AE05CF8546B3 /* Range.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B57D2A6BB14FABAC2CB1250A4A956E0 /* Range.swift */; }; - 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 */; }; - AE3C74701C55A2C9DC7BBB2CADFC0BF6 /* SkipUntil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 608A7E1D20A7A205087553870E508436 /* SkipUntil.swift */; }; - AE81E26AA0581A9E7559FB6CCC5FDC36 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BEA14CDD06609B781449028E6AE3369 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE8E8A7E0C16810EDF0D9C7D25A009F2 /* PrimitiveSequence+Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60B5E16461A4E42F463FABB5D52B974B /* PrimitiveSequence+Zip+arity.swift */; }; - AEDA0A0209F58180777AD7371CB0BE81 /* InvocableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51AD81CDD5814ACB79200B169B425A0A /* InvocableType.swift */; }; - AEE86A9326DC09055B5C28D98C50874A /* UIImageView+DDWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 957B458B27963A1B20D990D8A7C547A8 /* UIImageView+DDWebCache.m */; }; - AEF6A2744C52C8D0483348916A4F1087 /* SnapKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B217CD6894AE8790FEE93BB0B391A0A /* SnapKit-dummy.m */; }; - AF0A903B5FB71B4FE72664C3813349D4 /* NopDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43EEEE384195CEBADB7B3EA9107DCA45 /* NopDisposable.swift */; }; - 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 */; }; - B02743E1A80CDD4175DEE480F5D8A143 /* UIViewController+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E23A92691502180D23A68331E29F362 /* UIViewController+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0460454DF0C8363DD030016E61C50F3 /* UITextView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = B97764B5C39055E3EC18E9F7FFB4EA4E /* UITextView+DDCategory.m */; }; - 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, ); }; }; - B0A85819E926855DF9F3763A256D8CC5 /* ScheduledDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB1BCE3AC517287CE470EFD855396EF3 /* ScheduledDisposable.swift */; }; - B0AEE4378359080F2CC21FF98938FFE8 /* ObserveOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = E07FE5BB474F004DA115A4CBA2ADEDDD /* ObserveOn.swift */; }; - B0C86B62900B2C3ED6A6CC0E578492D1 /* JXCategoryFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E7D2754363E9BA3CC4C3089FCC02774 /* JXCategoryFactory.m */; }; - B0F92EFC5279A3CC616D9F933ABC4E0E /* Skip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10963CD3644E0716EE62F49301E46B79 /* Skip.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 */; }; - B260AC27986F3935925F8A2D97582B5C /* UIImage+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E6EAE5322A539E53BFFE55A0BD6C44D /* UIImage+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 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 */; }; - B2E3B006A6EBE8AAB7911F7F030B5568 /* DelegateProxyType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73F744CE5E0E9B9F8F2C3023FDE73FF6 /* DelegateProxyType.swift */; }; - B367B3DA684836AC6C37B334533E8265 /* AsMaybe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3667D48D78F4EB9E9A9A8982E3A1F6BA /* AsMaybe.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 */; }; - B434048AFE0E75530B3815F775B4B230 /* Merge.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0440522426DB3AF3678746967417BAF /* Merge.swift */; }; - B488A6AA47F941EF0AFE043050E09692 /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37D03742B7BCEF1AF4020C53BB2CEEBC /* ImageCache.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 */; }; - 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 */; }; - B60F0C7D629A5FCB45482FC254F6F15A /* ConstraintViewDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 275603A8F528E82EE55999D086F5CA34 /* ConstraintViewDSL.swift */; }; - B67415A7B5A199894C0EF493550FF4FB /* LayoutConstraint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B7C4C7E7DFC21015CF8FC51298CC504 /* LayoutConstraint.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 */; }; - B7B9F94EF5A56E156C57147F5F302559 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 770E1B3EBC3640ED238C98349449026E /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7F2FC2537F8A512F7969F37EEBABA19 /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A6C4BC8BD1E4F1B6A5617AED2488B12 /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 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 */; }; - B8999F9AEDF4D3AC57B186C9B8FEE0CA /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C3C85ACBFE971066F7BADFAF22796A8 /* Queue.swift */; }; - 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 */; }; + 8F94DE7C574F2E68FB7F4182FF4AA19A /* JXCategoryTitleImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = E362E937635497943E6DE508A30872C0 /* JXCategoryTitleImageCellModel.m */; }; + 8FA4BF924710A8BAA660BF02B8BF7789 /* ConstraintMakerRelatable+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2FB0C728A4B0E64CD956D4D35B6EFD27 /* ConstraintMakerRelatable+Extensions.swift */; }; + 9069546BCE91958C23E24D6279C5E7C0 /* JXCategoryIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ECAB07FCFE0072D948CF75E934427E1 /* JXCategoryIndicatorView.m */; }; + 90747EAF8374FFC67934EEAD2592FB29 /* ZFPersentInteractiveTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 365BECFE3ACA2123A3FE62FC16189B16 /* ZFPersentInteractiveTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90C1CA69717100719BCA2413895F4E30 /* DDBaseViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F57234F64543394A2509EF7252DAE75 /* DDBaseViewModel.m */; }; + 90C2306666CD2C08EF76F2012825951C /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 26A19A66A3BD9A7DDE5A0EF74E057E90 /* MJRefreshBackGifFooter.m */; }; + 90C350B739A3E899B1B53E52B15430EE /* SDImageAWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = B5964D4803CFB8CEED0898C4438E9707 /* SDImageAWebPCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9111E0D8432FAD69045CDE6E0C92D0CC /* Catch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D66F6FEF4CF9DF915751A09D68BDE2A /* Catch.swift */; }; + 91A36B31EC90DB60DC9584F00E5D5643 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 280D5EF936A2580A91A42298138CA9A0 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91B718E97E5B0E6C8E089096AC2DF4FD /* EKAttributes+DisplayMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97FD6AFF1EF039947760BB9F66E85243 /* EKAttributes+DisplayMode.swift */; }; + 91ED131F555A03F5905E86878BF38C69 /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AE18AB2947C447008971926B655DE2D /* MJRefresh-dummy.m */; }; + 923EE64F6CBFF20AD30002B633BC50BF /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E20835D5C6EAC4F7C2A3C5DA4E39C61E /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 927A9E34C2E88E982888A5D2F8A9B127 /* BRPickerViewMacro.h in Headers */ = {isa = PBXBuildFile; fileRef = B76B693FF4BD29AC280EB0A5AB4F57A5 /* BRPickerViewMacro.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9313F5863E61D51958D4954C876666DC /* DDControlsKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E87B136535ED89A2804025D2038C9010 /* DDControlsKit_Private-dummy.m */; }; + 93207A865D205334FE48160E599E0FC7 /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F4005DBF5C9517C79EE0D76B3E055FE /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93C25343A940D20BD21AE6C1EF582189 /* ZLThumbnailPhotoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41CED83574961870FBA1DDDE655D6329 /* ZLThumbnailPhotoCell.swift */; }; + 93DF6D6B5E32104AFE985F15355F629A /* MJRefreshNormalTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = FBD453BEE0C686CA6562C76B9456F328 /* MJRefreshNormalTrailer.m */; }; + 9413C7DB4B03B9C9178A64659F476AD0 /* IQKeyboardManagerSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 22FA55AC60E7CB37990BD44C08CB6751 /* IQKeyboardManagerSwift-dummy.m */; }; + 9497825ACEC7F42AFA494D810FDCD4EC /* ZFPlayerLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2546320FA557E55667BE189ABE849B34 /* ZFPlayerLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 949E8D2BB740EADFE39A5D66DF0612E8 /* DDBaseCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 94E93DBE573ED8C6F33F01948ED7C1E8 /* DDBaseCollectionViewCell.m */; }; + 94B52F9D43DC46D45062BB39E53E9DE1 /* EKBackgroundView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5309D1F5E2F946EF2A2332477D59DE9D /* EKBackgroundView.swift */; }; + 9517AFD055FCAC61888F63B46B1012CB /* ZLCollectionViewFlowLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = EFBEEEF50D9ACA4104F4A260004EBF76 /* ZLCollectionViewFlowLayout.swift */; }; + 95277350C6DD3C3641CFF98AE0A12B12 /* OperationQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7620AA5191F723BF4C54EEC3DADD4114 /* OperationQueue+Alamofire.swift */; }; + 95A807A3166F331195AAC00010B70703 /* Empty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1799DCB51262DB1F73D655798F3D8AF8 /* Empty.swift */; }; + 95AD0B08F159E5B4571FD8C7FCC3A78D /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = B62739FC705A59986B106E0BEC75FFC8 /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95B4BE014268F6B5298CAF95E359807F /* ConstraintLayoutSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B8D373C213F8AC8B4B2D5C010D5FD6A /* ConstraintLayoutSupport.swift */; }; + 96199F1BEE04A029B3278BB1BED5F276 /* IQNSArray+Sort.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49173471BB6AE2908BD9989328E1333C /* IQNSArray+Sort.swift */; }; + 96351482FE93C85C20C75E992ACC4D3C /* RxCocoaObjCRuntimeError+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 08362B5B123C99899B66EC9798D6CEDB /* RxCocoaObjCRuntimeError+Extensions.swift */; }; + 9685A4371808D3DC3A2E117ED06103D0 /* RxRelay-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 580B4C1F47A763EB15B9B2C52900BC82 /* RxRelay-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97352932EA7908FEA0DB6210F4692034 /* MKAnnotationView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A64CFB78A7B2A705F540A2AA34AA4623 /* MKAnnotationView+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 977F8070B2734739DD77174D591DC065 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = D3A02AF1607699BF2EC288EDC813DED8 /* SDImageAPNGCoder.m */; }; + 97ACD5F8ACFCD7B423375EB425F82287 /* JXCategoryIndicatorDotLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = D99B4A3B342E1BEC9FBD4999B99CACDB /* JXCategoryIndicatorDotLineView.m */; }; + 97B4A15E0218313B8CE3CDB2D3CC73D2 /* DDNetworkingOfAlamofireKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F126DAE986142BBF75173CC39F97817 /* DDNetworkingOfAlamofireKit_Private-dummy.m */; }; + 97D0D404F9759A62A9AA003ADF18B277 /* ScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = B393DBDB96336A5D45D2DA641478E65C /* ScheduledItem.swift */; }; + 9817388F04E487B7ECB5C08DDE606F86 /* MJRefreshConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = D5980B975AF5711F5E75E866534316EE /* MJRefreshConfig.m */; }; + 981F1BFE14D989096611F7DB1D782B97 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 2939C7819E5A12221623F773DF77D831 /* SDDeviceHelper.m */; }; + 98A4DD0AD7BE9B76EC219C7E3B54C8E7 /* RxSwift-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 67151E7E2AC38FBD484CF1D66F7DF9C1 /* RxSwift-dummy.m */; }; + 9912583A0C3DCE5F8AC15A3FC34E6FE2 /* ControlProperty+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DBDCBE3CFF85FEA9F92DDAE38A78646 /* ControlProperty+Driver.swift */; }; + 999B33DC38983D04AD690B4599F3C316 /* ZLTextStickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D9CC15CB2C70E029E7A14E3D4587F20 /* ZLTextStickerView.swift */; }; + 99D7BD631F5D4CC39B09885065481AE0 /* JXCategoryBaseCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DCD356CC83A2E80E3DE4C6A559808A7 /* JXCategoryBaseCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A12B0C3033761725B94A2B341C63029 /* VirtualTimeScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98652E0913C1EA2BDE0E3C77EF28E0CF /* VirtualTimeScheduler.swift */; }; + 9A1DF88AB0E546AB51597714309B05C2 /* JXCategoryIndicatorBallView.m in Sources */ = {isa = PBXBuildFile; fileRef = E186D97614A6808EAACBEB5CDDDE530C /* JXCategoryIndicatorBallView.m */; }; + 9A41FC2ABBF645CC7F01120A6BDB0A24 /* UITextField+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 054A22F617AAEA4D7A89E272ACAF94D0 /* UITextField+Rx.swift */; }; + 9AE63A71DB55322FFBB6EF1D979282BE /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E8D67EC62C6E6D8910BC259BBDE81532 /* UIView+WebCacheOperation.m */; }; + 9AF82E3FE6B0FCA2D289149812D57304 /* ZLPhotoBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F054E815A01F551C4709627619DC1C26 /* ZLPhotoBrowser-dummy.m */; }; + 9B32CCFFA0C3806B0187E0ECBC35C0B7 /* DDBaseImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 531BE91522737064C0E7B04FB667ABA4 /* DDBaseImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B75B2768CE5EF132C4B6E451C50C7ED /* DefaultIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6EE682CD70262BDA0867C2129E360BA /* DefaultIfEmpty.swift */; }; + 9BAB2527761194F142A0019EF5949679 /* RetryStrategy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F1335433A485FE1BE97694DFE344372 /* RetryStrategy.swift */; }; + 9BE899982FAEB47E89D2EE2FD9684CCA /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = ACF41B361E7A1201408BD2B0F41CA56D /* SDImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CF1888AF79CD22EB414BFE758E5D36A /* UITextView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F96F0483BB088A4D422BA70EDCEB693 /* UITextView+Rx.swift */; }; + 9CFBE2A3F8BFF4BBDB6DA37F9CE7C266 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 68F85173D63717128F10859F4B88DA83 /* SDImageGIFCoder.m */; }; + 9D43333662E9A614D8F63052D7F1ABA7 /* UIApplication+EKAppearance.swift in Sources */ = {isa = PBXBuildFile; fileRef = 183FADBDD16AA89A3E8E81FEF5238A02 /* UIApplication+EKAppearance.swift */; }; + 9D4EAF940F2C46778D1682E8127F003A /* ZFFloatView.m in Sources */ = {isa = PBXBuildFile; fileRef = F921163045E931B469153423DF1B23DD /* ZFFloatView.m */; }; + 9D778B13DFA3F4051BB2842D61D3BF6C /* SingleAssignmentDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = A21E48A849F586BBFD21714D2BDE80AF /* SingleAssignmentDisposable.swift */; }; + 9DAB2556D82974EE7905C156B4F3A07A /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = DC113ECFBA983B2B2B197B4A7B44578C /* MJRefreshAutoStateFooter.m */; }; + 9DC2A94B2891D5F2B37FF69F48347EA7 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 22BBEC4A4C4FB540F8486D7554952E1A /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DEFB591D6DEBAAAF949BE635617A7A6 /* MJRefreshNormalTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = DDCE9E6BDA94E73329AB9C50016EEBC0 /* MJRefreshNormalTrailer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DF40F11620151A5818FCF5DC7EF4EE1 /* ImageDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BAC18947B909747487F87ECB9FDEFCB /* ImageDownloader.swift */; }; + 9E13BAA5897DBE84C6842BE86EED1CFC /* EntryAppearanceDescriptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BE5A2A37B6BBA9E90F42A753FEC5689 /* EntryAppearanceDescriptor.swift */; }; + 9EA55F404A7BE4684E3299402A5B88AE /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = D2CBE2073D3901EFEBE9548F11B9F39C /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EE55E6E57DFF49D9CEB2493AD5B93A9 /* SharedSequence+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DBBA4C8C9F3F577C4C974504503BE0C /* SharedSequence+Operators.swift */; }; + 9F26F0EB6575EEC06D48252EC38DDC46 /* EKXStatusBarMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A67710C307807C49ADAF30467B0BF5C /* EKXStatusBarMessageView.swift */; }; + 9F4A94A593756255DA8899C6CDC441B4 /* ImageDownloaderDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B96CCE9B8D2B228DE0B0775EC50E4FAF /* ImageDownloaderDelegate.swift */; }; + 9F75DD325C460FFC7984DF4A9A42BC68 /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FC49E0C20721851910941146A81049E /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F90CCC3FC0CF5D2BF452D59CDDF8A7B /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = C821320F799CABA2E06EB3ABA63B772E /* SDGraphicsImageRenderer.m */; }; + 9FA55209BBEC5446B1699EFEAA8AE99C /* RxTableViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC307CBB38D0D9E2417E63C5486C26F0 /* RxTableViewDataSourceProxy.swift */; }; + A011FE7F352E2DC4F52A72ACC985E865 /* ParameterEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B5E3560B2BC7A5346466FF078AC933B /* ParameterEncoder.swift */; }; + A0649D13B9C3CE011F3FEA618EA1724B /* JXCategoryIndicatorTriangleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5686CE5152ABB005BE226C850D579F38 /* JXCategoryIndicatorTriangleView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0657A64DEA57E5606A79DF5FFA0C0C9 /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B8B0D1CB245A7A15A69EB8319C090B73 /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0A9D02A68DF6DD689AEA26EE76AF891 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F46DBBEA65E11053983B2FB2753E246 /* Error.swift */; }; + A0CAC16C811D166585ADC16AF08A6EBA /* JXCategoryIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = EDB9F61004F057A6AFBA2D181643B827 /* JXCategoryIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0E59DE1E829AB6653A41F549DEA9F3C /* ESTabBarController-swift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BD32E852F8B94ED1759436D4626FCD91 /* ESTabBarController-swift-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1059E3A9E938EE8F540D5639AB4B4E5 /* EKPopUpMessageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54A278A43D5D0935670C359D5992B9BA /* EKPopUpMessageView.swift */; }; + A10E840DA8752438971D036CA1D825D5 /* KFImageRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1426BD89DE0205308E091F2480E6FFED /* KFImageRenderer.swift */; }; + A13B4CC2584A03BF7414FE90F04C487D /* EKNotificationMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 071F6EF4999EC4B47F4E90AFDFD09665 /* EKNotificationMessage.swift */; }; + A17B88101B55AE2259598D30E3CDA92E /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = E2C324A3842EE13126CA3965565EB4EB /* SDAssociatedObject.m */; }; + A21A3EDB30349656A7BF23004B6AF02B /* SwiftyRSA-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FF891ED240B6348B88DC810A911F8F6A /* SwiftyRSA-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A23316464128F5761923CA0DAFF0F53E /* AnonymousDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C28E1A0F48A62F4968CE089921F2BF63 /* AnonymousDisposable.swift */; }; + A256E164E3035EACD4154C4D5544C81A /* RxRelay-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3959754FECDE99CD5B3966F34DC1C452 /* RxRelay-dummy.m */; }; + A28602D71D401DC2711F272078337585 /* UILabel+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F19C0B84399234DE43E9C11FCA731D0 /* UILabel+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A29CAE715EFFA6F90408C3B8345A1883 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CC34AF3EA0D7317091783EB80B1BD0F /* UIImageView+HighlightedWebCache.m */; }; + A2B52B66E0891E57CFA6C3750BF7DBC7 /* ObservableConvertibleType+Driver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 672D4B18EDC8DDAAAB9027065A18B509 /* ObservableConvertibleType+Driver.swift */; }; + A2C3F9B0AC38882D651BEC7E7D8F8122 /* ScheduledDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 862FAE944C2C47A1ACD2D5143AF774C6 /* ScheduledDisposable.swift */; }; + A2DD327EE020E9CB1F25B7D075078F08 /* SubscriptionDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79AFE1126635DF7682A203347E4C5AC3 /* SubscriptionDisposable.swift */; }; + A328DD14BD9500BC78D1C7120DBC30E4 /* IQKeyboardManagerConstantsInternal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A9228500518E4F48822A587C40F419E /* IQKeyboardManagerConstantsInternal.swift */; }; + A358C72687DDFF484CAB4B0124CE34A8 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 3690225A06D71775C52F0A985F305B9F /* SDWebImageCompat.m */; }; + A3B9158367275223AB4967AA05D0CC4C /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0407C385764BAFECD28D238D0FB930C0 /* Errors.swift */; }; + A3F68F7FD050BA0038F03314E92B7CFE /* JXCategoryListContainerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 890DE64D33931D869ED7D6B93B339AD2 /* JXCategoryListContainerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A45846C269357C355CDEBF8B8EF896CD /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DEF627035151120436DEA02CE1FC1F8 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4AE06BE1B4C107F33C291F8B1B10E22 /* JXCategoryTitleVerticalZoomView.h in Headers */ = {isa = PBXBuildFile; fileRef = 361CF9ACE31045529002F6F3209B3D80 /* JXCategoryTitleVerticalZoomView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4D3C0FF0EC1462586B769D06F7A9A1C /* DDBaseTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9926891A27457F1F8E220732A2D10824 /* DDBaseTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A576C4698BA14346E54EB6463022EAD9 /* JXCategoryIndicatorCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 664FAFD6CBAE186D22E2AC8D4CF236CA /* JXCategoryIndicatorCellModel.m */; }; + A583906E3E17020B9C601624EE2928CD /* KF.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8ACAF0D76072A8F51B9F0C8833AD97C /* KF.swift */; }; + A5DCA31A4D36F66FFA278B81D8BEF027 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = DFFACA8234356B3D1F64075F951F65C2 /* UIImage+MultiFormat.m */; }; + A5DDCCAE29F2F5E25CC92A67C3423889 /* DDTimerSwiftKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D362CACDECC39F763D908ADADD45CF7 /* DDTimerSwiftKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A5F8871912A1A3E8168E6DCF8EB4207D /* UISearchBar+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF34887BDD05FF791AFEFEE1D447CDE8 /* UISearchBar+Rx.swift */; }; + A6017DE1CDE42AE66DB28716879E1B44 /* WithLatestFrom.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E7604BFD62A11AD14E6F4B17E461032 /* WithLatestFrom.swift */; }; + A608BF8A042013F0E8E790941B4D8866 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 804FAC52FFE0F7C9D4D1080C11E626AF /* SDMemoryCache.m */; }; + A63175D60788EBB5FC5A203F683F548C /* ConnectableObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0CEB44EEF2894301EAEEDC8B77D3AF2 /* ConnectableObservableType.swift */; }; + A69C94A0DD35B9524F7481113B574E33 /* SDWebImageMapKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 25620580657139A91501761C0E2C0EE8 /* SDWebImageMapKit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6D371F7B8F0AE9A55EE402E33583504 /* EKButtonView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1579615F46DE90B7B70707FE940822D /* EKButtonView.swift */; }; + A6D743CD31F8BE6B743622F1EE837BE1 /* DDBaseLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6ECBBBC7E0D610B6D7921FC0EB78256F /* DDBaseLabel.m */; }; + A7C3789391E1E66DE92D95D6F57D0B05 /* RequestModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = B90420B4EBF9DCF1A3266D4299E4C90E /* RequestModifier.swift */; }; + A8350D28113F25A35A21BDA9F2FD8368 /* SnapKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DCCCD01F51423BB28E388EB2A7CA71B0 /* SnapKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A859C89F424EDCA9AFE07133A3CF3FC7 /* DDSpeechSynthesizer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C70A4FB23FA3E14CA394467F423DD78 /* DDSpeechSynthesizer.swift */; }; + A85E7DB7A2F420AD3D68860CBDAAC5B1 /* Typealiases.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AA55A106289C99447D4B27721243B96 /* Typealiases.swift */; }; + A88D569C6D40F093E8AA5773B735147D /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 24036AE1074A61EA6BF3D1255E28EDB2 /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8A0C288519E463DE5E9B307FAE797F3 /* EKAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF716F2C9DEA3B5F5789AAF4A3C22572 /* EKAttributes.swift */; }; + A8DC4B6CAA17BCE09B33F0CBD7B760AA /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3B56DA53E0A9A31116268B6E73E181 /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A91F69373347CD458D89B84B084E0640 /* ZLPhotoPreviewAnimatedTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE13E26D345C7E810A262C84C2E02F84 /* ZLPhotoPreviewAnimatedTransition.swift */; }; + A928D17689392DAAC600620B1020505C /* ESTabBarItemBadgeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D7117CE9F126D8AFB2EF3E21C5275DC /* ESTabBarItemBadgeView.swift */; }; + A952741473205F790F725FA10B2C2667 /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = D752328C851F17A39773F2072576FF3D /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A95BA26F0C63FBC108E205FC57B414DA /* Map.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74B063AD4097BE8A24E6E731EF2B4A57 /* Map.swift */; }; + A97E69232EB284E6EF3127992F66C58D /* BRStringPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 10C044128191F34B3D17925788C18525 /* BRStringPickerView.m */; }; + A99CF24F1B900AB7722D972FA4FED6BE /* SwiftyRSA.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0524AE01C98B859CF0D79DF9DA54B79 /* SwiftyRSA.swift */; }; + A9A5CC537275881320975BDC2EE7F62C /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = E8018EE8173E2ADC8F9F24B8825ADA4B /* SDWebImageCacheSerializer.m */; }; + AA6F9F6A4405BB9AFDDAAFF967296ACD /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E9D0106AEB9F5B493847B8C852170099 /* SDWebImageManager.m */; }; + AA8FC66F4E2584E3DA52381E26721C89 /* UIView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 304ED5CCB3C625B2C0E4B4433AD73814 /* UIView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB8707AC05E95D10D125F69C0F1F84CC /* ZLImageNavController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2ADEA647B9653D68C43A8AB4568E7846 /* ZLImageNavController.swift */; }; + ABA3BE298F1B209B9A4F53D73F8EFAE7 /* ZLProgressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1650E856F0383AFF433321ADCFF0B46 /* ZLProgressView.swift */; }; + AC816DAE095CF51A98ECF689E6158059 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B180D09C8D79EDD7046D53796A145C3 /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACB3FE20E856929E036CA6E73A1955AE /* LockOwnerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 442BF38ACEEB2A95CD854D11C3BB749D /* LockOwnerType.swift */; }; + ACF63289846D4B66AB4A5A6910C63B94 /* UIImage+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 27935E6A76148C4CC3A43A08E5BB374A /* UIImage+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACF6E744FFBA77DB4FE3E42A917E5CAC /* DDWebImageKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C97C5ABEF7A2889F372B6B39A2FA2D1 /* DDWebImageKit_Private-dummy.m */; }; + AD49CC70CD7F4D736EA600D72EA61F64 /* HistoricalSchedulerTimeConverter.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC5209FE25984EFA8CEF289DD32E1CCE /* HistoricalSchedulerTimeConverter.swift */; }; + AD76E0823BE733CC1E002FBF1BC2AE50 /* CALayer+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 50D2536271FE329E1393FFB45239420C /* CALayer+DDCategory.m */; }; + ADF031ED0468E75793D32E1609139984 /* RequestInterceptor.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6144FA59B6FF2280AADF2A1E80920CF /* RequestInterceptor.swift */; }; + ADFDF04B44D98030E7FB1F4A4196F155 /* ZFOrientationObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B2A584C07E29F371576F096BDFEDD76 /* ZFOrientationObserver.m */; }; + AE1015AC17118CA9A93681AAE7454DCD /* JXCategoryNumberCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C0500AFE12BEA911C665C57FA898C4B /* JXCategoryNumberCell.m */; }; + AE2421B86D481DB24462BBB65580903A /* ZLPhotoManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AE9C6CD531DEE9989CEA93F5D471DD9 /* ZLPhotoManager.swift */; }; + AE310A252E96F1A89125262C9293FB10 /* ZLImageStickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68337E6BF0375FA39E471BF6643105E1 /* ZLImageStickerView.swift */; }; + AE3814FADC3432DB8F6B88D2102EBB0B /* NSTextField+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DA3BAAFA9B542232B974AFFA95DA561 /* NSTextField+Rx.swift */; }; + AE81E26AA0581A9E7559FB6CCC5FDC36 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DB7034410550A92E93A2C9B271A497AB /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEE3DCA65FC0D962A1983D1EF5B72062 /* AVAssetImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 007C5043C49FD0FF7EE18EBD17C9CC1F /* AVAssetImageDataProvider.swift */; }; + AEE86A9326DC09055B5C28D98C50874A /* UIImageView+DDWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 78AC6660C7FB04EB23F0BF1D0B3EA719 /* UIImageView+DDWebCache.m */; }; + AF1C1BAAEE8A641CD516DEA3D1DE30A9 /* NSAttributedString+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 663EA6C939676AEBAB3CDA24223F27DF /* NSAttributedString+DDCategory.m */; }; + AFA87EA35BBF8E4F0A2D41954069DD9C /* ZLEnlargeButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8E24BD6706A3C27F8A0732B1F84AF01 /* ZLEnlargeButton.swift */; }; + AFE7A6835DD89F0D3331538280787CEE /* IQKeyboardManager+Toolbar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D379C0B9889D93B56811DE0AFFD019 /* IQKeyboardManager+Toolbar.swift */; }; + AFE9C99619478338479FA2EC749A8861 /* GraphicsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = F02E9496E31834EA30D63093FB024F8E /* GraphicsContext.swift */; }; + B01AD0CF889816FA1985284F075CFBF7 /* NSView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC4533F08B18238EC5C852E1B136CC7F /* NSView+Rx.swift */; }; + B026AD1C1E94F5FC78A1CE5A96DDEE89 /* NSObject+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = E89C69CB893B3D1E247117A7CC7AA719 /* NSObject+Rx.swift */; }; + B04554D6B425890F1281FA20DC981975 /* UIImageView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = D93B6A939DE984F1EB0388D8C75DD180 /* UIImageView+DDCategory.m */; }; + B0470BF38DA7AECBDEC223D60C2A05D4 /* ZLBaseStickerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92AFCA13019BDDCB53CB10B0CBCD7F52 /* ZLBaseStickerView.swift */; }; + B04A1F654CEE373527D6A1FDE4706545 /* ZFIJKPlayerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 177208FE0AC55F8049B84AC4A658A345 /* ZFIJKPlayerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B062397EBC3E007F3B3A05D7EEDE6ABD /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 18E5259DE6739903A925CE7A065B477A /* SDAsyncBlockOperation.m */; }; + B063BA956EB9BCA0B53896A0E792A264 /* DDBaseSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 011FD654828A5E2CA8BFBE2BB080E15F /* DDBaseSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0C86B62900B2C3ED6A6CC0E578492D1 /* JXCategoryFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A59DAC80F4D57F85549837E03B6252D /* JXCategoryFactory.m */; }; + B0F7B54EA4F9DFE1A8BA3183C18014CB /* UITextField+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = A19C4BEFD2E261BE8734FCE139E89CCB /* UITextField+DDCategory.m */; }; + B11769C6D0E6CA59FC36D1D77F642A78 /* NSData+SHA.m in Sources */ = {isa = PBXBuildFile; fileRef = B5F58FF4291879BBEA3539B0B74B3F4B /* NSData+SHA.m */; }; + B12803F0E38CFAE8770FE476242895C3 /* EKProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 494476B60FCCACEA7079BCEB0080148A /* EKProperty.swift */; }; + B169869926BCF8894AD891F3261B8AF1 /* URLSessionConfiguration+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F6328AB4247551B7DE7F9C59FD87B9C /* URLSessionConfiguration+Alamofire.swift */; }; + B1CCDEB46FFBD5C857CEE2829F31D65F /* RxCollectionViewReactiveArrayDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32F084C19384365A8CA7A0C4615145E4 /* RxCollectionViewReactiveArrayDataSource.swift */; }; + B224B816DD7F5B7C20E53780C26163F5 /* NSURL+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = D0DBE48A97BAB9861BB831F329CD19B1 /* NSURL+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B27F69341AA274200D4EC565EA51B477 /* NSObject+Rx+KVORepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA475FF1F106BB339064D815BBBAA32E /* NSObject+Rx+KVORepresentable.swift */; }; + B2B998194CCD760C0095B9CD67B288CD /* UICollectionViewLayout+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 463D297175DE8763E4F71E6D2FE91852 /* UICollectionViewLayout+MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2BB06514C0A38F894279DA3BFAAB03E /* RxPickerViewAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21C371879B967B4F6AF7396CA5CA5C04 /* RxPickerViewAdapter.swift */; }; + B2E3B006A6EBE8AAB7911F7F030B5568 /* DelegateProxyType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C47E977F821F85D602A3B26EDC351C7 /* DelegateProxyType.swift */; }; + B35361D59F4A20080477F63DD22F76EA /* Window.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5282EE44DEA450B95D40BD589E400D08 /* Window.swift */; }; + B39CB141B9670AEF45DD1C127E168D12 /* DDBaseCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 4040332B7FE3A86CA301916F4A943D89 /* DDBaseCollectionViewCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3B255160FD8882296B36105117F8F77 /* Delegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85CEDE84D564EF34245B33AFD27ABD70 /* Delegate.swift */; }; + B3C04262B952032CFD122763CC4DAB3C /* SessionDataTask.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83E8A0AD8CDA023AB7591BD8214FE839 /* SessionDataTask.swift */; }; + B3E2E1B9AE15CC280B8957C339243BEB /* JXCategoryTitleImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C7A17640384B33065DE03CDEF045AB7 /* JXCategoryTitleImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3E51F0E8AA1550E1B667D96C3BDD1A5 /* URLEncodedFormEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68DFBF76A76273EE9FDFD63BDBBCB093 /* URLEncodedFormEncoder.swift */; }; + B40E0790D6C9B7387B5FAB251E16B1C0 /* Bundle+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B90EA217BD262A8A13A4E9019D62D65 /* Bundle+ZLPhotoBrowser.swift */; }; + B41FD6E22B5A75FC2EAA129FF1B54B82 /* ZLCameraCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 12E72D93C1B1329FB9B1EC74C58741A8 /* ZLCameraCell.swift */; }; + B4ABDE535D907DA03582DFD0390F21DF /* DispatchQueue+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C0B5C4EEEB02265B88B00F64A69B41E /* DispatchQueue+Extensions.swift */; }; + B4C0B46C21087CA310DE57D0B9FF1C17 /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F0264C64E4D4EEBFC45EDB818692C7A /* AFError.swift */; }; + B4DA45D21312C13C1BD200335595798D /* NSTextStorage+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D431EA69A167891A4820C57419741E6 /* NSTextStorage+Rx.swift */; }; + B4EE3E3D890100C5AFA0ED7290B5A396 /* ElementAt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E33BD1641FD5D1D329DEFE1DF206670 /* ElementAt.swift */; }; + B502E9659BC94C3074C41F9294248930 /* ControlEvent.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBC5438ACEDEF6D854CFDFF1367A0FE8 /* ControlEvent.swift */; }; + B5169B93C52F1FF030F7497A6FEF7E2E /* ZFIJKPlayerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D8D9D3488435411716F91703BEEAAD6B /* ZFIJKPlayerManager.m */; }; + B55954EEE456FDEDDBF90F7692764F14 /* UINavigationController+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 08327C82F0A0391E9140121D7FDFE40C /* UINavigationController+DDCategory.m */; }; + B5909D30D3D2544499F30CA21286AC58 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = E5B0C98663D838E4AC1976ED6637FAB8 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B59FE62F5E445635ED136AF84E76A724 /* First.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A643FE9C2CBDE246B7B8BECD3F98795 /* First.swift */; }; + B5E8226BCB600380F56DF4E98CAA2777 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C8CA376E5E1A2B463770BB2B11FA09A /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5F5635CB0E895EAC58232DADF5FC3AE /* UIStepper+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA27C19567ACF0C7770E8705376CBE2B /* UIStepper+Rx.swift */; }; + B601FF45040CC3B4D882477DB46A8DFD /* ZFLandscapeWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = F35F39BD99E98FB46CF1B393680B988F /* ZFLandscapeWindow.m */; }; + B6062CB645AB7C112A4963605E59E4AE /* UIRectCorner+Short.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1BE0A303E1D150EB7C53DF7B78CD4A3 /* UIRectCorner+Short.swift */; }; + B697778E01573152A6019466B54D134C /* InvocableScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDE582DCCB92CD0A144E25D1D8732E7B /* InvocableScheduledItem.swift */; }; + B6A5A9C096B866F53FC368AA2E9E94B7 /* JXCategoryIndicatorCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A636F211352C3DE6116917AE7EC06E9 /* JXCategoryIndicatorCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6CBF2AE5040CCF8E27AFED738B5E644 /* ReplayRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B316DE6AC16129F3192DA1435AD9437 /* ReplayRelay.swift */; }; + B6DF847DA065C63CF90056990C8D1476 /* UIScrollView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 668382E77DF65963BB502C803257FD39 /* UIScrollView+DDCategory.m */; }; + B6E808A6F9BD5EC798D6D3EB3BB83E7B /* ImageProgressive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F63DE719625B11D8C655A86675C5F52 /* ImageProgressive.swift */; }; + B70BB03F1D414155F2C5F9E34E659806 /* UIView+ZFFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 3216FEB31DC406BCF4654E8BE74EFE08 /* UIView+ZFFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B71152709B956F54CCBB7A6F5EDBAC68 /* AtomicInt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FAEC3742F1E09DA62DB97EBD7D8A15F /* AtomicInt.swift */; }; + B7192ACDC4B49F39190EB7583AAA8A28 /* MATraceReplayOverlayRender.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DAA7AB53BFB4D3ED99CACE5DB475EFB /* MATraceReplayOverlayRender.m */; }; + B734391A023E1397D7C4988865147809 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A2DAD51E238CE866DB40C7706EA0095 /* SDImageCacheConfig.m */; }; + B7B9F94EF5A56E156C57147F5F302559 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A7CCE309D4DCC6DC87793B104A23D2FC /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B7F2FC2537F8A512F7969F37EEBABA19 /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 963A2DE2F4BBFB477750B663CE353E85 /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B84BED170956D2391246497EC4ACE3B3 /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 80FB4A5751EFEB9401FA87191AA925BC /* SDDiskCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B850BC342D7976173853AA223DF66FDF /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B06F452379CFBDFA87F490D0D16A862 /* SDImageLoadersManager.m */; }; + B87FA1A74AFFD85DC6676B5D9F777DA4 /* ZFPlayerControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = DFE38A401804114EABFCAAC4A185896C /* ZFPlayerControlView.m */; }; + B89B1DCCB280DC9DEC4B2379546B2B6F /* NSTextAttachment+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5802CF56D312B8E04A2251ED79A91789 /* NSTextAttachment+Kingfisher.swift */; }; + B8ACFB27F7B7E309059AA265F2657634 /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = C93424CC43819631E99AF0EDE85708E7 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B912045CC6351F6B403B2BA16E0FA3CE /* DDViewControllerAnimatedTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = A9B09E808EE321878677C790C1F30DB3 /* DDViewControllerAnimatedTransition.m */; }; + B929603A11A07A494CBE9E734195270E /* UIColor+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70BB91167ABEE2352D3CE681C81C3153 /* UIColor+ZLPhotoBrowser.swift */; }; + B93BFE7CE24E673EF0CA9148E11C7D89 /* KFImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A329E8FED4A3CFEE60027AE989BABE6 /* KFImage.swift */; }; B95C9B390345B91227D9C6AABCDDBA8E /* Pods-OrderScheduling-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 439EA354473F5B1B44C857E4C3A7D7D7 /* Pods-OrderScheduling-dummy.m */; }; - B963E078896CC9DF2C37C06A438908DA /* UIButton+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC7C613A9C853720F480F2B7E381C709 /* UIButton+Rx.swift */; }; - B9AE7983EB3E754C9E655B15C36143B1 /* ZFPlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = F9E1E301798563B619C73A5CAFDBCC3E /* ZFPlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA11AE6276ED0BCA627940CF2AA4A82A /* SectionedViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D4B25B38EB7F625A533C41F7A63B3D2 /* SectionedViewDataSourceType.swift */; }; - BA13D082E2D8C9CC3A2594E1926B1279 /* LockOwnerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 821A51399AA8014383227F9EF07762E8 /* LockOwnerType.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 */; }; - BB58A878E14BEE3BD8EDD6189D227F04 /* NSMutableParagraphStyle+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = ADF45E6317803019457A5EA8BFE1500B /* NSMutableParagraphStyle+DDCategory.m */; }; - BB714B9D7C8AECD5513CD2452AD8687E /* _RXDelegateProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EEFD3500E275F334FC5C3FAED22C19C /* _RXDelegateProxy.m */; }; - BB91F7BFE3AECA8494D5E2BFA3AE593E /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 80CC449142B606B9E2AFB01AA5928B28 /* SDWebImagePrefetcher.m */; }; - BB9CF389D15F65172C5D16936279DAAD /* FontUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C9CAA5A5E610917C349EC6ED701550F /* FontUtil.swift */; }; - BBB7E00FB3E015E93D96B97520101A9C /* DisposeBag.swift in Sources */ = {isa = PBXBuildFile; fileRef = C121B61163D889285F9E307ADE5EAFA8 /* DisposeBag.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, ); }; }; - BC9DE732A9A9A3E6BA2DBE6C7ACB0427 /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 04A51F1AAC8D966A3CF17F3552628174 /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 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, ); }; }; - BD71DAAD9C863C0905780369F5942079 /* _RXObjCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E189C0003B00E49B74050ACD7FC65DB /* _RXObjCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDEF2FB7D927B0B5EC012429474270DD /* RxCocoaRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = ADFEBD6AF0319D99F5E1F215718A82CC /* RxCocoaRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE004CDB7FCE8A22C20437F19DE496B3 /* UIButton+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 6237638D1EE25F6E83492D1AD59EC726 /* UIButton+DDCategory.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 */; }; - BFB0C5B39B6A260FB765DAC8F7EAB914 /* CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02ADB14AF5456465D9166F44567CCE0C /* CombineLatest+arity.swift */; }; - BFE6B8F2BF0278F8ED0410D255EBFB34 /* NSMutableAttributedString+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = A37A3D322A680778C4A85EBBB3DDDDDA /* NSMutableAttributedString+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFF17ACCAD0EDF9C373A4D2CA20EEF59 /* ImageProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 803CF4D81B5BC0B583110537739D795F /* ImageProcessor.swift */; }; - C01355012AE3DC761464C352BCFD4197 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 9554B6C53CEF59FF3124837EAB1A05C4 /* SDImageLoader.m */; }; - C048EEF37D424C21BB5BBF5AABC5B852 /* Never.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BB675B7481C947546D1269F1A55B716 /* Never.swift */; }; - 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, ); }; }; - C0A16AD03D4F121B5F6D22E51F6FD69A /* String+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = D24896F20383ED008DC90441CD13017E /* String+ZLPhotoBrowser.swift */; }; - C0BC39D0A599009DDEB82A1C17F81184 /* UIFont+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 06848B23C75BA91EF719A27ECEE5150D /* UIFont+DDCategory.m */; }; - 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 */; }; - C209CBE613B7AB6FE3DA1690612A63C1 /* UIScreen+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = D92A8FE3E1B511EFFF6060691EAE164A /* UIScreen+DDCategory.m */; }; - C22D68D6305A377F31918BD6D9CCD69E /* ConstraintLayoutGuideDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 95415F271C47020156F876B9F8DB738C /* ConstraintLayoutGuideDSL.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, ); }; }; - C3CFA478FB802F5A6AD209E5E1B34F54 /* UITabBar+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A8692AE767E7EF7D3585D1AFB64BB9F /* UITabBar+Rx.swift */; }; - C40F08C50B0B6DDB15E4F1D6F18213A5 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = C6167FB726839DC880D86CDA93B64D10 /* SDImageIOCoder.m */; }; - C4BF6BFB52FEE82B04DB8EA2AE9E5BBA /* UIDatePicker+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BC7AFDACD488425AF0DA64F831F7ECF /* UIDatePicker+Rx.swift */; }; - C532F8CE4A5D58C3EA2EEA4A77197403 /* ImagePrefetcher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E8BA8E66DB61DCD64911E5F2259AEDA /* ImagePrefetcher.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 */; }; - C587934736DDB947BCE21BD24776E3D8 /* UICollectionView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 172C51BE1DD73A6B9E6FBCDF85F07222 /* UICollectionView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C58CE7694D876C745A7D4DAB9004F3C4 /* VirtualTimeConverterType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C5DCF0D1CBE62281BD83194F96341BC /* VirtualTimeConverterType.swift */; }; - 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, ); }; }; - 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 */; }; - C7D99B25D93126E3CD935F97EF1B1A6C /* ScheduledItemType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D57D19629CE260314DE6E8DB370E35D /* ScheduledItemType.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, ); }; }; - C8BE9A3149410351948DD415A937C9EA /* DDCategoryKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D20B70C52D072A0C0033C7B7F8687C4D /* DDCategoryKit_Private-dummy.m */; }; - C8F794766E85D3691138CC9BB0DB15A2 /* Observable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E149949266077CA716C0F64C4A679EDC /* Observable.swift */; }; - C9043BA7AF2E577056F83AF6085CE568 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F952889F3F23D8E918EA06EEB05E9E53 /* Filter.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, ); }; }; - C9F2795F0C32FEA19D2ED6FE1BEDF225 /* Observable+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDA997DA217CC6F8EF3B72BAF6720725 /* Observable+Bind.swift */; }; - C9FF0064F6C55CD4E49ED41B2EA17DE8 /* EKSimpleMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 771CE9363DF1FF47C201ED73257B9BCE /* EKSimpleMessage.swift */; }; - CA09255FDEA073F52E9B21618886EE8F /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = BD9259973A3D723B28D98BAC298321D0 /* MJRefreshNormalHeader.m */; }; - 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, ); }; }; - 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 */; }; - CC55C5B908ADB58120CCC05520A0BFFD /* Key.swift in Sources */ = {isa = PBXBuildFile; fileRef = 640898CF5D692F138157693B51F47F27 /* Key.swift */; }; - CCD6C074CEF0BBED851493BB3F6ABC5D /* VirtualTimeScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A1ACA8A0153DF4092625A188EED2169 /* VirtualTimeScheduler.swift */; }; - CCED752EE10472C0324044FC4B9FA99A /* NSButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6176899256A0BCE0FE9E6F54652FD3B6 /* NSButton+Kingfisher.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 */; }; - CD4552681364820D0CC05139CDC19BC8 /* MemoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30CDAB8F0A186D15D7DDA9D9C9175411 /* MemoryStorage.swift */; }; - CDDA78460091FD5B2414D7F07B2B7DB7 /* ConstraintInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = E65AF53697F3F9D9D6DA4F80E94A0D48 /* ConstraintInsets.swift */; }; - CDED1715E3C7C86CFFEB8635D4D01E32 /* UIView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = AC591307EA0056B03A18106EE9AA4EB4 /* UIView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 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, ); }; }; - CEFC0AC99103E1F06BF80AF96D385533 /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = F65966031F0AE0AF112AAA5B1829ED64 /* Platform.Darwin.swift */; }; - CF0542E7E27082F0AE761E78228DEB8F /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = C9A889FED6B708012C5F48904D4C41F3 /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF5C9A5DA9801656CF76B0C30CF3DC05 /* UIScreen+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = D34026654A2BB5E123BB5CEAC708A17E /* UIScreen+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF6802DBAADD71B71CB3B580389EDCB3 /* Zip.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8234D79DB09F470ABBDD887A72BA9570 /* Zip.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 */; }; - CFD4AD62F684CCDDB885B7840F7B3E71 /* ImageDataProcessor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13A5925CA69C7E17C422B691E2D692A6 /* ImageDataProcessor.swift */; }; - 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, ); }; }; - 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 */; }; - 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 */; }; - D24C91FBCF577978F8F7818B05D09FCC /* Take.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73C066DE0E3EF2B198218157AC11EF02 /* Take.swift */; }; - D25843C083BE37F7D9579B6983A424E8 /* ImageProgressive.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8CC3531A68A1843CC5717C76188FFCE1 /* ImageProgressive.swift */; }; - D269044D982531C2EABA7BD3F34101D2 /* CGFloat+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44A7D816539DB500FF3392D352A22D8C /* CGFloat+ZLPhotoBrowser.swift */; }; - D30295702271BA26222EC0E8D2829E63 /* EKAttributes+UserInteraction.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACF367D2CFC13336195E1A03850DE5E5 /* EKAttributes+UserInteraction.swift */; }; - D337DCD5C2F670076386AB6884CFCB6A /* Infallible+CombineLatest+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F5C75F27D5781CEE260ED6440510EA8 /* Infallible+CombineLatest+arity.swift */; }; - D34C2ED1D82EAACF5113BB1E136A2440 /* UITableView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E648E0BF82BC0F4613380C69E43346B /* UITableView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3A692A8D6778B0C530C667E0D2645F5 /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D939F5318634975C98B836DD17AC80E /* MJRefreshAutoNormalFooter.m */; }; - D3DAA79DECE865BDCE076290194B4033 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 10076D03A2C1594266879172E57A97F1 /* SDDiskCache.m */; }; - D3E0F4338E5998CBE90232D0EA51201A /* Infallible+Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = C989A5E3A0C940065085747D06AF2C15 /* Infallible+Operators.swift */; }; - D41706C216134FC77605103354F07C42 /* ZLAlbumListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BCBB8FB675A628DC92EFE21CFE1E683 /* ZLAlbumListCell.swift */; }; - 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, ); }; }; - D5515DF2411C47BB0F12A78EC54A6B5A /* ConstraintMakerRelatable+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C85ACE659AB892043964E240817ABE84 /* ConstraintMakerRelatable+Extensions.swift */; }; - 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 */; }; - 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, ); }; }; - D79653B6024C6CA7FF6E1B8570028C20 /* PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A3F3F200A8F91B60E91D136A96A72AC /* PrimitiveSequence.swift */; }; - 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 */; }; - D8DDFBB3A35C2BE5B3C44219A5C7D3A7 /* NSThread+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = C9589DB5D2D94EE3C30777E55FE0137D /* NSThread+DDCategory.m */; }; - D8FD93FBAC2166F333BA48C4D726B091 /* ZFUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CE667E144223C4F16CCA1E35D992B24 /* ZFUtilities.m */; }; - D941B55ACBC7402786A5668FF2548967 /* DDMAMapView.m in Sources */ = {isa = PBXBuildFile; fileRef = 51F629C031E3CF2FB48180D108266F71 /* DDMAMapView.m */; }; - D9432E91D0DDF77075A60BEB6EA1565A /* Binder.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDA62D90A6EF18A3A06FB0047BB4FBC2 /* Binder.swift */; }; - D9608FB125F849D4B3C79BFC4B8023C3 /* BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = C1AAA50E3ECC82DE8B66ABCC558B4233 /* BRPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9AC52596EBDC826499603EC3A3A4DA0 /* DDUIGestureRecognizer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7499ECC312F3D57D5BBED2E7E1455F0D /* DDUIGestureRecognizer-dummy.m */; }; - D9B8B43830362EE0C77A55B6CE157ECA /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E7D32E5BF69B7556FCADF853E3231A9 /* UIImage+Metadata.m */; }; - D9BBAF7B75B55C4F174A1F1D1BC1949E /* ConstraintRelation.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3A506D4AE4A293357B49D9AD000A532 /* ConstraintRelation.swift */; }; - D9DFB73AB4BE6CB973F6F316B2A6A765 /* UIViewArray+QuickLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E1818EA7CE77044E29D069768BD2A2C /* UIViewArray+QuickLayout.swift */; }; - DA28FD246160F6ACF925E286F9E0B065 /* RxRelay-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 36BC95E1B7FB0EB339BF33169EA412F1 /* RxRelay-dummy.m */; }; - DA39F13925A217C94F8582009262EAA2 /* EKWindowProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77BBEBE1B50CD7C826254DC3B5932D03 /* EKWindowProvider.swift */; }; - DA969E7022B6C5B0F90E66660E914D30 /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E722947585C05E002BBAABE96FCC6B6 /* Bag.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 */; }; - DB59F04D0156C443BB07E85B8CC84177 /* Infallible+Create.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15DA3ADBEAC86681642ECC349F4440FC /* Infallible+Create.swift */; }; - DB8E1097EFEC248D83112C45B37D7B88 /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 45BCDD8B42F08E3EA61EFB04D6E071A9 /* MKAnnotationView+WebCache.m */; }; - DC2AD54F59773138F1461A45C2F19097 /* ZLPhotoPreviewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F25983DDAD74C7CA9273F2941DCC832D /* ZLPhotoPreviewController.swift */; }; - DCD5B55F19DB19CBC5DC0ED09FE9310E /* SwiftSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4457A40FC3FCC29E9A078124E59297AE /* SwiftSupport.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, ); }; }; - DDACD375C0C5111047E2307DAF73DCE6 /* PriorityQueue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 974FA2645992FB57B2251A6B656D45AB /* PriorityQueue.swift */; }; - DDF9F1CD51A0B6E3FAEEC690269482E6 /* NSSlider+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = A300462831ECE9BB9DAC511335E5FD95 /* NSSlider+Rx.swift */; }; - DDFE00C961BDCC08086F9939477303CD /* DDTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A19CBEEE4117AAD18E8F494E0ED107BA /* DDTextView.swift */; }; - DE19B14E27B3F5EEF19205896C5A9C78 /* ToArray.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56DB8AFA9B7E354F4FAB90269E7E5EC9 /* ToArray.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, ); }; }; - 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, ); }; }; - DFD2A7464E782629C015E7B00863B49F /* DDCategoryKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E2EA1BC5C269D99913D34141456DB406 /* DDCategoryKit_Private-umbrella.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 */; }; - E02542D827E181A84B1371501D90D3D4 /* Filter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87EEDFB85AD7BC04AA40D304372057B6 /* Filter.swift */; }; - 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 */; }; - E07FC4B573EA935387D3261F3C4ED6A7 /* UISwitch+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = DA7C542A8A0FEF11F40CAD6B4B783081 /* UISwitch+DDCategory.m */; }; - E0A97352EFF47010A3449A81255CE5FD /* DDCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DC20CADB7641A0A73E23084922704E2 /* DDCollectionView.swift */; }; - E115E5DF79563D8FE279888939171F31 /* Dematerialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 936FCA55D6AC3E19A384D8E1AF0FA50B /* Dematerialize.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 */; }; - E425B1792B00EFB153A9BCAC85B730F4 /* DDViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3EF83247660B7B1B045EDC7FE7F20651 /* DDViewController.swift */; }; - E42BF0E600D0189F7F9AD5329D385334 /* DDTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = B68D04C1C21C4D6BE48F329D78E42FA5 /* DDTextField.swift */; }; - E466AAD571AA87F0A8EF43EA49C4BFEF /* SingleAssignmentDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81497325EC740F6F6E8CF05DA8DB27B2 /* SingleAssignmentDisposable.swift */; }; - E511E77E4856E96445010526D2E3EDA6 /* UILayoutSupport+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67F029F4CB4AF2F94B400D0F42A414B3 /* UILayoutSupport+Extensions.swift */; }; - E5251ECD961D19B16B160961E49890AD /* PublishRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA54A3F1CE6E705C6D6B771F178C2C1B /* PublishRelay.swift */; }; - E5454FCA68CD84211779C75BE433F4E5 /* BinaryDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44F077736BE1EEE086217ADE1CE83296 /* BinaryDisposable.swift */; }; - E5690EF9D5070931876754C046B11288 /* Completable+AndThen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6339D4A4812FEC1EAB770EB448D57E5A /* Completable+AndThen.swift */; }; - E5B3C04F705FCB65441CA1FE35CFC536 /* GCDTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83453B71AAADD3E63823E299371E7B30 /* GCDTimer.swift */; }; - E5F2553F6FC416BF002BD6831268EEFA /* ConstraintInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0B7922BC30B7BF1ED70AE760EAE9B8F /* ConstraintInsetTarget.swift */; }; - E5F6C631FE32C41FFA4610E64AFEBEF6 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = A854712807C24CB9DB0126A588D0467E /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5FC3FFDA3929A9150DAD01B7B12006A /* UINavigationController+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 94F80A165C2824F1820EAF58C60CFB22 /* UINavigationController+DDCategory.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, ); }; }; - E65CB5D16627FAAC56DAFAE9969F61B2 /* CombineLatest+Collection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FB1E26331EFCCFD6350B17A064756EC /* CombineLatest+Collection.swift */; }; - 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 */; }; - E7B869F8E21E960070EE15A7084CCEDE /* BooleanDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF74A5E916E091D3EF3775EBAE93BF3F /* BooleanDisposable.swift */; }; - E800043D1A69CDED18A91CFBE4A46851 /* NSTextAttachment+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 11E85C9E1411241C96F207B5A7772A0D /* NSTextAttachment+Kingfisher.swift */; }; - E820EEBEF531A1B6071E9BFC7DA288D0 /* ConstraintDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFB14E26932DD42ECE2B3DF40655D499 /* ConstraintDescription.swift */; }; - E85FF279E9B06A1992CA04707CD12F23 /* UISwitch+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 92AC33A1E1ECB9099CD946A8B7680767 /* UISwitch+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 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 */; }; - E8DB9ED6C0EC9C1B4274D2D2AE657D2A /* CurrentThreadScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = C17C898D9A47EE5A5C2A1354F9B9A906 /* CurrentThreadScheduler.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 */; }; - E97C38FB746D8CE552ACAB943D7113F3 /* Source.swift in Sources */ = {isa = PBXBuildFile; fileRef = 095C772CA9D287E8F32E25742AC62AF2 /* Source.swift */; }; - E9D877C0FC7A2087F6B5FEC67FFD4CFE /* JXCategoryView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BEDC1C283046864D0F120D249EDD3CA /* JXCategoryView-dummy.m */; }; - E9FA06E03431D820001F034C08AEF195 /* OperationQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 844B14AFA346AEC662C06514D3F2909E /* OperationQueueScheduler.swift */; }; - EA0D63BDE8329C72280A4DD6533FE089 /* ConstraintConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0ECCEAE57EDDB8B2A3E8AC0E0F20AE1B /* ConstraintConfig.swift */; }; - EA20E7451CE67E411DAE038C6EE49472 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = DA20B67B6F3CB9D1D49DAD9403C65C47 /* SDImageCoderHelper.m */; }; - EB061656E2E1828A3752CE8ED124EA6C /* ScheduledItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1D71C8008A798B55A6A430FFD318DE8 /* ScheduledItem.swift */; }; - EB34415A0817B6F0EA97C89773A6FB99 /* ZLEditImageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9366F2FA1CA95C3FB0D4140F61F80953 /* ZLEditImageViewController.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 */; }; - EBF88D388EFDDCB7005D2B8B75D7D528 /* Using.swift in Sources */ = {isa = PBXBuildFile; fileRef = 806B5B56C01097586DC8023B631BBE14 /* Using.swift */; }; - EC2A5CE9FC7D5E2ECAFB585B8052D17B /* ReplaySubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AD83821B8BE69287642F1191B5C530F /* ReplaySubject.swift */; }; - EC2B3804DBD7244270FE3CBB4076AE22 /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4C2A9E7C637231DC6FE721DBDB627E4B /* Bag.swift */; }; - ED3F8719AE0C4D9464C372D0CB5D2E14 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = D45E1EAE02C54199896AF1626C1785EF /* SDInternalMacros.m */; }; - ED9F225882E966D67FD120629EE2B926 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 73FBC91F0B352BDC2DC1B1F28A44CFC3 /* SDDisplayLink.m */; }; - 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 */; }; - EE647CD3B5E1CD9CE1C2F7A02392E651 /* Window.swift in Sources */ = {isa = PBXBuildFile; fileRef = 599A7B590ACA6E4769E8DF5F97A0063E /* Window.swift */; }; - EF352AC4AAACA09881FD704AC2C16988 /* RxRelay-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 81A5E3DEB4B9DE59D53FE036690BD6DD /* RxRelay-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF48C2C6207D901870856D25C606C268 /* Switch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58218155F660EF1DBF61626281ED8C79 /* Switch.swift */; }; - EF5F3CF8BBFDE4BEA2A2380A503569E5 /* JXCategoryBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = D4AF302D9A9BB92C286E7CEB1C01C8B4 /* JXCategoryBaseView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFD701EE0CC2AC793F1418A972229E72 /* SerialDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = E20129BA89498DA454383EA31532A751 /* SerialDisposable.swift */; }; - 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, ); }; }; - 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, ); }; }; - F2FB81C4DDAFF37487826F4D3058755D /* UIApplication+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C0B12F8031E29824D61B55627480C97 /* UIApplication+DDCategory.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 */; }; - F36CA376AA0BCA55321D2B980B86E53B /* UIScrollView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = DDE5A213E9E9BA7FD1BD441D0A1B69C6 /* UIScrollView+DDCategory.m */; }; - F39F0FA7DEC7786370959E557810E16D /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = E5F93560FC2C7A8AA71FC772667FF1A3 /* SDAnimatedImageRep.m */; }; - F3ADD3C9B0A9E40D1F76AB90B11836E2 /* GraphicsContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5E4EF4863936FF08D25C19F8C4247BE /* GraphicsContext.swift */; }; - 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, ); }; }; - F4EC9C6B2D3C5AF4A3A1A0037A918A85 /* UINavigationItem+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = F253094D312A5F09A2756F822CA0631E /* UINavigationItem+DDCategory.m */; }; - F50E3C6B9DC4A1AB72B4A64CB0ECFF12 /* AnimatedImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 876C9DC116F3E1CB0AD71A6143D7F925 /* AnimatedImageView.swift */; }; - F511265554632CF3316BED7F98787046 /* UIButton+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3679818231CE0E9FCBA514CCAC0D3F1 /* UIButton+Kingfisher.swift */; }; - 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 */; }; - F556A034452D6857FDC7D08CB07291D6 /* ImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A04C5D4A4446DD2265AF171D126DBF9 /* ImageDataProvider.swift */; }; - F5BB2BEFDB9F1EA2A0A168F46096A065 /* JXCategoryTitleVerticalZoomView.m in Sources */ = {isa = PBXBuildFile; fileRef = A4FACBB3E34B686DB4BCAF719C0DE592 /* JXCategoryTitleVerticalZoomView.m */; }; - F5D507923894C1C3619E377063D3187D /* Just.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA1C69EF18EA03567A5AB5856EA13A3E /* Just.swift */; }; - 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, ); }; }; - F602AEED3F480E3D5DC5EDB2C89BD69F /* UIImageView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F22983D02B664189D884F954DC89577 /* UIImageView+DDCategory.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, ); }; }; - F6860F7056AE1B0FB85AA3E7CCE469E5 /* UITabBarController+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 62AD7A36A987E5118EC1E481B7C276BD /* UITabBarController+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F781BF97A398896AC04F77060ADEEBB4 /* ObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DF9904B080AB593E51305111BF571A5 /* ObservableType.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, ); }; }; - F826069C26DB2285834D7AD2CFF5DE03 /* Single.swift in Sources */ = {isa = PBXBuildFile; fileRef = E8B3DD439BC3748B0A4B65C42D2854B4 /* Single.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 */; }; - F8BEC20DBF5DECBE816381A4126D56F2 /* DefaultIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B0C75E56DF0CA9B77277AFE7D089A7E /* DefaultIfEmpty.swift */; }; - F8DDC9D4E7FFBE6F0911E2D7A4DC9F80 /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 206578216F1E192490699C70AAEB7632 /* Queue.swift */; }; - F8F722B95C950969CB8FCA2543BFE113 /* RxCocoa-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 318C619A33D0896D66A964DC0D9550F5 /* RxCocoa-dummy.m */; }; - F912ACEC93342E5C7735FDE7E273A96A /* RxSwift-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 769BCA6DE32067F47887B1DB030BA1B6 /* RxSwift-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9DCAC1E9DC61227C751D79AD259DB21 /* UIWindow+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = ABB63A522A7029CFC415E409AC947BC4 /* UIWindow+DDCategory.m */; }; - 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 */; }; - 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, ); }; }; - FB9A0DF285D3A0D19037CC4899483705 /* ConstraintLayoutSupportDSL.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4041940F5DF4EA21CAA442DCF7056FE9 /* ConstraintLayoutSupportDSL.swift */; }; - FBB6746B94A475AC97B30EF69148E469 /* ConstraintLayoutSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E7DDD5F13C6D43D6067B784F42EA5B8 /* ConstraintLayoutSupport.swift */; }; - FBC89193D9C95C427AEB8FAAA0184E43 /* ZFKVOController.m in Sources */ = {isa = PBXBuildFile; fileRef = 99CE58B9ABC04158905A41A15EDF0313 /* ZFKVOController.m */; }; - 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 */; }; - FC9E8AFD6979B7D75E32BABB2F755CB7 /* ConstraintView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0B456A7535ADF8CD38B5EC1D33A1029 /* ConstraintView.swift */; }; - 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, ); }; }; - FF03AAD5CAF6A8B6906B0DA14DF6688B /* RxMutableBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = A88FDEC296D66AC6FD5CE6DEC2002FCA /* RxMutableBox.swift */; }; - FF6EDE90ECC0AB65FC2BDAF6F4D6F9E5 /* CPListItem+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8942D68167FF5EADAD9D52CBE09A1566 /* CPListItem+Kingfisher.swift */; }; - FF94689E991BEE3225A1EA5FB666BA2A /* AVAssetImageDataProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D416C341897110C59EC03D7ED822F68 /* AVAssetImageDataProvider.swift */; }; - 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 */; }; + B963E078896CC9DF2C37C06A438908DA /* UIButton+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82E906B38F805356ADC3DDA8356B65A4 /* UIButton+Rx.swift */; }; + B9AE7983EB3E754C9E655B15C36143B1 /* ZFPlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = BF3673B49F09BAC6900C8BA25BF4DCA2 /* ZFPlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9C9ABA204D0FDC45DEEFF82BB0D199D /* SwiftSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27899DD27632A9F27F15589704AEFFB9 /* SwiftSupport.swift */; }; + BA11AE6276ED0BCA627940CF2AA4A82A /* SectionedViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = F87CD582B270498DA448191B454F7B14 /* SectionedViewDataSourceType.swift */; }; + BA66672373B911EF7E9294E585BE2469 /* SkipWhile.swift in Sources */ = {isa = PBXBuildFile; fileRef = 81F261D35D9145315EE9B1752B5C7084 /* SkipWhile.swift */; }; + BA6FA6DAD56C74252C1BB4774FC719B0 /* Deferred.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60449961B188CDECAD8A7797E91F1A1E /* Deferred.swift */; }; + BA88EA9B56B8B66E7CF2F282BA496330 /* ObserveOn.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74D61A5F18EAD8FB7931E73FDEB53F1C /* ObserveOn.swift */; }; + BA9C4365F34B941E38477E5CA6E40387 /* DDMAGeometry.m in Sources */ = {isa = PBXBuildFile; fileRef = 56FBFF13F31D572E4FEC5D4FF410E3AF /* DDMAGeometry.m */; }; + BAAF532D103913901437253C9B1EC21F /* CPListItem+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDA6B5599AB2BE581DC91538DD516EAB /* CPListItem+Kingfisher.swift */; }; + BAB56CA5866822D64DB6936E197F590D /* ConstraintConfig.swift in Sources */ = {isa = PBXBuildFile; fileRef = FE4B0DCFE0808BFC11475CEC0109B703 /* ConstraintConfig.swift */; }; + BAB7A04FB6B2883C06D4EFB12CD4974F /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EF86C643214B5EBA4C54E281D711C33 /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB1D61B7D957E411C5CE3E21DAD20C6D /* ZFFloatView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E3AFACC2958AE263F4DC7AA4DFBA6C1 /* ZFFloatView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB53D3B70456942057B1D13A5B59CA10 /* ESTabBarItemMoreContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9B22AEFF5E21204956A6F923438DA68 /* ESTabBarItemMoreContentView.swift */; }; + BB5B24B08293ACDFCB6BC990AE38AA28 /* TakeWithPredicate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 315A20ED27D7DCA059FFFCE69D36FD1B /* TakeWithPredicate.swift */; }; + BB714B9D7C8AECD5513CD2452AD8687E /* _RXDelegateProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = DB23628E9D8ED8F2A61914339839CB93 /* _RXDelegateProxy.m */; }; + BB91F7BFE3AECA8494D5E2BFA3AE593E /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = D2D1C35B8672819CB5EEBA2B4A5653E4 /* SDWebImagePrefetcher.m */; }; + BB9CF389D15F65172C5D16936279DAAD /* FontUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07FAC442BD8DA7E807FEE112E2976373 /* FontUtil.swift */; }; + BBEC1389AE859C1F53CB8588CA32A54B /* ZFPlayerMediaControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C47797277477319BB9140FCFEB3972F /* ZFPlayerMediaControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC17BBE68BE2B0233A2B24429A134292 /* JXCategoryTitleImageCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A9739EFBFBD04AE760EC4819117A4E5 /* JXCategoryTitleImageCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC4248890A2765F68B3FCA279352ED4F /* BRAddressPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 14A340D7C2ECDE4CF0E54768D62FC895 /* BRAddressPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC9DE732A9A9A3E6BA2DBE6C7ACB0427 /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F4441A0FFB90E8AA6B3E93F98CCB2127 /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD22742FFE04F47ABAB9DB8CA7979C6B /* InvocableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDCC6811280C451A00DD856CA774FFEB /* InvocableType.swift */; }; + BD2BEEB68778EC69A7B04BC9216B4112 /* DDMATrackManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 77E921AF98A629DFDC2006CC62BAFCA6 /* DDMATrackManager.m */; }; + BD361E4E0FE4613901338D791BD13A5D /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 250EDFF28DF12E1484194728C0A13665 /* MBProgressHUD.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD42414ADB05335CCF6162EED02EB0E0 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 30DC0F7A4DF3F1BA2A24DAC6C68F6846 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD71DAAD9C863C0905780369F5942079 /* _RXObjCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B146DAB3B0F2D4D2148D23245570341 /* _RXObjCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD9CD207CEBF89BFAB1A91DD8BD28856 /* ConstraintItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6E54CBBC5A67ECE4121681BD7AF91C6 /* ConstraintItem.swift */; }; + BDEF2FB7D927B0B5EC012429474270DD /* RxCocoaRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B3F358B2F807033C4AE34511667F880 /* RxCocoaRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE1A80FF8E7EBE33844C18B9DE10DF9F /* EKButtonBarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5898EB1A38FE7DFF749668F98E44E76B /* EKButtonBarView.swift */; }; + BE5E45566FE7DF80AFCE321E3EB0FBCD /* URLConvertible+URLRequestConvertible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D6F7F53AE7D5AC577979EF2B3DBC8B3 /* URLConvertible+URLRequestConvertible.swift */; }; + BEDC9DBFBB0DC7DD1731D138A43247C8 /* ZFPortraitViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 472C95310D3E9326325D48CDD3A9B277 /* ZFPortraitViewController.m */; }; + BEE07291E32F6B0395830FBEA7E6F610 /* DDMAMapKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B2210F3FF8CA2A14D7B3543ED66017 /* DDMAMapKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEEDC7C8F0BE1AF9AFEC1B010A852A08 /* RefCountDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B241229C4FAF70B1CE6179F95E5F763 /* RefCountDisposable.swift */; }; + BF2F9348A80AD292B37135521A29FA03 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0435BCA4466F64061E559FD0669FBD4E /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF33F6BBCCC819D447312CE8ECC76F83 /* ShareReplayScope.swift in Sources */ = {isa = PBXBuildFile; fileRef = 552C265417EEEF4C733B3389BBB60B81 /* ShareReplayScope.swift */; }; + BF4B5199FBBD2138841B0FFE7D841114 /* RxTableViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 579DEE906EE62807C6C862D8B7313D2B /* RxTableViewDelegateProxy.swift */; }; + C01355012AE3DC761464C352BCFD4197 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 597F86830C65AB4C2AE7E9C009BDE567 /* SDImageLoader.m */; }; + C03CE4C033E7B4F00C02508BC4E7D135 /* ConstraintMakerExtendable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6403C3946D1BA757C724C323A04A5C56 /* ConstraintMakerExtendable.swift */; }; + C06003DD05A5FB9050C6BCE1DD128511 /* DDScrollView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82C98E5ED6C3EB19D7E7A32FC304932E /* DDScrollView.swift */; }; + C06198FCBBF8CEF254BBBFA81EC292F8 /* JXCategoryImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DD94D73905EA42D1EA845719E4B4606 /* JXCategoryImageView.m */; }; + C08497A34F7671FF094AA92DDB82CEE1 /* ZFPlayerNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 21D94222DA66800B1EE3962C2ED2479B /* ZFPlayerNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0A16AD03D4F121B5F6D22E51F6FD69A /* String+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB5422D5D752B443B060C8D7B74DE2F3 /* String+ZLPhotoBrowser.swift */; }; + C0B89620E69D080ED36F3741543A037F /* UITextView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F5F9E4CA39D50C9170C7E6ABB327C21 /* UITextView+DDCategory.m */; }; + C0C8B5A6D43875BA9B2C23CC0181071D /* DDLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5C51D602687153D93C1434D2A7431BE /* DDLabel.swift */; }; + C115C15858CF1B67C2654831E2FA0CD6 /* DDSwiftLog.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D0E3A13A93E334F804A60CCADB72F1A /* DDSwiftLog.swift */; }; + C13CCD0F2979956BF520659BC2826A70 /* ZLImagePreviewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9589C472B639E2997BEF5B3D29D15E86 /* ZLImagePreviewController.swift */; }; + C17721B52C2508B70D02605016E9D6C8 /* BehaviorSubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 386BCD60DA6DBEC2D98AC156696830CE /* BehaviorSubject.swift */; }; + C1B289E83BB181C98BC990E99E68FBC5 /* AuthenticationChallengeResponsable.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3E1209A1DDFD5B21D43A2F9842654B8 /* AuthenticationChallengeResponsable.swift */; }; + C254DB6AE2A08936E464E24A411F2481 /* Platform.Darwin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6AF5EC4EA0585807DF927CD85B2F9B19 /* Platform.Darwin.swift */; }; + C2690FBB1AF6367DBEFA11F552A14ACD /* JXCategoryIndicatorBallView.h in Headers */ = {isa = PBXBuildFile; fileRef = 92FA5A924736ECDB427DB40FFCE1362C /* JXCategoryIndicatorBallView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C27DA232D42C0C1A1860904474D006CE /* MultipartUpload.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6718DD82D44F6D3C76210C501B76CC99 /* MultipartUpload.swift */; }; + C2B53EB045512989EDDDE03B3592E068 /* ZLAddPhotoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A60B3AA38313A56486FCF25E55B677C /* ZLAddPhotoCell.swift */; }; + C313E645865798661616F4F3407D8BD1 /* ZLEmbedAlbumListView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09FA14CF689D02A1F55D530784E02BCD /* ZLEmbedAlbumListView.swift */; }; + C317B43DB6D2482017A763892A53203F /* ZLAlbumListController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4B00E006056B429B76EEC1C005ED1B9 /* ZLAlbumListController.swift */; }; + C324D23492EC6AD067A7DC7E705DACD9 /* DDButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8E49C8335D1CB2E2C2541F50E6DE520B /* DDButton.swift */; }; + C3396F46162BECCC47A36826B0CA1070 /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 82265B14E1FD3E8BCA9A4F14AE02C00A /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C34FE87B80895211485E9AB9298A5318 /* NopDisposable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2389F3A9528A09E817EEDEE24AE13F3 /* NopDisposable.swift */; }; + C3CFA478FB802F5A6AD209E5E1B34F54 /* UITabBar+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = C608E77AD8C1F7B28CFB6089484542BE /* UITabBar+Rx.swift */; }; + C40F08C50B0B6DDB15E4F1D6F18213A5 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D34581D4140A6F9CF8AFA006881900D /* SDImageIOCoder.m */; }; + C4BF6BFB52FEE82B04DB8EA2AE9E5BBA /* UIDatePicker+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2FD49D762AD163F73F2C7101303D81E /* UIDatePicker+Rx.swift */; }; + C56AD838C0FF689FEA8E5AEA32E94175 /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6F69FBF4C778AC5A21189B7EF2DF9B /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C581FAFB2BE7E18B9FCA322BE28127A2 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = A64069EFDAF134990E8EADE3999D32C9 /* UIImage+Transform.m */; }; + C5A65CAA184CBF2D7641A9EC731D4F5E /* JXCategoryIndicatorDotLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = A5CC4AC3062FAE8434E67C4666BDD667 /* JXCategoryIndicatorDotLineView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C65ED3D3286E2BFCEFB3291A3A776317 /* ZFSpeedLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 372B2A09B3DB27C695D55E8B92716B9C /* ZFSpeedLoadingView.m */; }; + C67841324248C9CA5635AE5BD7C3784C /* DDDate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75A9C1387CEC025461AA7DEB8F1EEE69 /* DDDate.swift */; }; + C685B4E57FCFFF4FC132CC2C886CC561 /* DDWebImageKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = AF0532E0AD4973657A6F9DEA3199861F /* DDWebImageKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C68C35A8E72BEE67B8BDE9E7FE89BE46 /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C6AC059E218D7AEFD5B53F1027C9ADF /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6FB7F94CB7899B5D36DFC3BCC9124F5 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AFBCF61F57F5531AEB77AD9F2F8139E0 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C70566B479FBFB82538A0E1C48E33C45 /* RxScrollViewDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5C202FD09C449B1262D8F9D37A402C1 /* RxScrollViewDelegateProxy.swift */; }; + C76E436525BA78E49B7646D419140C86 /* UIPickerView+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46E4D4512F13DCFD1212B1D250330DC9 /* UIPickerView+Rx.swift */; }; + C848D2C5E05796A51A2CEC91D99D186C /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = E1787850581C24FD42F96FFCB2A3F1C3 /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8522895B2B87B2C972E499ED4BCA683 /* JXCategoryNumberView.h in Headers */ = {isa = PBXBuildFile; fileRef = 72AE2733B31FE4DADA0345F29D71C093 /* JXCategoryNumberView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8BAF555CCD51F9E3DB61C1BFBA98C57 /* StartWith.swift in Sources */ = {isa = PBXBuildFile; fileRef = AC220FC7504EE55E196C0B41D8977731 /* StartWith.swift */; }; + C8C6AE75A2CC76D4AB883628ACC1D2AD /* ObservableType.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFBC3C60DDA0053689D7265DE7C13E2C /* ObservableType.swift */; }; + C8C9AFC10ECC9B37C45D0CB3F2982976 /* ConstraintDirectionalInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E4F5351005D4800B64116FC1E9C3710 /* ConstraintDirectionalInsetTarget.swift */; }; + C91C59A7EBFE30758FB1BE247A0C1368 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E5EA0341F654D3EB0B20F96F8C5EC6B /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C937FAAF47980A57D5304E8F57834E3A /* ConstraintInsets.swift in Sources */ = {isa = PBXBuildFile; fileRef = C94D52953BBC117BD07F900979E57072 /* ConstraintInsets.swift */; }; + C975D55EF9DA37044907022D01EFC501 /* MJRefreshStateTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 66A85E06C513B0B4F16F42B61FEA3043 /* MJRefreshStateTrailer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9A4CE5CAA3D142D609453B227BDF3CF /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 620077EF75E49FBE7A7363E2C6238E3A /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9F396942C9C75CE1F92E278B08B72D2 /* TakeLast.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60DB9996D9B6477BAC8C1D97D6F0449C /* TakeLast.swift */; }; + C9FF0064F6C55CD4E49ED41B2EA17DE8 /* EKSimpleMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59B4A65EEF12ABF3FDD775A6E06F6E12 /* EKSimpleMessage.swift */; }; + CA09255FDEA073F52E9B21618886EE8F /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 09B45C82D1FA696C05AFC98A4B0BDC20 /* MJRefreshNormalHeader.m */; }; + CA9B9D6F4655B5BDF8259DB842366370 /* DriveRouteCustomAnnotation.m in Sources */ = {isa = PBXBuildFile; fileRef = 50FD7549869B955E17B7B4D73F9A4A1D /* DriveRouteCustomAnnotation.m */; }; + CAB5A868A61CB97E7501C0E73726E34B /* DDProgressHUDKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FC77C5CB76B974D27342C88D20240A /* DDProgressHUDKit_Private-dummy.m */; }; + CB0DCDB203D1D4E3DBCF2931711D6A7C /* EKMessageContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BF6D1863CEF8B524B3F2C483E002C4E /* EKMessageContentView.swift */; }; + CB643F6A4F1AB3B77F69127BDC8184FC /* String+MD5.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62D28F4F2D17540F500472D60E991FC7 /* String+MD5.swift */; }; + CBB261988616F006F3D14E6E3E1A1567 /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 8479CE8561D03238FA223751194AC999 /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBC7F6CAD45F4BE6E058E1ABA62F83A4 /* DDZFPlayerKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F2030E904BD543CC02C9C1168BCF0EA5 /* DDZFPlayerKit_Private-dummy.m */; }; + CBEC084A900017F2E5219E7C514B1CA5 /* DDImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0BB39ACAB29B66006E95096B64A97A23 /* DDImage.swift */; }; + CC55C5B908ADB58120CCC05520A0BFFD /* Key.swift in Sources */ = {isa = PBXBuildFile; fileRef = C861125E2CD0971D9A3A7E91EA523A71 /* Key.swift */; }; + CD1FBD083AEB95AF2A233A5D251CC860 /* JXCategoryIndicatorBackgroundView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8718096511BDE69ECB5BDDCB166B1804 /* JXCategoryIndicatorBackgroundView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD25427AEC067E2E672CD4FCD03E1C0C /* JXCategoryImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FA31007B6D93602F27D3323C15FC96A /* JXCategoryImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD28B9F3F0DF1EAAFBCCFD3FDFF7E877 /* SchedulerType+SharedSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BD85E8CC11408A4E1ED3804A999F74B /* SchedulerType+SharedSequence.swift */; }; + CD8951BE0E2826BE9EF167B81CFEB1E3 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 105EC8E1085157934B6EEFC708A5705E /* SessionDelegate.swift */; }; + CE0C0F52BFDF580D264F9202A6BBE938 /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD687D223885424075A2E4EDD22B9C3A /* Queue.swift */; }; + CE0F45A1B0B179FC61EFCDCA4A23EF57 /* AnonymousObserver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63CD69FD29674D2322AA4E0DA868D754 /* AnonymousObserver.swift */; }; + CE4C9BD43001835DFA0CCA47681C8ACB /* DDBaseTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 509C44695E41EECE9FD48B08D9E1A161 /* DDBaseTableView.m */; }; + CE53DDB87C864CE0B303DD4BB61087FD /* RxNavigationControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71925ACFA5858C8058296B18B41DDA5B /* RxNavigationControllerDelegateProxy.swift */; }; + CE62E1D7E4274641C080C9AEC8E83D91 /* SwitchIfEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = ADD89F309186031E535C13E2627380C7 /* SwitchIfEmpty.swift */; }; + CE7215691C13E59A4ABB77F2DA1BC525 /* FormatIndicatedCacheSerializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE89E057EB4CA2D4CCD39793E73A103D /* FormatIndicatedCacheSerializer.swift */; }; + CEAF6058D42F63FA245DAD43FE4981CD /* UIView+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74E504B0B38E7652E8C8E4F3D5BC9B9D /* UIView+ZLPhotoBrowser.swift */; }; + CEF5ADCAD1251F127AC70054BB17179B /* MJRefreshTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C649053321E3BFCC61AC64B0C1A033 /* MJRefreshTrailer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF0542E7E27082F0AE761E78228DEB8F /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 92113897F9D3BCD0846AFEF58957AC41 /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF8D15E322415CC1628A88CB4935CF1A /* BRDatePickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 88225E31EB7AAE532311D31D022CBCE3 /* BRDatePickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CFA4B5FE834BF6F5947C854ADC9C5A57 /* EKAlertMessage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89BB2C0640C2B0E5D1D4D2E03014C4E2 /* EKAlertMessage.swift */; }; + CFB2F64B408066286A8B97937FF5FE32 /* KingfisherError.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29F2E88129E33053604F01B0A2345386 /* KingfisherError.swift */; }; + CFCCC0B66A4858FC59896A0D0B4111B4 /* BRBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AB144B8A6315A17571F0E392A919DCD /* BRBaseView.m */; }; + D01491958316B3D143C1F82521420141 /* DDBaseViewModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DC4906ADAF959FE5B7AFE7AC5DA0FA5 /* DDBaseViewModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D02E869FBC7503DA41EA8292A40085F8 /* EKAttributes+LifecycleActions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AA35FFE21EFE7F544B7669258B5B48A /* EKAttributes+LifecycleActions.swift */; }; + D04ED0B157FFAD652458CA96D31C61BE /* DDBaseNavigationController.h in Headers */ = {isa = PBXBuildFile; fileRef = CE81313328137EC08B4DF48C49E15834 /* DDBaseNavigationController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D10A97575FC17A740F4AD23FC87961E3 /* BRDatePickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = F7FA0481F1BE5BEAB9555866CB7E25CD /* BRDatePickerView.m */; }; + D12A6518AD01C22CBBD148C8FC550D6D /* TextInput.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B0D82385BA0EB5E491ADA1E1C8A41EC /* TextInput.swift */; }; + D1381434AA9A73F22A5686775B9BDD03 /* EKAttributes+FrameStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23E262A76C5B93AEA1EBED9CB7FCD754 /* EKAttributes+FrameStyle.swift */; }; + D14356BF87F9E91736CB650348922BB1 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1CC91C3C6F18C1A2E4AF06AD477BBFD /* NetworkReachabilityManager.swift */; }; + D1C81C32A93CCE7A35A72FC1D5FFBC75 /* DDImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7E9B643D85DBFD37D8B69E4BC25DF55 /* DDImageView.swift */; }; + D1C94411A828DF36426EEB04ACC7385D /* car_xingshi@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 22F11DA069DD29CE65443003A51FE726 /* car_xingshi@3x.png */; }; + D1CA27FA62FDFD654437AFE802F0FDC1 /* EKWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A141F031A91702235B81A1981810925 /* EKWindow.swift */; }; + D1D3FC269DB485011A5C792F187BD964 /* DDToastKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D6861993DAD85F0DFAE2BD03B5F7A613 /* DDToastKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1F58981CC9B866CA76BD812F0DF5E18 /* BRAddressModel.m in Sources */ = {isa = PBXBuildFile; fileRef = ED18172DE819A87D89204AFF09EBCE1B /* BRAddressModel.m */; }; + D269044D982531C2EABA7BD3F34101D2 /* CGFloat+ZLPhotoBrowser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 667136F6DC478C4D4230F055DDF8BA9B /* CGFloat+ZLPhotoBrowser.swift */; }; + D30295702271BA26222EC0E8D2829E63 /* EKAttributes+UserInteraction.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6588ECF58B11157B57FA577E1004B8D2 /* EKAttributes+UserInteraction.swift */; }; + D3A692A8D6778B0C530C667E0D2645F5 /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = BF9933C238A0EFE812D364F8FEA7C5B8 /* MJRefreshAutoNormalFooter.m */; }; + D3B18F24C311A6413C7DB4525FB526AD /* UICollectionView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D0B85E700D10B3D96D321CD150B9585 /* UICollectionView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3DAA79DECE865BDCE076290194B4033 /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 0269F9F0417F84BB1AE11F8BD8C62FE4 /* SDDiskCache.m */; }; + D3E51D45C66CAF3FB67B1B8F63B71CEA /* UIFont+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E5FAFC9E4CCA59344AC693449DB8A51 /* UIFont+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D41706C216134FC77605103354F07C42 /* ZLAlbumListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB14C58F534101E8EA2AFBA7D43B6227 /* ZLAlbumListCell.swift */; }; + D45471D1E2289BEDB132AE8868F21AAA /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 85A77A80037CB2ED1FA9E44DDFD6D03E /* MJRefreshGifHeader.m */; }; + D4DE36B575B65B54091CB7179DDE1242 /* EKAttributes+Duration.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F72F44CBE8D21DA5C8B40CAC4E77DA1 /* EKAttributes+Duration.swift */; }; + D4F67ACDCA6B952008E043750BAC4940 /* JXCategoryIndicatorProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = FE6CC7EB81C2990554D85AF29F2C0DC6 /* JXCategoryIndicatorProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4F8592FD0D34487E8B7AE1A8DBE70EB /* ConstraintInsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8762C90F0EE6C0086B17ABA2A23C6FC /* ConstraintInsetTarget.swift */; }; + D509C61F07A0066B5BD32F31E7F095F2 /* DriveRouteCustomAnnotationView.h in Headers */ = {isa = PBXBuildFile; fileRef = D3FB6F056F8A12D444682DBA0CE25994 /* DriveRouteCustomAnnotationView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D54C1EB233C3DFF0AB1C78D665B7A5DF /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D55C1752A31C6C0A5E904BF38DBE902 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D552F57595574A84A82587BF008F32BB /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F2D1811B0CE60B062C36A276194EE6C /* DispatchQueue+Alamofire.swift */; }; + D591717337E72C406E7C3F0BF9F4907B /* UITabBarController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1A39B00A644818BCB0CA5B5000A6DEA /* UITabBarController+Rx.swift */; }; + D6696173A60A63EAC3F30D4BBC21C72E /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = 6239957C7FB0A9E328D7664131986E99 /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D67DD808CEBAD7F92D692B574F73DE93 /* Cancelable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BA0D50EA6D6151A95ABB359E74B3474 /* Cancelable.swift */; }; + D6E51D328530E74EBF3DFBA6709DE9D0 /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B4C3C9C8871C77E6AB3DC47E8E275CD0 /* UIView+WebCache.m */; }; + D6FBE35DB2D7D8D6021E703699172565 /* PrimitiveSequence+Concurrency.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EE2BA020EC3D26D090626F0BAE91E20 /* PrimitiveSequence+Concurrency.swift */; }; + D7021695D72DB0DE5E5EEB63D13D5D14 /* DDMALocationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DE4B683C0352BB899D3372814A4F3AA /* DDMALocationManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D76130AD70A7483771A8051BE486A761 /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DBF46FC17F26606228D9C7D49EBDFCA /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D77CDC3644E7CA3679CC690E691C7D4A /* ConstraintRelatableTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2817608EDD36410A5DB4FB72F51602FA /* ConstraintRelatableTarget.swift */; }; + D781F4490C10DB62CD3325AED7C9EE27 /* UITableViewCell+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 762E91082B5B8D3E5AA4FDC165589895 /* UITableViewCell+DDCategory.m */; }; + D7D5D849A72CF175A46E9C87F810FFAE /* AnimatedImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73FFE0918E3264C28FE559685B7134DF /* AnimatedImageView.swift */; }; + D8423F6023580C058F1DDFFFD1779656 /* OperationQueueScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40F4E5C25156724C2F2D3CF57BF48F05 /* OperationQueueScheduler.swift */; }; + D86F0D26E943BB73BBB29356FD203D18 /* ZLAdjustSlider.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5508EA6B5659E8AD9132BE4C3DD44CB /* ZLAdjustSlider.swift */; }; + D87C8DA2C35F94CD5157A6F37F9A9728 /* EKAttributes+PopBehavior.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87DD00BAA79B5606679A2FD8E1301979 /* EKAttributes+PopBehavior.swift */; }; + D88C06AEB111734BAF5FBCCA256A5D2E /* Binder.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC8044DB1AD06002A95B1ECAB3E16F00 /* Binder.swift */; }; + D8DDE2D559F66BDDAFAEBD52C6E4176C /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 640F3877CF8ACAA8F297346C0E90EE19 /* NSBezierPath+SDRoundedCorners.m */; }; + D8FD93FBAC2166F333BA48C4D726B091 /* ZFUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = D9B630665C6BF531B726AB0B13F27DDE /* ZFUtilities.m */; }; + D941B55ACBC7402786A5668FF2548967 /* DDMAMapView.m in Sources */ = {isa = PBXBuildFile; fileRef = 457746032015541C4109E295A482AEA4 /* DDMAMapView.m */; }; + D9608FB125F849D4B3C79BFC4B8023C3 /* BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = F82143FE20D3B510205938101A376418 /* BRPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9AC52596EBDC826499603EC3A3A4DA0 /* DDUIGestureRecognizer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 97AF1EBBCC9C27F141B9E1D6FC7C32AF /* DDUIGestureRecognizer-dummy.m */; }; + D9B8B43830362EE0C77A55B6CE157ECA /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 07ED5DCEF943738AA5553A19DAFB929F /* UIImage+Metadata.m */; }; + D9DFB73AB4BE6CB973F6F316B2A6A765 /* UIViewArray+QuickLayout.swift in Sources */ = {isa = PBXBuildFile; fileRef = 58D96755ED59599A7393B524B505DFDD /* UIViewArray+QuickLayout.swift */; }; + DA39F13925A217C94F8582009262EAA2 /* EKWindowProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84E7276764C1790CA4337E2C99402488 /* EKWindowProvider.swift */; }; + DAE8BA9F7C97C7BD3FBE5D07A29E4C24 /* ConstraintMakerRelatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3E4DE1E34CD30F381F967C1C8441B44 /* ConstraintMakerRelatable.swift */; }; + DB15F0057F1CC17F374030B02456DBD6 /* ZFSmallFloatControlView.h in Headers */ = {isa = PBXBuildFile; fileRef = D63E79734F0397E8D93247BDF0B77F9E /* ZFSmallFloatControlView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB534E0B9BCE28F670003044F0242932 /* NSBundle+BRPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = E666B78DFFC402ADD04FD15B855247B2 /* NSBundle+BRPickerView.m */; }; + DB546CEBEB12A61D98A707A776672188 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = AB7E7A62BC31BF4713857CFC04DBEC29 /* UIScrollView+MJRefresh.m */; }; + DB59C0246A9B17E692606871D09C6FE1 /* ConstraintLayoutGuide+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05A2442920474C19EA2B219E1A9BCB07 /* ConstraintLayoutGuide+Extensions.swift */; }; + DB8E1097EFEC248D83112C45B37D7B88 /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 861CFAA2C8340AA35A40C6170A65B656 /* MKAnnotationView+WebCache.m */; }; + DBA4188BE9A5BE8EC9169C81F0D27C31 /* UIApplication+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B26A5E3DB3AD5EE64E8DACAC02AE77C /* UIApplication+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC2AD54F59773138F1461A45C2F19097 /* ZLPhotoPreviewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 02AFDD1B3E0ACC40D62C77E695872409 /* ZLPhotoPreviewController.swift */; }; + DC4FF13885DE12A4891629B6E2724847 /* ConstraintMakerFinalizable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 171C168492DAC2775794CCA4EB6C892E /* ConstraintMakerFinalizable.swift */; }; + DD0D82EA0192E44DA541CEC3B4A673CA /* UIView+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AB31A604EE13F7F78D7A3D5138A9F5A /* UIView+Utils.swift */; }; + DD13D1582CFCE65C448C2B56AB55ADB1 /* DDAudioService.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8A3477E5056C45505EFD33642952734 /* DDAudioService.swift */; }; + DD792E3784D6D144A65A189A78A58428 /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 70C02CBCD9F2AE8933C2B300352DFC04 /* MJRefresh.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD7FD9534175BB8CA05C83AA8BDCF23A /* DDAudioPlayerKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EA2CA4BE59635BC23B48410658B33970 /* DDAudioPlayerKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDF9F1CD51A0B6E3FAEEC690269482E6 /* NSSlider+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22D9C5FE1273030D15B6763B6B54B6B7 /* NSSlider+Rx.swift */; }; + DDFE00C961BDCC08086F9939477303CD /* DDTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 786DBA7A836D01551A9F77B34469496B /* DDTextView.swift */; }; + DE2FDB7E8D913DD9CB530D47DA116ED7 /* ConstraintOffsetTarget.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2ABA5E2F457E5ADA19F79B14FED379F /* ConstraintOffsetTarget.swift */; }; + DE4F489481A1E3AD69973B943DE2E414 /* DDBaseLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = BDAAF4C61B6219986B56EB6F1BE13C49 /* DDBaseLabel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE63FE12234373986128740BCD872713 /* Observable+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = 361F71DB6C83855F5354208ECE297AD4 /* Observable+Bind.swift */; }; + DEA9C3D6CE995A50A590F7844D364C53 /* ZLCustomAlertProtocol.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C2AE8803DD2ADB3E9505E1AC253E5EB /* ZLCustomAlertProtocol.swift */; }; + DEAAA0FB6DAC4E8D6E9F37F3FFF7FAE9 /* DDBaseViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = BDB96E4185166C4E25E6A955836EB0EE /* DDBaseViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF217CDC17FBC6B0860732A9547F6805 /* ZFNetworkSpeedMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CBC6225504BE0C1B1C22A9B7E0D5004 /* ZFNetworkSpeedMonitor.m */; }; + DF7FC6063E9660DF8D289538B2125134 /* BehaviorRelay.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0230679B106F8DB70B542FBB92921FF /* BehaviorRelay.swift */; }; + DFA46412CF2FE571B31ECD6CC8EEB9BE /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D205DA3C2D498E828945512898EF98CF /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFC965A9E961709D6B1AAF52AE44B4BD /* NSMutableAttributedString+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C15303EE04DC081B316BC1D21CF4C1 /* NSMutableAttributedString+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFF1DB48DB0640CE62267571AB775F15 /* DDAutoUIKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F851C058CDE7A9B9458BAA5D5A2FC537 /* DDAutoUIKit_Private-dummy.m */; }; + E017B4EF323A0EBD732F33B9C92FBD0D /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = BF14882D2225FFAC5F8C9AF35B7D8D95 /* UIImage+ExtendedCacheData.m */; }; + E01CDA460DAFCC348AFF41C35B802C89 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 699ECDE0EA00BCCC8C9962922D1A441B /* UIView+MJExtension.m */; }; + E034031C40FE734AB1A4ACF321EEB12D /* RxCollectionViewDataSourceProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 073916E9CDC05F41D3F48519DA970F64 /* RxCollectionViewDataSourceProxy.swift */; }; + E0528E490DB59F03F3D21D2509CC36E9 /* EKContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D77AF7173B411EDDD82CE635A945D855 /* EKContentView.swift */; }; + E0535C22C58CFE61C7FC72412989EE7E /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AEE0EF6ED79650A924807A8C4FE9EDD /* SDFileAttributeHelper.m */; }; + E07A33D6350496FBE035CB6E87A58D23 /* MainScheduler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E1075BF5F2D723818A240EB48553232 /* MainScheduler.swift */; }; + E07CE30D4CB7B2045E1983E54259D54A /* car_xingshi.png in Resources */ = {isa = PBXBuildFile; fileRef = BA57B5CC8EF5DF8F462BB82F9A811411 /* car_xingshi.png */; }; + E07F5D56A6657C9297ACEF8B1E6047A3 /* ZFVolumeBrightnessView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F911AB245724CAA5E6DFF24AAF6038A /* ZFVolumeBrightnessView.m */; }; + E08BEB9077BB6AFF3D3924940A2F0E5F /* Zip+arity.swift in Sources */ = {isa = PBXBuildFile; fileRef = B81EB1FAB8782845950E12E81E38CF8C /* Zip+arity.swift */; }; + E0A97352EFF47010A3449A81255CE5FD /* DDCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D6F758731ECC708DC7F5F80D5AAF0626 /* DDCollectionView.swift */; }; + E1FDB8D42137D8BF8709EE551862079B /* RxCollectionViewDataSourceType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BAF498497DC998D3292C123DAB26FC8 /* RxCollectionViewDataSourceType.swift */; }; + E24B4E923380A82510C81933D8ADEBC0 /* Asn1Parser.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9AD58267617D080A644D15C5953A3DA /* Asn1Parser.swift */; }; + E27EFB8F48312FC0268C6B922BA3474E /* MJRefreshTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C9D5ED4DEBECC5E19644632ECE94707 /* MJRefreshTrailer.m */; }; + E2D1C8236E08CA248E758FF3BDDD2BB1 /* JXCategoryTitleImageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 763C41B62183DDB92CDC296FD00E1E5C /* JXCategoryTitleImageCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2D3345435E9F597C1445F09F5BD5FF4 /* EKAttributes+Scroll.swift in Sources */ = {isa = PBXBuildFile; fileRef = 733931B6C2A40207036CBE720D7C8314 /* EKAttributes+Scroll.swift */; }; + E2EF5387D71F2D5DEC1F9C0FE6026C1A /* EKEntryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46D66D101D84367BD65081A1A244748A /* EKEntryView.swift */; }; + E30D053236494B7F13FCF9171D8EF69A /* UINavigationController+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDD03AB7725994DEFC16D81601725E5D /* UINavigationController+Rx.swift */; }; + E317DBDCFE4041AB9E81DD032E67B4E0 /* UICollectionView+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 21DF8C1CDD93BE8C608B10C7A99FF308 /* UICollectionView+DDCategory.m */; }; + E363802ECE35698B79AD258AD2CAFB6B /* UIBarButtonItem+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = AA67B0669E9AF92C8466EE207049D025 /* UIBarButtonItem+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E393F511073EAC13747E1D131A84A303 /* UISwitch+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CB00C1EF4360C618CCA5A38F658946A /* UISwitch+DDCategory.m */; }; + E3DA37159E09C710B735DDEA47F754CE /* UITableView+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 79DE57AFCF3D85D40852FAE0F484297F /* UITableView+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3E428F69D3102897E73A39800546374 /* UILabel+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = B28E906FCB5668B964BE098100101BC0 /* UILabel+DDCategory.m */; }; + E414A7D74C5C1781D5E34BC7584F3B17 /* Single.swift in Sources */ = {isa = PBXBuildFile; fileRef = 26C6DCC4AA19DF0161F8F6C6B39FAA5A /* Single.swift */; }; + E425B1792B00EFB153A9BCAC85B730F4 /* DDViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D75519C34B3A8A8EE799400C3E4A77B4 /* DDViewController.swift */; }; + E42BF0E600D0189F7F9AD5329D385334 /* DDTextField.swift in Sources */ = {isa = PBXBuildFile; fileRef = B52DFFF71243EB8C7251CB1564835CD0 /* DDTextField.swift */; }; + E4BD9C28DA353A9E5DC1881B89BB4F06 /* NSObject+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BFF040C3B7EB4B06F8327F826C92823 /* NSObject+DDCategory.m */; }; + E5B3C04F705FCB65441CA1FE35CFC536 /* GCDTimer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83B889CEACA11362D80DA70D19EEDB98 /* GCDTimer.swift */; }; + E5F6C631FE32C41FFA4610E64AFEBEF6 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 20DB2458655CE5D438AF415CAA3AB252 /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E60B45E5647579F76C24F8451C2EB8F7 /* RxTableViewReactiveArrayDataSource.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3E34A1BE9FBEF78F5423C6DCCC3CF1F /* RxTableViewReactiveArrayDataSource.swift */; }; + E62A2816F9FFAF952C0E47C31B28D461 /* ControlProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4ECAECEC96421914C54723F1E59D553E /* ControlProperty.swift */; }; + E62A3E33CD01B815039CCA9622117DC2 /* UIColor+JXAdd.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E7900EE3DEAEC68257F18737BACB0E2 /* UIColor+JXAdd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E674B743DA97272AC8135AF21CF22F80 /* KVORepresentable+Swift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CFC001257A1B40FCBC356E384C2A4AF /* KVORepresentable+Swift.swift */; }; + E6AAEB8C90F798D2176874B496FAED5B /* ZLPhotoUIConfiguration+Chaining.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46B8A95C40EE03EF5115D2F1168FD571 /* ZLPhotoUIConfiguration+Chaining.swift */; }; + E6C25311313440AB703A5E29BB3E7E50 /* car_xingshi@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 658515FE76D410592A4AB7B469FCB111 /* car_xingshi@2x.png */; }; + E85D1D1E36A4822B39A55D63E2B9F73A /* Infallible.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CAA888F101891B4378A6B3BF94B6670 /* Infallible.swift */; }; + E89EA5216E074A8E2073062D8AF5EA40 /* JXCategoryIndicatorLineView.h in Headers */ = {isa = PBXBuildFile; fileRef = F68FD20B222A0BFDB5623996F6B90B40 /* JXCategoryIndicatorLineView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8A2CDF5B1D642F2C3225619514140C4 /* EKAttributes+PositionConstraints.swift in Sources */ = {isa = PBXBuildFile; fileRef = 493FE6A76079482FF5CF8F3C2444570F /* EKAttributes+PositionConstraints.swift */; }; + E8B4A75393B9AD18F9E08CD7B831B06D /* ReplaySubject.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7DE11FA5E00DF3515BBD00DB6F27E24 /* ReplaySubject.swift */; }; + E8F5C10BEE66E0A8E67F786EE75C4DE3 /* UISegmentedControl+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 167FF3D82D5CD13770F8DFA047AFF24E /* UISegmentedControl+Rx.swift */; }; + E9466C49123B6DB38997B61FBE1A864C /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 332A98704F5F6B076FE302371087FD46 /* SDImageCodersManager.m */; }; + E94B3EE66EBD1003468410DFEEBCA688 /* ZLPhotoPreviewPopInteractiveTransition.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7961ABD51451CFC2B29850BFE17D2E8 /* ZLPhotoPreviewPopInteractiveTransition.swift */; }; + E9D877C0FC7A2087F6B5FEC67FFD4CFE /* JXCategoryView-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D72C15D32548DC9CB499C1F695B3FF78 /* JXCategoryView-dummy.m */; }; + E9EA12936E932E05E380C54600512522 /* DDBaseViewController.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D15783D27881441824AD940668BCBD65 /* DDBaseViewController.xcassets */; }; + EA20E7451CE67E411DAE038C6EE49472 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 74371AA102C375B6A9C05FF5FCA3DA2D /* SDImageCoderHelper.m */; }; + EAAE7A65A7BB8F837B75CA0D05C869F6 /* UIButton+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = D8FCED600A05B1C2B846D30CC3AAD57B /* UIButton+DDCategory.m */; }; + EAFB2E51C63313485F6E30594EDFA35C /* SchedulerType.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF4A9EBF87F1DA2CD099964C69FF8287 /* SchedulerType.swift */; }; + EB34415A0817B6F0EA97C89773A6FB99 /* ZLEditImageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A26FEB6228C891C1DBC837930AAC595E /* ZLEditImageViewController.swift */; }; + EBCEE8F5579114E5F617B63B87CF4B48 /* UIView+QLContentWrap.swift in Sources */ = {isa = PBXBuildFile; fileRef = ABB640A1023AB534787D176E8F155036 /* UIView+QLContentWrap.swift */; }; + EBD415C26D6A34A0BD3DC50D43856960 /* ZLAnimationUtils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0292CFDB14D218ACA7263C4A66E5DF49 /* ZLAnimationUtils.swift */; }; + EBE1011A4311FAA0C0D0B82BA0CF8132 /* PrimitiveSequence.swift in Sources */ = {isa = PBXBuildFile; fileRef = 772D442B7B2EA1769821B341F24CC8B9 /* PrimitiveSequence.swift */; }; + EC2B3804DBD7244270FE3CBB4076AE22 /* Bag.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5D441FC219D479DF04DC7900A078A9D /* Bag.swift */; }; + ED3F8719AE0C4D9464C372D0CB5D2E14 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 90CDCC90EADCC2E4AFE40E1023BD763C /* SDInternalMacros.m */; }; + ED9F225882E966D67FD120629EE2B926 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = CE4A5A2856DE56035A12D615A3F3DD8B /* SDDisplayLink.m */; }; + EDB63409EB6B2D945EB157D8A6CB1E4D /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 82EA83B3606AF5F817DB227D91D6110B /* MJRefreshBackFooter.m */; }; + EDBF2DA81990AD75C96C785546A0B020 /* Observable+Bind.swift in Sources */ = {isa = PBXBuildFile; fileRef = E98475F508A2F9237422D7C1BDF72D0C /* Observable+Bind.swift */; }; + EDC4065EC27A50BCC6B13FC3ACD00185 /* JXCategoryTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E7572BCA0726F4BBDAC725F8D72D30E /* JXCategoryTitleView.m */; }; + EE379B4848EDB17BE1C4D32E97B930A8 /* ZFPlayerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7030BC12F220D1700C320AACB831A219 /* ZFPlayerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE4F330BFC8B694E49B714C8A93CC916 /* RxTextStorageDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7097C3D39B1944CBC369F5EE9EB0271 /* RxTextStorageDelegateProxy.swift */; }; + EEA669C01B476133983515D590C6F707 /* Observable.swift in Sources */ = {isa = PBXBuildFile; fileRef = B53D381A91BA84278B60E04E0C85EF0E /* Observable.swift */; }; + EED94B9C0DDEA302F0DA691B4B28088B /* NSAttributedString+DDCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F3659E30F0D0A3150789145CFDCDA2D /* NSAttributedString+DDCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF5F3CF8BBFDE4BEA2A2380A503569E5 /* JXCategoryBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB3754C4B17E0A81AF818425D2D8AC8 /* JXCategoryBaseView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFDAD202473F80F1F86AB579EF724B89 /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54D04CC609BE536D46BF57DFFADB31EB /* Image.swift */; }; + EFDB078033B7E9875333F75B72C1BA2B /* UIScreen+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = A624119E6D69EB3DCED1B6A872C9C67C /* UIScreen+DDCategory.m */; }; + F001B72EF2941419AF8310B30D8FF42C /* IQTextView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 987456B03A4C2A7639CFD6B8CC8245B9 /* IQTextView.swift */; }; + F0133CE9DC3178B35F2AF1F29D535F7F /* URLSession+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4374971A6F77EA988C483A0D5EB207B4 /* URLSession+Rx.swift */; }; + F07D944FB9EE7D69319AEA7DF8818876 /* JXCategoryNumberView.m in Sources */ = {isa = PBXBuildFile; fileRef = FEE9A951565F7F1CA336E443C8E6838B /* JXCategoryNumberView.m */; }; + F0B4282A102ACF883C5664EE6EFB2081 /* ZFSliderView.h in Headers */ = {isa = PBXBuildFile; fileRef = A24AB7AE2B655E74C3508490DDB36F30 /* ZFSliderView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0BFF5608C4202CA0453E53F57D91514 /* DDProgressHUDKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 94482E4EC568435E64B22D007C4410AC /* DDProgressHUDKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0CBAC911BFC2128051F421FAE5725E3 /* TVMonogramView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = B95C7BFEC1CDF29695328A9DCF746795 /* TVMonogramView+Kingfisher.swift */; }; + F0F38230060D730610F5815650288F1A /* DDZFPlayerKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B9552FCBFE21A3BC81FE557772B549D /* DDZFPlayerKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F17BED9A66F08C6647EB4CCED0A8EA8C /* DDBasicControls.h in Headers */ = {isa = PBXBuildFile; fileRef = 118B5424D4A9C2AF765BE1B9D3E9B2C8 /* DDBasicControls.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F19174B6F08BC6807F7168938A624447 /* NSObject+Rx+RawRepresentable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85DE57206B61F81DC9B2B0AB92F8EFBB /* NSObject+Rx+RawRepresentable.swift */; }; + F1B8D62196F1AEB3E7F0D9B1EFE4FD15 /* ZFPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = BDB09E101FA047859063CEE71FB35C93 /* ZFPlayerController.m */; }; + F1CD6661FAFABF16CD930C30A0566C47 /* JXCategoryDotCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A08E155C84481CC37D8F173D3BD1B67 /* JXCategoryDotCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3128567652CC62E62B1B8DBEEC5A304 /* UIEdgeInsets+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 429B086293BF9ADAF7607AA1E330A07A /* UIEdgeInsets+Utils.swift */; }; + F3297C24B7F6D6AA6679633470AFD387 /* DDBasicControlsKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 92A01A283164F32E1D091910FFDB82BA /* DDBasicControlsKit_Private-dummy.m */; }; + F39F0FA7DEC7786370959E557810E16D /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 80ED5FFB60A048F9671F865E87B8FC10 /* SDAnimatedImageRep.m */; }; + F4B076723D3EEFEE244EE1009B3CCF28 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 959BC3BA53C035A9502FA78704B1A8AF /* MJRefreshBackNormalFooter.m */; }; + F4BA1100C7409E860A413BC0F2B3AEA4 /* DDBaseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 490AD0FD50CAEABE5F4B573941F31CB4 /* DDBaseModel.m */; }; + F4CEE8AEE1D3CC874439E8E5988CB8AC /* DriveRouteCustomAnnotation.h in Headers */ = {isa = PBXBuildFile; fileRef = BD5BB61FB0ADB6B8A9833127A6FAC28E /* DriveRouteCustomAnnotation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F516F3D6A4D4372838C9043170D9D653 /* DDBaseImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3771D2E74B9C62FD95124980CA0AB61A /* DDBaseImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F525906C5A016C296FF10CB143F624BD /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = C33E70937C0C17785ED8150A2138651B /* SDWebImageDownloader.m */; }; + F5BB2BEFDB9F1EA2A0A168F46096A065 /* JXCategoryTitleVerticalZoomView.m in Sources */ = {isa = PBXBuildFile; fileRef = D8CA2A33931DC2579FC0ECC78A3F32F5 /* JXCategoryTitleVerticalZoomView.m */; }; + F5D8728188EC93EA5FAF5CA84A2C3E3E /* SwiftEntryKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F619A10A1AB63AB47E4B0D759213EE3D /* SwiftEntryKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5E07701094C970A9458F8BFDAB4F3B1 /* BRBaseView.h in Headers */ = {isa = PBXBuildFile; fileRef = D594020C6C1BD9A7CDD5BB9F2FCD59E5 /* BRBaseView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5F6F5A843B2EDC770A466CBA835F1B1 /* DDBaseCollectionView.h in Headers */ = {isa = PBXBuildFile; fileRef = C02EBA2F1450096B82D9C2AE4C0B646A /* DDBaseCollectionView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F610D4583B86C6599C47292F1D1AC91D /* UIBarButtonItem+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = 069987F7BCEF63BB37E8B372A97D7FCE /* UIBarButtonItem+Rx.swift */; }; + F6771DBD2D0EFBDC47030E698BA56780 /* JXCategoryDotCellModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AB87EA43F2DBA3EB4E0AEA06B6C413B /* JXCategoryDotCellModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6E8AD2760C006453509EE8847788AF1 /* Just.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0FCF529FF0989694BF4A872A31F903C /* Just.swift */; }; + F7367786A8702EEF93973DD8B4C059AF /* ImageView+Kingfisher.swift in Sources */ = {isa = PBXBuildFile; fileRef = 715F07D106B63A04EA7B7A5AE0DB3E3A /* ImageView+Kingfisher.swift */; }; + F7869ECB08349199C0FCBC6ACA0DFA89 /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E76E03EB8A76B24B807AE35F123F29A /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F79338C3D732C666311E9A66D3611901 /* JXCategoryIndicatorParamsModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 31ADC7D2323622EC9BA4BFEB35C6C818 /* JXCategoryIndicatorParamsModel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F844A55CF6790D853D264312D6F883E0 /* UIColor+JXAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = 09F7B2E1419480FFE07D7AC38CDF6DDA /* UIColor+JXAdd.m */; }; + F85954F8ECD9E80718B093791EA95425 /* IQUITextFieldView+Additions.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE25309EE1995BE5DFA583C1FDFB26D8 /* IQUITextFieldView+Additions.swift */; }; + F87C3F12FA754F2BF1068C663D2E8EDC /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = 09D5F331C929DE88E6D493A76A9C52ED /* SDWebImageError.m */; }; + F8A7F261739C12A8135E4A47FFA7772E /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 5779AD5E1855533B91C0B5650313C5C9 /* SDWebImageDefine.m */; }; + F8DDC9D4E7FFBE6F0911E2D7A4DC9F80 /* Queue.swift in Sources */ = {isa = PBXBuildFile; fileRef = C62BA54A7F1E2E94374E39E7C525C272 /* Queue.swift */; }; + F8F722B95C950969CB8FCA2543BFE113 /* RxCocoa-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CDFAAE0F3C1ED0E8A418B1C2E5D4B11D /* RxCocoa-dummy.m */; }; + F9E6C48FEF11BDA55B335E1060721D74 /* EKColor.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A2BCF52911FB19A8EE866CA74632138 /* EKColor.swift */; }; + FA145D73018E7D2FB142938415DB42E5 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 700FF3BAAB754294200B6E7F3EF8D104 /* SDImageFrame.m */; }; + FA398422E4E9153C85204F33651B6414 /* UIColor+Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03C9A785D0B18A0810916235B2933B6A /* UIColor+Utils.swift */; }; + FA46D15B11235046C6234111666D3BBE /* DDDateKit_Private-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FEE6C2A27AE60D16AC0E2456CDB32915 /* DDDateKit_Private-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA71D909F384F5837CDE59FAFB4F006A /* ConstraintAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2683005BB6DEE1F6A9C38395DCA7D7 /* ConstraintAttributes.swift */; }; + FAFDF4C22D2BD1559CCFF28406991AF3 /* UIViewController+DDCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = CF22AA1DB2CE9C90A37E1F17D80DF614 /* UIViewController+DDCategory.m */; }; + FB16503E903E5B60EE15B0DD4D8562D1 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 05EE5B7FBF70FB0D3E8168D27131C004 /* NSData+ImageContentType.m */; }; + FB543E6A5F8C2EC92FF45630C6D5F49E /* EKAttributes+Presets.swift in Sources */ = {isa = PBXBuildFile; fileRef = 092FCDE3C6F546FA0AFC66C4FC04738B /* EKAttributes+Presets.swift */; }; + FB726649DB4AFB1EF71F4D6F6F4FA5B0 /* NSDate+BRPickerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D3250497A860AF8EB84E42556395233 /* NSDate+BRPickerView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBC89193D9C95C427AEB8FAAA0184E43 /* ZFKVOController.m in Sources */ = {isa = PBXBuildFile; fileRef = B063FA266C282EAFDB9AA12BA5BFDF08 /* ZFKVOController.m */; }; + FBFC887E3133465DDFE6B3D8A52EC67D /* DDTimerSwiftKit_Private-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BA3686CE2A2D9793C12B1A45C688717 /* DDTimerSwiftKit_Private-dummy.m */; }; + FC061D954352F832FBE08C01973F7DF7 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75749C34D0921498DA5CC1013286AF0B /* ResponseSerialization.swift */; }; + FC16BF2E23D7664C890EBD6C6C6A12A5 /* DisposeBag.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03257450D74F8F629A0D4EE80801F38E /* DisposeBag.swift */; }; + FC46AD8B89342F75FA66DF4201A0850A /* MemoryStorage.swift in Sources */ = {isa = PBXBuildFile; fileRef = E0F0E39AF0AD69EF53A7AD2FB214B7F1 /* MemoryStorage.swift */; }; + FCED5EA34F470E1DE64CB9C632245922 /* ObservableConvertibleType+Signal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 173AC395C60982B555B99DF5D9A6CAB6 /* ObservableConvertibleType+Signal.swift */; }; + FD0574A25469F0713B34ED1B682755F2 /* ESTabBarItemContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76B0B0393DB4BA68A89B300349BE4897 /* ESTabBarItemContainer.swift */; }; + FD70F673A044AAAE0C5AA9739516065A /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 05A0A4ACD645B787C5F433F9B516B9B8 /* MJRefreshAutoGifFooter.m */; }; + FD7228A6A8B2236D44BE57275510EEAC /* ZFReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FBF0C446F4AD671B951E117B047D58E7 /* ZFReachabilityManager.m */; }; + FDE175AAA2CB3652B67AA421E7AF96AF /* IQKeyboardReturnKeyHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = F83BF3B2775AF797F44994385B764802 /* IQKeyboardReturnKeyHandler.swift */; }; + FE20744885FCBBEFACEA58867A812C6C /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3438D118E49B28076AAA4FC9A453BC83 /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF151DDFF38D867F4C13771E00996959 /* SubjectType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5897FBEDD93BE0BD5350B4054C31150E /* SubjectType.swift */; }; + FFA171B211AC028D0A9375105738BDC1 /* ZFPlayerNotification.m in Sources */ = {isa = PBXBuildFile; fileRef = 566EE0EF1200976E825C76C079C39F5F /* ZFPlayerNotification.m */; }; + FFAA74F5A2EF6804BF1496B33FF45C9E /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 77660A66FD52AE4EB05728A6FBA09C03 /* UIScrollView+MJExtension.m */; }; + FFB73205BFE1E62DA077A3F96AE35012 /* AddRef.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06D7F9577C67636E31443B3573CA43D9 /* AddRef.swift */; }; + FFB9E82FF0E210BFEB30F4D221DD476C /* RxSearchControllerDelegateProxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 187FD280B9D20CA290879CC2937434C4 /* RxSearchControllerDelegateProxy.swift */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 018E4B13C8C80AF4FB74E0ECF5C4E420 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; - remoteInfo = "AMapFoundation-NO-IDFA"; - }; - 02556E119549DE39A31930F5231C1D2D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 387C7767E705FE68450F97CBA4348CC0; - remoteInfo = DDProgressHUDKit_Private; - }; - 038FFE15342969D554372D03BAFD2077 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 087B100C5691B6A3C04A45198E6C32F6; - remoteInfo = DDBasicControlsKit_Private; - }; - 06BDB4456C4892C22D4D307406640EC2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53463808DD395EFE0C9E0CDCB79A6C0A; - remoteInfo = DDAutoUIKit_Private; - }; - 0E2BE12E0336005E617045EC58D4B6F7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; - remoteInfo = RxSwift; - }; - 0FBC24C80EB201C47A891FF40D563A3B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D505645C3F99EB1E8B6529D64D2C3E1C; - remoteInfo = BRPickerView; - }; - 1245407273BA707BA2E72A68564A1DE2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; - remoteInfo = DDCategoryKit_Private; - }; - 18884CEB5A6BE80D3F38654922A03AFA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F1379598302C9160590B3650C10E1A5; - remoteInfo = "AMapSearch-NO-IDFA"; - }; - 1A0443A40EAAA8FA22D4C133F3EED02B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4BD4E22D3419D68A85BDD6119CB37C6C; - remoteInfo = "AMapLocation-NO-IDFA"; - }; - 227402276234B4F2FC2951ECABBC2CB2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E94C558142469C11984D67CA883BAB1F; - remoteInfo = "AMapNavi-NO-IDFA"; - }; - 23A3596F485B5DCC8E6A77A196FC779A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6056870867CC4728BCEF2E5EBDD1DCB3; - remoteInfo = "DDMAMapKit_Private-DDMAMapKit_Private"; - }; - 2DE610190C70D85AD30BAE1A536B6B98 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F8AE53003F66B148774CFC6EBDEB9425; - remoteInfo = DDPersistenceKit_Private; - }; - 2E3D31D4B90DB4248E4C8827E54DC70E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E72BE4C94039A951B47CCC942F6B4B8F; - remoteInfo = DDAudioPlayerKit_Private; - }; - 31969F647953BC34A4DEABC5E73F235E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 035D1842293C4AA08F442FFD899F7F28; - remoteInfo = DDControlsKit_Private; - }; - 31F4EE0A69FFDB21712DAEC0AB538E9D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; - remoteInfo = "AMapFoundation-NO-IDFA"; - }; - 3A3BDF8CEE9625642A7E8D9E94DDA674 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 67F8329E1ABF625D93A19CDE570535BB; - remoteInfo = DDUIGestureRecognizer; - }; - 3D6FE7D06AE4F0C1FADA3B06F3476AAE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; - remoteInfo = DDLogKit_Private; - }; - 3E170BDA86D113DFCD700D3274BB830A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B41F58F2856AB275B4CF75F359937653; - remoteInfo = DDMAMapKit_Private; - }; - 406B6DFAEDC36CCE81E8E611F3865B89 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; - remoteInfo = RxSwift; - }; - 40B6B4E383DEF92AFD119203CF1EA81D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; - remoteInfo = DDLogKit_Private; - }; - 48C936B7CAC733971AEC00755AB5BCC4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8BEAFAA726C1965864B79B4B441AA513; - remoteInfo = JXCategoryView; - }; - 49268FF46A35E2A8E585E6EE51250BCC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D; - remoteInfo = Alamofire; - }; - 4B83A266FCB47B665B4212A4C9CE46E8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B490E7485944099E16C9CBD79119D1D4; - remoteInfo = IQKeyboardManagerSwift; - }; - 4BA4A056FB162E17311A24CFD9BF1299 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5FB6AB0A09E7A2F2BE11AD6BAEFD9AED; - remoteInfo = JPush; - }; - 51858F03540F59274375C071842ED937 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FEA6FF0588A91CCD972EDCD698B85647; - remoteInfo = SwiftEntryKit; - }; - 51CC0DFA99277C07B8A4097CB3CC00B9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4BD4E22D3419D68A85BDD6119CB37C6C; - remoteInfo = "AMapLocation-NO-IDFA"; - }; - 549954DFE96A16878CD265EC2F97D6B3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 609276B985CD7549B9F1DEE4969208FF; - remoteInfo = JPushExtension; - }; - 54B78C2F81056D823394CA949762D1C9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; - remoteInfo = DDLogKit_Private; - }; - 54FDD3BAC77F7A43CA7B56EF9E2BEC06 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 0D4DC618BC2D969E8743E01C79FFB7BD; - remoteInfo = DDTimerSwiftKit_Private; - }; - 56F79EF773DAB384316935E34167D88F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; - remoteInfo = DDCategoryKit_Private; - }; - 57074832AA04941A9D2717BEB6BE6947 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 3F83465BA81F6E581B3A431642D2992E; - remoteInfo = "ESTabBarController-swift"; - }; - 59601EB996A58E69013231EDEC7768DD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6868056D761E163D10FDAF8CF1C4D9B8; - remoteInfo = MJRefresh; - }; - 6082BE2998841AB825AD4ED5BEF974EB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = BFED7668E8D0960F3873C9C1329EB63F; - remoteInfo = DDColorKit_Private; - }; - 62F595B7130A3318AE60B372EBC452AD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 477926D6FB1DCEFB352517A19636405D; - remoteInfo = DDWebImageKit_Private; - }; - 66625EFBE17F1152FB23F8FB6D96E79E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D504B99928659EA67A1C3A9E981EB8FF; - remoteInfo = JCore; - }; - 687FB4F38DB098417CC67F46B9A7E088 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 92A1C13902E7ACDA3ABB5BA1FEACC86C; - remoteInfo = SwiftyRSA; - }; - 695C7A109DFD5075A4FAA496B6EC2CE2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; - remoteInfo = DDCategoryKit_Private; - }; - 69A2B7CBBB14894BDBF6F794A5EA6AB5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; - remoteInfo = "AMapFoundation-NO-IDFA"; - }; - 6D9E8C50B604AA9DB2E8B330C7B07853 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8F3F4D8426620E7E4A06FE4BCDB96FDE; - remoteInfo = DDFontKit_Private; - }; - 704B7A08A703401A5AF909F376BB7C8A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4622BFEF3DC16E8BD15EEFC30D4D0084; - remoteInfo = RxRelay; - }; - 7107AB461D045749CB5FBC020F7DD8A3 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B68A4B40517CF9B14050FA0A4A618B04; - remoteInfo = DDNetworkingOfAlamofireKit_Private; - }; - 71E27BD651849CB89DA5BEC2D729A100 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; - remoteInfo = DDCategoryKit_Private; - }; - 75FEC6FE28D872E5BF72183D7130D984 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 19622742EBA51E823D6DAE3F8CDBFAD4; - remoteInfo = SnapKit; - }; - 7BA13F98D4FD6636F5AAAA5388A63A3A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5C23965029860967865B3429B5E29092; - remoteInfo = "DDBasicControlsKit_Private-DDBaseViewController"; - }; - 8693AB63183470CD0B43D904BC8616AF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; - remoteInfo = Kingfisher; - }; - 8B0847C3C1D5841A70D880D5AA6328B9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 19622742EBA51E823D6DAE3F8CDBFAD4; - remoteInfo = SnapKit; - }; - 94ACD963CADE0ABA885BA32469BE3648 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; - remoteInfo = "AMapFoundation-NO-IDFA"; - }; - 95873915BAB5320576F290731FC0336C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 087B100C5691B6A3C04A45198E6C32F6; - remoteInfo = DDBasicControlsKit_Private; - }; - 973368B34650D552EEFB47B66553225F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; - remoteInfo = DDLogKit_Private; - }; - 9BFE18006629DF2BD8BD758CF3047457 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA849029E6A899F45F613165943A6C68; - remoteInfo = DDDateKit_Private; - }; - 9F3B46B554E0891500123336B328BADB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E94C558142469C11984D67CA883BAB1F; - remoteInfo = "AMapNavi-NO-IDFA"; - }; - A73AE7F7CE102854A50BF3AAB726DF87 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4BD4E22D3419D68A85BDD6119CB37C6C; - remoteInfo = "AMapLocation-NO-IDFA"; - }; - A8CF617882CC4FD91D3197BDC2700279 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; - remoteInfo = Kingfisher; - }; - AAF8F6A4DD8EC59820EA08FDED6B0C17 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D504B99928659EA67A1C3A9E981EB8FF; - remoteInfo = JCore; - }; - B25CACFCB1A6909C448C9F87C0EA1F01 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6; - remoteInfo = RxCocoa; - }; - C45DED695CBD6EB133BC9C0C4550C7B0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; - remoteInfo = RxSwift; - }; - CE8E38C3061FAA96699A2F23752C3222 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4622BFEF3DC16E8BD15EEFC30D4D0084; - remoteInfo = RxRelay; - }; - CEC15D5E20091ECF447E88D300EDE43F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4A68CFD979D413A619DF631BB121D98F; - remoteInfo = Bugly; - }; - CF3A0FEACE16DF220DDD0B2A2948B02E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; - remoteInfo = "AMapFoundation-NO-IDFA"; - }; - D6502FF1746E35A9900D5D24DF1E8C96 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; - remoteInfo = RxSwift; - }; - D77437482AFCF7373637C418512A6AA9 /* PBXContainerItemProxy */ = { + 0A390DFEAE32C0CC1A6654C3EE59245F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2864923095274ACF5E5F99312F360AEB; remoteInfo = DDZFPlayerKit_Private; }; - E3FDAB50E72578EE1738337360170B85 /* PBXContainerItemProxy */ = { + 11DCFBBBE82829EB55DDA82634A02657 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2160840D78FCB958CABE1B88300E38C5; - remoteInfo = "AMapTrack-NO-IDFA"; + remoteGlobalIDString = D504B99928659EA67A1C3A9E981EB8FF; + remoteInfo = JCore; }; - E8D3EF6A36B62B2FE29FFDD4882FB783 /* PBXContainerItemProxy */ = { + 12BD3DB13AF3145E2C5DA5B5B2A64BFA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A8B712B20F60AB02004557B884A28FD4; - remoteInfo = DDUtilsSwiftKit_Private; + remoteGlobalIDString = 8F3F4D8426620E7E4A06FE4BCDB96FDE; + remoteInfo = DDFontKit_Private; }; - F42449BAC65F4969FE1BE1C7226D487B /* PBXContainerItemProxy */ = { + 184CD9C1B96CCF3BB3CC4C84C9E46DF1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F1379598302C9160590B3650C10E1A5; - remoteInfo = "AMapSearch-NO-IDFA"; + remoteGlobalIDString = 087B100C5691B6A3C04A45198E6C32F6; + remoteInfo = DDBasicControlsKit_Private; }; - F5168C4646AE98A100A6E7C56AA92AD8 /* PBXContainerItemProxy */ = { + 211262416FF7BDC60F2023F00A458E5F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; + remoteInfo = RxSwift; + }; + 24D0CE8AB252868DC32A3B0F98FEA4D0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D; remoteInfo = Alamofire; }; - FE8D792C34D6E80AC2104A44F3F58E07 /* PBXContainerItemProxy */ = { + 250991C42920E8194B5CE933E436384D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2FAF03761A44702490259F857A848B42; - remoteInfo = ZLPhotoBrowser; + remoteGlobalIDString = FEA6FF0588A91CCD972EDCD698B85647; + remoteInfo = SwiftEntryKit; }; - FF8F8C808D9F7CF590E475192D2E9169 /* PBXContainerItemProxy */ = { + 265156BBC09644F611AFAAB77957B511 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F1379598302C9160590B3650C10E1A5; + remoteInfo = "AMapSearch-NO-IDFA"; + }; + 2753D2384F40A7C81A54E37DC6F4DEC6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F8AE53003F66B148774CFC6EBDEB9425; + remoteInfo = DDPersistenceKit_Private; + }; + 30F9FCC56E41D56EDB6BDE8F34C066FF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; + remoteInfo = Kingfisher; + }; + 3689C4F5315903923CF7576E563BC8BD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = BFED7668E8D0960F3873C9C1329EB63F; + remoteInfo = DDColorKit_Private; + }; + 38A93D337992BC70CBB3B8BE96E40538 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; + remoteInfo = DDLogKit_Private; + }; + 3D02BF6752A42A9DBB3E3660AE759D79 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2160840D78FCB958CABE1B88300E38C5; remoteInfo = "AMapTrack-NO-IDFA"; }; - FF91BFAC66C7EA089CDA4351C0D52841 /* PBXContainerItemProxy */ = { + 3D89939527CE9B8ABC5699D0865BE4B6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2160840D78FCB958CABE1B88300E38C5; + remoteInfo = "AMapTrack-NO-IDFA"; + }; + 3FFBE0149E37D515A4EE920B55239A10 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E8022D22FAA6690B5E1C379C1BCE1491; + remoteInfo = Kingfisher; + }; + 41DC221333125F079618D99D4EC756D5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F1379598302C9160590B3650C10E1A5; + remoteInfo = "AMapSearch-NO-IDFA"; + }; + 4D3E3E385D28F65C03399EE4ACC7C17C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; + remoteInfo = "AMapFoundation-NO-IDFA"; + }; + 4EA1571027BA9C67444DBCEB26514581 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; + remoteInfo = DDLogKit_Private; + }; + 50CEDDC28C8B2064307E631D3191C15F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5C23965029860967865B3429B5E29092; + remoteInfo = "DDBasicControlsKit_Private-DDBaseViewController"; + }; + 587707028C51A77E3C6E4E3A88050258 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 92A1C13902E7ACDA3ABB5BA1FEACC86C; + remoteInfo = SwiftyRSA; + }; + 5A9DCB08461AA2AC5E7CC398216CBE5A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; + remoteInfo = DDLogKit_Private; + }; + 62761E1251588AD8D06BF49C80457F58 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4622BFEF3DC16E8BD15EEFC30D4D0084; + remoteInfo = RxRelay; + }; + 63479221F78F1CBF45187F5B3B3EC784 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = CFF5B7CDF57A32781D2AD4CC98E95B29; remoteInfo = DDToastKit_Private; }; + 68AA75EC7F1DFFBA5897F56578704553 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4BD4E22D3419D68A85BDD6119CB37C6C; + remoteInfo = "AMapLocation-NO-IDFA"; + }; + 6C5192A18A8F27834947A4E7155C7BA8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 53463808DD395EFE0C9E0CDCB79A6C0A; + remoteInfo = DDAutoUIKit_Private; + }; + 7ED7FE0E83387F0104F015A544CE67CE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2FAF03761A44702490259F857A848B42; + remoteInfo = ZLPhotoBrowser; + }; + 806F90B9EEA797CCC403DAAB56428802 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E72BE4C94039A951B47CCC942F6B4B8F; + remoteInfo = DDAudioPlayerKit_Private; + }; + 828908CB7D25AA2D988DB6765C77F9CF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; + remoteInfo = "AMapFoundation-NO-IDFA"; + }; + 83F71CDE006F44D40686A9FA7F6CC437 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6; + remoteInfo = RxCocoa; + }; + 841F97BAD32A8C9A48CEB8A2060F4935 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; + remoteInfo = RxSwift; + }; + 84AAF9133452420D2363ED643866FAE4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4BD4E22D3419D68A85BDD6119CB37C6C; + remoteInfo = "AMapLocation-NO-IDFA"; + }; + 8637D837F45C8FE06E5D34806CCE26B5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E94C558142469C11984D67CA883BAB1F; + remoteInfo = "AMapNavi-NO-IDFA"; + }; + 8645E2E76ED017A759ED173841B5EBFE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 387C7767E705FE68450F97CBA4348CC0; + remoteInfo = DDProgressHUDKit_Private; + }; + 8DC2C7A4203B4827BD74DBECD8A4BA85 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 19622742EBA51E823D6DAE3F8CDBFAD4; + remoteInfo = SnapKit; + }; + 93778F9EFFD61D31666866C823F12C54 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A8B712B20F60AB02004557B884A28FD4; + remoteInfo = DDUtilsSwiftKit_Private; + }; + 94FBC7C52ADED6B9382BD1FBAC44DC26 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; + remoteInfo = "AMapFoundation-NO-IDFA"; + }; + 98C0AFE5410520EF33DADF9119FEB1CF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; + remoteInfo = RxSwift; + }; + 99AFB69115DF3CE320FB5AA005CAFAD1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D504B99928659EA67A1C3A9E981EB8FF; + remoteInfo = JCore; + }; + 99DB62CE63F5855521D4B24E850117A6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B68A4B40517CF9B14050FA0A4A618B04; + remoteInfo = DDNetworkingOfAlamofireKit_Private; + }; + A18A8247F9A5DB69355FB03C11A28915 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EA9EA43B3B503823EE36C60D9C8A865F; + remoteInfo = RxSwift; + }; + A3D4E25A19D3FE9C9DB0B69B150F68C1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 035D1842293C4AA08F442FFD899F7F28; + remoteInfo = DDControlsKit_Private; + }; + AAB1C969C7DED82089DB867EE41E40DD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 8BEAFAA726C1965864B79B4B441AA513; + remoteInfo = JXCategoryView; + }; + ABEAAD9E0A014A51CD7BCEB5732D9620 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B490E7485944099E16C9CBD79119D1D4; + remoteInfo = IQKeyboardManagerSwift; + }; + AD2CC6F01BB732A0DE62186510D5F359 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 19622742EBA51E823D6DAE3F8CDBFAD4; + remoteInfo = SnapKit; + }; + B3CB21D159A0B3C7DA0F07BC95853B68 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; + remoteInfo = DDCategoryKit_Private; + }; + B52D8960CE86714CF052B647A6F8F194 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; + remoteInfo = DDCategoryKit_Private; + }; + BFE7828DD48146992ABC152C79A309D5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 5FB6AB0A09E7A2F2BE11AD6BAEFD9AED; + remoteInfo = JPush; + }; + C25C988EC940DB688FFE80F15A441C6B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3F83465BA81F6E581B3A431642D2992E; + remoteInfo = "ESTabBarController-swift"; + }; + C3EF2EF47400AFE173B32A113FDDA2FE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4622BFEF3DC16E8BD15EEFC30D4D0084; + remoteInfo = RxRelay; + }; + C4A67242D60B0309861B79B065F1FAAD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6056870867CC4728BCEF2E5EBDD1DCB3; + remoteInfo = "DDMAMapKit_Private-DDMAMapKit_Private"; + }; + C7EF3102375B57D19A25429B356D81EB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D505645C3F99EB1E8B6529D64D2C3E1C; + remoteInfo = BRPickerView; + }; + CCF4EF35D4A25917EEA87B1F0A43E9A1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; + remoteInfo = "AMapFoundation-NO-IDFA"; + }; + CD676DB6466F376677658F5A32D9ABA9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 087B100C5691B6A3C04A45198E6C32F6; + remoteInfo = DDBasicControlsKit_Private; + }; + D8CBA4CD06720627826BE3552535FD9D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4A68CFD979D413A619DF631BB121D98F; + remoteInfo = Bugly; + }; + D9C18689C254D24054BEEEB7117328FD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; + remoteInfo = DDCategoryKit_Private; + }; + DA4D5A52BFA5C276F32FB0EEBB99E255 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4BD4E22D3419D68A85BDD6119CB37C6C; + remoteInfo = "AMapLocation-NO-IDFA"; + }; + DB1587856D8AAADC8BCADA20A6A25046 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FA849029E6A899F45F613165943A6C68; + remoteInfo = DDDateKit_Private; + }; + DDDA3B56AE9D871398C65E91A7643A16 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 26BA8950EBF05410254D54F7EF76D5CE; + remoteInfo = DDLogKit_Private; + }; + DF808EECBE2B628C3AB4013A3552D77E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6868056D761E163D10FDAF8CF1C4D9B8; + remoteInfo = MJRefresh; + }; + E1AC07B30F4FAD0DB124E07FABC2249C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9B182CB4E1716E9070813D3C59736001; + remoteInfo = "AMapFoundation-NO-IDFA"; + }; + E2C012DCB30CA7BA6E03424DC3F78B88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0D4DC618BC2D969E8743E01C79FFB7BD; + remoteInfo = DDTimerSwiftKit_Private; + }; + E5F3AA6AAF271D0BFCB2A8F8CCE346D0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 609276B985CD7549B9F1DEE4969208FF; + remoteInfo = JPushExtension; + }; + E910D185EB77931E7DA20A761EB30A88 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 67F8329E1ABF625D93A19CDE570535BB; + remoteInfo = DDUIGestureRecognizer; + }; + EC6D6B53B03886F78B8E760B5B6D2D98 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7B8412F08BD27981DB53CE2C25C19F0A; + remoteInfo = DDCategoryKit_Private; + }; + F2DB9D45AB7D4797753ED45BCD1E8308 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E94C558142469C11984D67CA883BAB1F; + remoteInfo = "AMapNavi-NO-IDFA"; + }; + F4EA5A2286FD7F220F1CFFF4847433CC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 477926D6FB1DCEFB352517A19636405D; + remoteInfo = DDWebImageKit_Private; + }; + F93A2912B38B72B0608177DBD6056F03 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B41F58F2856AB275B4CF75F359937653; + remoteInfo = DDMAMapKit_Private; + }; + FEB7747699ECE774264837437979EDF9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EAAA1AD3A8A1B59AB91319EE40752C6D; + remoteInfo = Alamofire; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 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 = ""; }; + 003ED5128C713C6B2C0B8B4EF9C1EB59 /* DDLogKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDLogKit_Private.debug.xcconfig; sourceTree = ""; }; + 007C5043C49FD0FF7EE18EBD17C9CC1F /* AVAssetImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AVAssetImageDataProvider.swift; path = Sources/General/ImageSource/AVAssetImageDataProvider.swift; sourceTree = ""; }; + 009F0D2F06A7FE7E0B388838500D34DE /* MACustomCalloutView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomCalloutView.h; path = AMapNaviKit.framework/Headers/MACustomCalloutView.h; sourceTree = ""; }; + 00B020D83C3657253A5DAC1E41D38C06 /* Zip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Zip.swift; path = RxSwift/Observables/Zip.swift; sourceTree = ""; }; + 00B86B4238576B0A6C7EA80D078C1B61 /* DDBaseScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseScrollView.m; path = DDBasicControlsKit_Private/Classes/DDBaseScrollView/DDBaseScrollView.m; sourceTree = ""; }; + 011FD654828A5E2CA8BFBE2BB080E15F /* DDBaseSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseSwitch.h; path = DDBasicControlsKit_Private/Classes/DDBaseSwitch/DDBaseSwitch.h; sourceTree = ""; }; + 01309EBADA81CB2BD2FB50A8AECC3C1D /* DDSwitch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDSwitch.swift; path = DDControlsKit_Private/Classes/DDSwitch/DDSwitch.swift; sourceTree = ""; }; + 0133C5CA64F9E7B9EC4CD81E278FC21B /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; + 01416891F274081B2D37C2AA6BFD09C3 /* JXCategoryTitleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleView.h; path = Sources/Title/JXCategoryTitleView.h; sourceTree = ""; }; + 0161B0C88CEDF24D81D909CA07FD8B59 /* JXCategoryTitleVerticalZoomCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomCellModel.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCellModel.h; sourceTree = ""; }; + 01680E8EE498EBF8533C103BE519E18B /* QLUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QLUtils.swift; path = Source/Extensions/QuickLayout/QLUtils.swift; sourceTree = ""; }; + 01977D67366B68D418CA6F9BF725100E /* DDAutoUIKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDAutoUIKit_Private-prefix.pch"; sourceTree = ""; }; + 0199FF7AFDA3A15238DDCC6F4C75CF9E /* Concat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concat.swift; path = RxSwift/Observables/Concat.swift; sourceTree = ""; }; + 01F1CAB98541F9C396B62667D8542F4B /* AMap.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = AMap.bundle; path = AMapNaviKit.framework/AMap.bundle; sourceTree = ""; }; + 021C02479E90CC819FC3EDB366419AC0 /* DDToastKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDToastKit_Private-dummy.m"; sourceTree = ""; }; + 022AD389712FCB24D1EE0385BDC6ACCA /* Completable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Completable.swift; path = RxSwift/Traits/PrimitiveSequence/Completable.swift; sourceTree = ""; }; + 0259A6312EF907AF2D060BD0242AAE8A /* DDMANaviManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMANaviManager.m; path = DDMAMapKit_Private/Classes/DDMANaviManager/DDMANaviManager.m; sourceTree = ""; }; + 0269F9F0417F84BB1AE11F8BD8C62FE4 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; + 027E9F99FC3E914592E499094AFBE708 /* IQUIView+IQKeyboardToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+IQKeyboardToolbar.swift"; path = "IQKeyboardManagerSwift/IQToolbar/IQUIView+IQKeyboardToolbar.swift"; sourceTree = ""; }; + 02866DF792FE073CC505E4F79CC17826 /* ZFPlayerControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPlayerControlView.h; sourceTree = ""; }; + 0292CFDB14D218ACA7263C4A66E5DF49 /* ZLAnimationUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAnimationUtils.swift; path = Sources/General/ZLAnimationUtils.swift; sourceTree = ""; }; + 02A7667604B8B8A9FEB30F134B8AEF89 /* UICollectionViewLayout+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewLayout+MJRefresh.m"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.m"; sourceTree = ""; }; + 02AFDD1B3E0ACC40D62C77E695872409 /* ZLPhotoPreviewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewController.swift; path = Sources/General/ZLPhotoPreviewController.swift; sourceTree = ""; }; + 02C13D7C293C466E0360052DBFF396A7 /* ZFReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFReachabilityManager.h; path = DDZFPlayerKit_Private/Classes/Core/ZFReachabilityManager.h; sourceTree = ""; }; + 03257450D74F8F629A0D4EE80801F38E /* DisposeBag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBag.swift; path = RxSwift/Disposables/DisposeBag.swift; sourceTree = ""; }; + 03C9A785D0B18A0810916235B2933B6A /* UIColor+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+Utils.swift"; path = "Source/Extensions/UIColor+Utils.swift"; sourceTree = ""; }; + 0407C385764BAFECD28D238D0FB930C0 /* Errors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Errors.swift; path = RxSwift/Errors.swift; sourceTree = ""; }; + 042B658BD51FCB5C4C38CB4002CECD7E /* ZFLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLoadingView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLoadingView.h; sourceTree = ""; }; + 0435BCA4466F64061E559FD0669FBD4E /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackGifFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h; sourceTree = ""; }; + 043C2A0CF70EF451E3F7019DB5C8FBA1 /* Generate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Generate.swift; path = RxSwift/Observables/Generate.swift; sourceTree = ""; }; + 0455936191935FDE41FAE9F6960B4404 /* TailRecursiveSink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TailRecursiveSink.swift; path = RxSwift/Observers/TailRecursiveSink.swift; sourceTree = ""; }; + 054A22F617AAEA4D7A89E272ACAF94D0 /* UITextField+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextField+Rx.swift"; path = "RxCocoa/iOS/UITextField+Rx.swift"; sourceTree = ""; }; + 055E3E762F3C890BA7920B0EF52410A2 /* GroupBy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupBy.swift; path = RxSwift/Observables/GroupBy.swift; sourceTree = ""; }; + 05602809C43207445EBFF4B478A81D7B /* ImageCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageCache.swift; path = Sources/Cache/ImageCache.swift; sourceTree = ""; }; + 056072408017E174401477DDF6D9A576 /* AMapNaviTrafficBarView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviTrafficBarView.h; path = AMapNaviKit.framework/Headers/AMapNaviTrafficBarView.h; sourceTree = ""; }; + 05985D471561D3CC0EB9CAB71C30BCB5 /* DDDateKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDDateKit_Private-dummy.m"; sourceTree = ""; }; + 05A0A4ACD645B787C5F433F9B516B9B8 /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = ""; }; + 05A2442920474C19EA2B219E1A9BCB07 /* ConstraintLayoutGuide+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintLayoutGuide+Extensions.swift"; path = "Sources/ConstraintLayoutGuide+Extensions.swift"; sourceTree = ""; }; + 05EE5B7FBF70FB0D3E8168D27131C004 /* 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 = ""; }; + 05F9822BADAAFBFBB5BED13D41072C8C /* Indicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Indicator.swift; path = Sources/Views/Indicator.swift; sourceTree = ""; }; + 061AF062963E8F80C0C2E32F079AA219 /* MAHeatMapVectorGridOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorGridOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorGridOverlayRenderer.h; sourceTree = ""; }; + 0623870DBBA652E111B0F87326866E00 /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; + 06523BF69F5B28DF722EF93AFCB7B3BB /* RxRelay.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxRelay.debug.xcconfig; sourceTree = ""; }; + 065B07B536B2634C09D050D38E2BC490 /* MALineDrawType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MALineDrawType.h; path = AMapNaviKit.framework/Headers/MALineDrawType.h; sourceTree = ""; }; + 0676D11EA6C44D22CBBC194815F5219D /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; + 06877DE99F960EA4A9DB9E24B482DADF /* DDBasicControlsKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDBasicControlsKit_Private.modulemap; sourceTree = ""; }; + 069987F7BCEF63BB37E8B372A97D7FCE /* UIBarButtonItem+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIBarButtonItem+Rx.swift"; path = "RxCocoa/iOS/UIBarButtonItem+Rx.swift"; sourceTree = ""; }; + 06D7F9577C67636E31443B3573CA43D9 /* AddRef.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AddRef.swift; path = RxSwift/Observables/AddRef.swift; sourceTree = ""; }; + 06DF5453A700B20897B8134227B3DE0D /* ZFLandScapeControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLandScapeControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLandScapeControlView.h; sourceTree = ""; }; + 06EC634AB32CE67F5935F6F0A5AD69C4 /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; + 0705F50356EDCD9449E150194C43FECD /* 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 = ""; }; + 07154D91CF0F369BF9976F9AFC21C82B /* 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 = ""; }; + 0719CA59AD6E25C8ACFF138ABBDB1F7A /* MAUserLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAUserLocation.h; path = AMapNaviKit.framework/Headers/MAUserLocation.h; sourceTree = ""; }; + 071F6EF4999EC4B47F4E90AFDFD09665 /* EKNotificationMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKNotificationMessage.swift; path = Source/Model/EKNotificationMessage.swift; sourceTree = ""; }; + 073916E9CDC05F41D3F48519DA970F64 /* RxCollectionViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDataSourceProxy.swift; sourceTree = ""; }; + 076767C801825F6661A6B2EABC90BB53 /* DeviceInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DeviceInfo.swift; path = DDUtilsSwiftKit_Private/Classes/DeviceInfo/DeviceInfo.swift; sourceTree = ""; }; + 07836296D8BA406CCA3977BA36F255BE /* ZFPlayerGestureControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerGestureControl.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerGestureControl.m; sourceTree = ""; }; + 07BA75F921FF2FB8447132132B1EBA65 /* DDTimerSwiftKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDTimerSwiftKit_Private.debug.xcconfig; sourceTree = ""; }; + 07ED5DCEF943738AA5553A19DAFB929F /* 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 = ""; }; + 07FAC442BD8DA7E807FEE112E2976373 /* FontUtil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FontUtil.swift; path = DDFontKit_Private/Classes/FontUtil.swift; sourceTree = ""; }; + 08038D4977DF6872536E3C3FE81F5E0C /* DDCategoryKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDCategoryKit_Private.debug.xcconfig; sourceTree = ""; }; + 08327C82F0A0391E9140121D7FDFE40C /* 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 = ""; }; + 08362B5B123C99899B66EC9798D6CEDB /* RxCocoaObjCRuntimeError+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "RxCocoaObjCRuntimeError+Extensions.swift"; path = "RxCocoa/Common/RxCocoaObjCRuntimeError+Extensions.swift"; sourceTree = ""; }; + 087942B39BA653DEDEA65CCA0A22F61A /* 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 = ""; }; + 08DDCAB2029E71B7CC9BBD121FB4DDD1 /* MAOfflineItemMunicipality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemMunicipality.h; path = AMapNaviKit.framework/Headers/MAOfflineItemMunicipality.h; sourceTree = ""; }; + 091BE0E4A42182BC24A0EDCEDD9540DE /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = ""; }; + 092FCDE3C6F546FA0AFC66C4FC04738B /* EKAttributes+Presets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Presets.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Presets.swift"; sourceTree = ""; }; + 093EFA1B5B0866A1E1D47F9E287F7BDC /* ObserverType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverType.swift; path = RxSwift/ObserverType.swift; sourceTree = ""; }; + 0973E02134AB7228128B912DFBDC1A81 /* DDAudioPlayerKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDAudioPlayerKit_Private-dummy.m"; sourceTree = ""; }; + 09B45C82D1FA696C05AFC98A4B0BDC20 /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalHeader.m; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.m; sourceTree = ""; }; 09B4C59FAB38D6054E5993BD78205023 /* DDAudioPlayerKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDAudioPlayerKit_Private; path = libDDAudioPlayerKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; - 0A23019F4D09D5FFAA156BED696736AD /* car_xingshi.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = car_xingshi.png; path = DDMAMapKit_Private/Assets/car_xingshi.png; 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 = ""; }; + 09D5F331C929DE88E6D493A76A9C52ED /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; + 09F7B2E1419480FFE07D7AC38CDF6DDA /* UIColor+JXAdd.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+JXAdd.m"; path = "Sources/Common/UIColor+JXAdd.m"; sourceTree = ""; }; + 09FA14CF689D02A1F55D530784E02BCD /* ZLEmbedAlbumListView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEmbedAlbumListView.swift; path = Sources/General/ZLEmbedAlbumListView.swift; sourceTree = ""; }; + 0A0F6B89029BFCFC9259FA080CC8A169 /* RxCollectionViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDelegateProxy.swift; sourceTree = ""; }; + 0A140989C36BC0158AF039D2615DDACD /* AMapNaviLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviLocation.h; path = AMapNaviKit.framework/Headers/AMapNaviLocation.h; sourceTree = ""; }; + 0A141F031A91702235B81A1981810925 /* EKWindow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKWindow.swift; path = Source/Infra/EKWindow.swift; sourceTree = ""; }; + 0A2B2D3DFC187C5D4FDA5530EBD965FF /* ESTabBarController-swift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ESTabBarController-swift-dummy.m"; sourceTree = ""; }; + 0A67710C307807C49ADAF30467B0BF5C /* EKXStatusBarMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKXStatusBarMessageView.swift; path = Source/MessageViews/Notes/EKXStatusBarMessageView.swift; sourceTree = ""; }; + 0A74F43E5A5B27409A7B16F84771A955 /* ZLPhotoConfiguration+Chaining.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ZLPhotoConfiguration+Chaining.swift"; path = "Sources/General/ZLPhotoConfiguration+Chaining.swift"; sourceTree = ""; }; + 0AA35FFE21EFE7F544B7669258B5B48A /* EKAttributes+LifecycleActions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+LifecycleActions.swift"; path = "Source/Model/EntryAttributes/EKAttributes+LifecycleActions.swift"; sourceTree = ""; }; + 0AE18AB2947C447008971926B655DE2D /* MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJRefresh-dummy.m"; sourceTree = ""; }; + 0B0827036701F362EE661426BD2AEC3D /* SynchronizedUnsubscribeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedUnsubscribeType.swift; path = RxSwift/Concurrency/SynchronizedUnsubscribeType.swift; sourceTree = ""; }; + 0B14E3D0EC43ACAEC29EBACE29E447DD /* PublishRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublishRelay.swift; path = RxRelay/PublishRelay.swift; sourceTree = ""; }; + 0B2D703D62B0D0E8DBE842156C97A783 /* MAMVTTileOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMVTTileOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAMVTTileOverlayRenderer.h; sourceTree = ""; }; + 0B311EC7F5B47078DBAFF57B7FBC20B0 /* AMapTrack-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapTrack-NO-IDFA.release.xcconfig"; sourceTree = ""; }; + 0B3B56DA53E0A9A31116268B6E73E181 /* 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 = ""; }; + 0BB39ACAB29B66006E95096B64A97A23 /* DDImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDImage.swift; path = DDControlsKit_Private/Classes/DDImage/DDImage.swift; sourceTree = ""; }; + 0BB9413189F199CCC7631A86CAB55B7B /* Platform.Linux.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Linux.swift; path = Platform/Platform.Linux.swift; sourceTree = ""; }; + 0C0A07F4C1C07D539C706BB2B48E2FC8 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; + 0C1F47EC9BB1BB5960178F72DFDF3EC2 /* Result+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Result+Alamofire.swift"; path = "Source/Result+Alamofire.swift"; sourceTree = ""; }; + 0C29DED5FE8759F25877E12A9CB9AF32 /* MAHeatMapVectorGridOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorGridOverlay.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorGridOverlay.h; sourceTree = ""; }; + 0CB422FEC5C5085457623D4A066078AA /* RxCocoa.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxCocoa.modulemap; sourceTree = ""; }; + 0D042B962D500E257F0C9AF3EE0A59E0 /* MAMapKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapKit.h; path = AMapNaviKit.framework/Headers/MAMapKit.h; sourceTree = ""; }; + 0D2E568296A0A2814A2490F52A3D2D00 /* DDFontKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDFontKit_Private-prefix.pch"; sourceTree = ""; }; + 0D3C618870FED685FC45008AF9FCEE6C /* Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Rx.swift; path = RxSwift/Rx.swift; sourceTree = ""; }; + 0D79204022D7BD5A86AD846C6A9A3B67 /* Take.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Take.swift; path = RxSwift/Observables/Take.swift; sourceTree = ""; }; + 0D80DB2D7D6078201B7CAE9618F76E6E /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; 0DA4828908E30CE4A29CB9AD3A405635 /* SwiftyRSA */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = SwiftyRSA; path = libSwiftyRSA.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + 0DD84E61973C357165DF6B0FC6CEE294 /* AMapTrackKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapTrackKit.framework; sourceTree = ""; }; + 0DE9018BD5105B76C813A2AFD2640AF7 /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = ""; }; + 0E5EA0341F654D3EB0B20F96F8C5EC6B /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJExtension.h"; path = "MJRefresh/UIScrollView+MJExtension.h"; sourceTree = ""; }; + 0E7F97EB592B989FE0CF4BC7EFAFFAE9 /* DDBaseTextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTextField.h; path = DDBasicControlsKit_Private/Classes/DDBaseTextField/DDBaseTextField.h; sourceTree = ""; }; + 0F15CEB94701CD2D7E272DDB8A631DC8 /* DDDateKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDDateKit_Private-prefix.pch"; sourceTree = ""; }; + 0F57234F64543394A2509EF7252DAE75 /* DDBaseViewModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseViewModel.m; path = DDBasicControlsKit_Private/Classes/DDBaseViewModel/DDBaseViewModel.m; sourceTree = ""; }; + 0FDBA6D4FF65571F1B96D58FD9AE5377 /* JXCategoryIndicatorRainbowLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorRainbowLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorRainbowLineView.m; sourceTree = ""; }; + 0FF528BDA2A44ED52A07746A34A62DC8 /* ZFSliderView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFSliderView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSliderView.m; sourceTree = ""; }; + 100D6BB138CBC111FBCE28C3F415AD85 /* MATraceReplayOverlay.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MATraceReplayOverlay.m; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlay.m; sourceTree = ""; }; + 100E9B3E567B3F8FF45DF000D5AFF696 /* SubscribeOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscribeOn.swift; path = RxSwift/Observables/SubscribeOn.swift; sourceTree = ""; }; + 101C9488C6B56B8AE42CC2DEB14858D7 /* 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 = ""; }; + 103AC706506457350FF15C77AFBCF976 /* DDFontKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDFontKit_Private.debug.xcconfig; sourceTree = ""; }; + 105583B7B704DAB436A180FBEF9E2230 /* AMapGeoFenceRegionObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceRegionObj.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceRegionObj.h; sourceTree = ""; }; + 105EC8E1085157934B6EEFC708A5705E /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Sources/Networking/SessionDelegate.swift; sourceTree = ""; }; + 106934C177203CE79035726700083CB4 /* Signal+Subscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Signal+Subscription.swift"; path = "RxCocoa/Traits/Signal/Signal+Subscription.swift"; sourceTree = ""; }; + 10A8C3071A8476EE39EA7D86D0AEFF30 /* JXCategoryTitleCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleCell.m; path = Sources/Title/JXCategoryTitleCell.m; sourceTree = ""; }; + 10C044128191F34B3D17925788C18525 /* BRStringPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRStringPickerView.m; path = BRPickerView/StringPickerView/BRStringPickerView.m; sourceTree = ""; }; + 10E12EB5C4AABD1DAF088FFB8A129348 /* CombineLatest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CombineLatest.swift; path = RxSwift/Observables/CombineLatest.swift; sourceTree = ""; }; + 118B5424D4A9C2AF765BE1B9D3E9B2C8 /* DDBasicControls.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBasicControls.h; path = DDBasicControlsKit_Private/Classes/DDBasicControls.h; sourceTree = ""; }; + 11C649053321E3BFCC61AC64B0C1A033 /* MJRefreshTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshTrailer.h; path = MJRefresh/Base/MJRefreshTrailer.h; sourceTree = ""; }; + 120A3A405235EC07D3682D06A58DE2E1 /* JCore-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "JCore-xcframeworks.sh"; sourceTree = ""; }; + 123D932AC1F019898ED170F0CD40694D /* ZLEditToolCells.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditToolCells.swift; path = Sources/Edit/ZLEditToolCells.swift; sourceTree = ""; }; + 124086291346572E126D220A49243645 /* ObservableConvertibleType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableConvertibleType.swift; path = RxSwift/ObservableConvertibleType.swift; sourceTree = ""; }; + 127B58307FC2834413785A101EFC1DA5 /* MAGroundOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGroundOverlay.h; path = AMapNaviKit.framework/Headers/MAGroundOverlay.h; sourceTree = ""; }; + 12C2DCF0F1B288634DD5D38942FD25D6 /* DDBaseButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseButton.h; path = DDBasicControlsKit_Private/Classes/DDBaseButton/DDBaseButton.h; sourceTree = ""; }; + 12E72D93C1B1329FB9B1EC74C58741A8 /* ZLCameraCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCameraCell.swift; path = Sources/General/ZLCameraCell.swift; sourceTree = ""; }; + 135D36C375B935327E65B243CE6E1AEC /* LayoutConstraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraint.swift; path = Sources/LayoutConstraint.swift; sourceTree = ""; }; + 13E714FDC9ED7862DA46E82D64F377DD /* AMapTrackTrackObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackTrackObj.h; path = AMapTrackKit.framework/Headers/AMapTrackTrackObj.h; sourceTree = ""; }; + 1426BD89DE0205308E091F2480E6FFED /* KFImageRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageRenderer.swift; path = Sources/SwiftUI/KFImageRenderer.swift; sourceTree = ""; }; + 14393B03067AF37F0C86DF51FBEFA40E /* Message.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Message.swift; path = Source/Message.swift; sourceTree = ""; }; + 14512F9D2A20420A6E5096EB01EF2155 /* Runtime.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Runtime.swift; path = Sources/Utility/Runtime.swift; sourceTree = ""; }; + 147D7323EE7670D6346C1D39FA0143D7 /* ImageModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageModifier.swift; path = Sources/Networking/ImageModifier.swift; sourceTree = ""; }; + 14A340D7C2ECDE4CF0E54768D62FC895 /* BRAddressPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRAddressPickerView.h; path = BRPickerView/AddressPickerView/BRAddressPickerView.h; sourceTree = ""; }; + 14B89CDF3DDB78BF755C4BE289D591B6 /* BRResultModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRResultModel.m; path = BRPickerView/StringPickerView/BRResultModel.m; sourceTree = ""; }; + 15C920D1845B970208F10EBFB92ED7CA /* 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 = ""; }; + 167FF3D82D5CD13770F8DFA047AFF24E /* UISegmentedControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISegmentedControl+Rx.swift"; path = "RxCocoa/iOS/UISegmentedControl+Rx.swift"; sourceTree = ""; }; + 16AADA904B2D52C7DC15CC5DF9F2E04D /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; 16ADD43AE08E88D6F7A3498152249608 /* DDAutoUIKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDAutoUIKit_Private; path = libDDAutoUIKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + 16DED397735FC490E1E2796743323B2D /* ConstraintMakerPrioritizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerPrioritizable.swift; path = Sources/ConstraintMakerPrioritizable.swift; sourceTree = ""; }; + 170E2432ECA7E947647DFD3DA349D579 /* 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 = ""; }; + 171C168492DAC2775794CCA4EB6C892E /* ConstraintMakerFinalizable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerFinalizable.swift; path = Sources/ConstraintMakerFinalizable.swift; sourceTree = ""; }; + 173AC395C60982B555B99DF5D9A6CAB6 /* ObservableConvertibleType+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Signal.swift"; path = "RxCocoa/Traits/Signal/ObservableConvertibleType+Signal.swift"; sourceTree = ""; }; + 175055EB2724632F731192715848AF5C /* IQToolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQToolbar.swift; path = IQKeyboardManagerSwift/IQToolbar/IQToolbar.swift; sourceTree = ""; }; + 1765FCE93311E671DD3BC7F16484E116 /* ZLAlbumListModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAlbumListModel.swift; path = Sources/General/ZLAlbumListModel.swift; sourceTree = ""; }; + 177208FE0AC55F8049B84AC4A658A345 /* ZFIJKPlayerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFIJKPlayerManager.h; path = DDZFPlayerKit_Private/Classes/ijkplayer/ZFIJKPlayerManager.h; sourceTree = ""; }; + 1799DCB51262DB1F73D655798F3D8AF8 /* Empty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Empty.swift; path = RxSwift/Observables/Empty.swift; sourceTree = ""; }; + 17DD0BD7D4BB86F9A859AC0A834DEB26 /* MATraceReplayOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceReplayOverlay.h; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlay.h; sourceTree = ""; }; + 18089FAFC863B0EA2C363F783E66A668 /* SwiftyRSA.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftyRSA.modulemap; sourceTree = ""; }; + 182C474DAD1BF7F563F0DB8E38461A77 /* MJRefresh.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.release.xcconfig; sourceTree = ""; }; + 183FADBDD16AA89A3E8E81FEF5238A02 /* UIApplication+EKAppearance.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+EKAppearance.swift"; path = "Source/Extensions/UIApplication+EKAppearance.swift"; sourceTree = ""; }; + 1844D35CAD9AEF2B74F6FF5A52210DE9 /* DDUIGestureRecognizer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDUIGestureRecognizer.release.xcconfig; sourceTree = ""; }; + 1844FDB8C983AAB88D20C4DB9D2636B6 /* DDProgressHUD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDProgressHUD.swift; path = DDProgressHUDKit_Private/Classes/DDProgressHUD.swift; sourceTree = ""; }; + 187FD280B9D20CA290879CC2937434C4 /* RxSearchControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxSearchControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxSearchControllerDelegateProxy.swift; sourceTree = ""; }; + 18859A5ED4A849927312BBF28C2B43C7 /* AMapGeoFenceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceManager.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceManager.h; sourceTree = ""; }; + 1897387CE50E8C5942286C2C84929154 /* Bag+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bag+Rx.swift"; path = "RxSwift/Extensions/Bag+Rx.swift"; sourceTree = ""; }; + 189DB1C08EA125B2655BB4B8D723FC1A /* 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 = ""; }; + 18A21A161377B697F7BD65D55700753D /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = ""; }; + 18A9428CA92DC5CC002DD42D7C02D680 /* AMapLocationRegionObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationRegionObj.h; path = AMapLocationKit.framework/Headers/AMapLocationRegionObj.h; sourceTree = ""; }; 18BCA08F5CEEE178EA4B5E4C7521ECB7 /* Pods-OrderSchedulingNotificationService.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OrderSchedulingNotificationService.release.xcconfig"; 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 = ""; }; + 18E5259DE6739903A925CE7A065B477A /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; + 192281E6AA83FC6D9865A4E78F4B1233 /* SynchronizedOnType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedOnType.swift; path = RxSwift/Concurrency/SynchronizedOnType.swift; sourceTree = ""; }; + 1935B650026341A61BB7FAB0C081AD16 /* DDUIGestureRecognizer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDUIGestureRecognizer-prefix.pch"; sourceTree = ""; }; + 198924C29838CDB965722E2D7481E605 /* JXCategoryImageCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageCell.m; path = Sources/Image/JXCategoryImageCell.m; sourceTree = ""; }; + 19B9354E9C62D4DD6CBAC98AE3EEC6C0 /* EKAccessoryNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAccessoryNoteMessageView.swift; path = Source/MessageViews/Notes/EKAccessoryNoteMessageView.swift; sourceTree = ""; }; + 19D80402B8EF2D87BD76DF3ABB909097 /* JXCategoryIndicatorParamsModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorParamsModel.m; path = Sources/Common/JXCategoryIndicatorParamsModel.m; sourceTree = ""; }; + 19DBB05FE14851A626C697BAD50A5BCE /* SnapKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.release.xcconfig; sourceTree = ""; }; + 19EC3671AF1CF02CE56689C97034073C /* RequestTaskMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestTaskMap.swift; path = Source/RequestTaskMap.swift; sourceTree = ""; }; + 19EFD61DDF0AC19F722B561503939DBA /* DDAttributedString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAttributedString.swift; path = DDControlsKit_Private/Classes/DDAttributedString/DDAttributedString.swift; sourceTree = ""; }; + 1A01F98506172B29980B23B134681B21 /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = DDWebImageKit_Private/Classes/SDWebImage/SDWebImage.h; sourceTree = ""; }; + 1A56EC2EEC3B74BF75D5510561E40AE7 /* Throttle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Throttle.swift; path = RxSwift/Observables/Throttle.swift; sourceTree = ""; }; + 1A59DAC80F4D57F85549837E03B6252D /* JXCategoryFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryFactory.m; path = Sources/Common/JXCategoryFactory.m; sourceTree = ""; }; + 1A9B4B246DAC7932B71D79F43E53F722 /* ZLClipImageDismissAnimatedTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLClipImageDismissAnimatedTransition.swift; path = Sources/Animation/ZLClipImageDismissAnimatedTransition.swift; sourceTree = ""; }; + 1AB94E7718648455CBB26CB8B4D9E528 /* Maybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Maybe.swift; path = RxSwift/Traits/PrimitiveSequence/Maybe.swift; sourceTree = ""; }; + 1B5E3560B2BC7A5346466FF078AC933B /* ParameterEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoder.swift; path = Source/ParameterEncoder.swift; sourceTree = ""; }; + 1B5FA0581C54F7D5C0E1F78B9F28D245 /* JCore.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JCore.release.xcconfig; sourceTree = ""; }; + 1B82825CF8D80E3754F11399F172CDEF /* ScheduledItemType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItemType.swift; path = RxSwift/Schedulers/Internal/ScheduledItemType.swift; sourceTree = ""; }; + 1BC172D80DCC9AAA3282F72EFA8003F7 /* DriveRouteCustomAnnotationView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DriveRouteCustomAnnotationView.m; path = DDMAMapKit_Private/Classes/DDMAMap/AnnotationView/DriveRouteCustomAnnotationView.m; sourceTree = ""; }; + 1BC6C6E91ED727D59BA74D2DED7F652D /* UIColor+Hue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+Hue.swift"; path = "DDColorKit_Private/Classes/UIColor+Hue.swift"; sourceTree = ""; }; + 1BF69CAA1539ABD030E097DAB8F9A0C9 /* MATraceReplayOverlayRender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceReplayOverlayRender.h; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlayRender.h; sourceTree = ""; }; + 1C47797277477319BB9140FCFEB3972F /* ZFPlayerMediaControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerMediaControl.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerMediaControl.h; sourceTree = ""; }; + 1C739B3A8EED462322A08F10D243BAE6 /* UIButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Kingfisher.swift"; path = "Sources/Extensions/UIButton+Kingfisher.swift"; sourceTree = ""; }; + 1C755B12374C83F0BFBD661E2D8291FF /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; + 1C8CA376E5E1A2B463770BB2B11FA09A /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; + 1CF7C4DAFD7BA02F288F6F59C8906BED /* DDMANaviManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMANaviManager.h; path = DDMAMapKit_Private/Classes/DDMANaviManager/DDMANaviManager.h; sourceTree = ""; }; + 1D084B2827EF44C0459A1108CFBE9757 /* DDUIGestureRecognizer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDUIGestureRecognizer.debug.xcconfig; sourceTree = ""; }; + 1D0B85E700D10B3D96D321CD150B9585 /* 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 = ""; }; + 1D3E800F1536BBD1AEC2B4D773CCF487 /* DDPersistenceKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDPersistenceKit_Private.debug.xcconfig; sourceTree = ""; }; + 1DD398B6FCA0459FC7C53C038027EF81 /* DDBaseTabBarController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTabBarController.m; path = DDBasicControlsKit_Private/Classes/DDBaseTabBarController/DDBaseTabBarController.m; sourceTree = ""; }; + 1DE4B683C0352BB899D3372814A4F3AA /* DDMALocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMALocationManager.h; path = DDMAMapKit_Private/Classes/DDMALocation/DDMALocationManager.h; sourceTree = ""; }; + 1DEF627035151120436DEA02CE1FC1F8 /* 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 = ""; }; + 1E07A9B1980C5A6518CFD1541079C809 /* DDControlsKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDControlsKit_Private.modulemap; sourceTree = ""; }; + 1ECA2DBB53DE392B801A4D9D04EE15AF /* ZFUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFUtilities.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFUtilities.h; sourceTree = ""; }; + 1ECA38E0662E0E754A47CDBD3E9503DA /* Resource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Resource.swift; path = Sources/General/ImageSource/Resource.swift; sourceTree = ""; }; + 1F126DAE986142BBF75173CC39F97817 /* DDNetworkingOfAlamofireKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDNetworkingOfAlamofireKit_Private-dummy.m"; sourceTree = ""; }; + 1F1335433A485FE1BE97694DFE344372 /* RetryStrategy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryStrategy.swift; path = Sources/Networking/RetryStrategy.swift; sourceTree = ""; }; + 1F3E133440B92A7064598D733291ACB5 /* ControlEvent+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlEvent+Signal.swift"; path = "RxCocoa/Traits/Signal/ControlEvent+Signal.swift"; sourceTree = ""; }; + 1F46DBBEA65E11053983B2FB2753E246 /* Error.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Error.swift; path = RxSwift/Observables/Error.swift; sourceTree = ""; }; + 1F5F02C9DB38EB4B37BC0F8D03E8544F /* 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 = ""; }; + 1F63DE719625B11D8C655A86675C5F52 /* ImageProgressive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProgressive.swift; path = Sources/Image/ImageProgressive.swift; sourceTree = ""; }; + 1F7850CC6AF396911DBC37C096122FC3 /* JXCategoryBaseCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseCell.h; path = Sources/Base/JXCategoryBaseCell.h; sourceTree = ""; }; + 1FDC054B08B8EE649AA446C68E377138 /* CacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CacheSerializer.swift; path = Sources/Cache/CacheSerializer.swift; sourceTree = ""; }; 1FEA06F110D30604A9FB015A9790A954 /* DDControlsKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDControlsKit_Private; path = libDDControlsKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + 20697AEF7802331E3C05E0E40131C8C8 /* 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 = ""; }; + 2073F13CD5B17C87AF57433704ED9629 /* 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 = ""; }; + 20755936004034DEBDEDE77720ADCE70 /* 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 = ""; }; + 20DB2458655CE5D438AF415CAA3AB252 /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefresh/MJRefreshConst.h; sourceTree = ""; }; + 20F3500FF1E044EA580817468A430F1B /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = ""; }; + 2103AD375C76744409D72BA18D2FE29F /* RxPickerViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxPickerViewDelegateProxy.swift; sourceTree = ""; }; + 2161B7F55B0DE5BE6EFF11A465F486D1 /* CurrentThreadScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurrentThreadScheduler.swift; path = RxSwift/Schedulers/CurrentThreadScheduler.swift; sourceTree = ""; }; + 217FC27D2C936C10FE219350E061647F /* MATraceLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceLocation.h; path = AMapNaviKit.framework/Headers/MATraceLocation.h; sourceTree = ""; }; + 2185B6C19379A6AC7B43E5288C9DC539 /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Alamofire.modulemap; sourceTree = ""; }; + 21C371879B967B4F6AF7396CA5CA5C04 /* RxPickerViewAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewAdapter.swift; path = RxCocoa/iOS/DataSources/RxPickerViewAdapter.swift; sourceTree = ""; }; + 21CD825AB7F6DDE2D64572AB5F46E51C /* Cell+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Cell+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Cell+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 21D94222DA66800B1EE3962C2ED2479B /* ZFPlayerNotification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerNotification.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerNotification.h; sourceTree = ""; }; + 21DF8C1CDD93BE8C608B10C7A99FF308 /* 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 = ""; }; + 21E6071B51761D1B0624904B2F6FD1F2 /* ImageDrawing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDrawing.swift; path = Sources/Image/ImageDrawing.swift; sourceTree = ""; }; + 21ED43FD5413676EAFFB003362ED05D5 /* EKRootViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRootViewController.swift; path = Source/Infra/EKRootViewController.swift; sourceTree = ""; }; + 225A3B0A39008DF65BD367665DDA3EAF /* ZLPhotoBrowser.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = ZLPhotoBrowser.bundle; path = Sources/ZLPhotoBrowser.bundle; sourceTree = ""; }; + 2290050181557ABDD89151183EF2B605 /* AMapNearbySearchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNearbySearchManager.h; path = AMapSearchKit.framework/Headers/AMapNearbySearchManager.h; sourceTree = ""; }; + 22BBEC4A4C4FB540F8486D7554952E1A /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; + 22D9C5FE1273030D15B6763B6B54B6B7 /* NSSlider+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSSlider+Rx.swift"; path = "RxCocoa/macOS/NSSlider+Rx.swift"; sourceTree = ""; }; + 22F11DA069DD29CE65443003A51FE726 /* car_xingshi@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "car_xingshi@3x.png"; path = "DDMAMapKit_Private/Assets/car_xingshi@3x.png"; sourceTree = ""; }; + 22FA55AC60E7CB37990BD44C08CB6751 /* IQKeyboardManagerSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "IQKeyboardManagerSwift-dummy.m"; sourceTree = ""; }; + 231EC6C4E55AAEADFF22D1198C1940BD /* MAMultiPointOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPointOverlay.h; path = AMapNaviKit.framework/Headers/MAMultiPointOverlay.h; sourceTree = ""; }; + 232C78DA30626E4D5D630977C88C02DE /* DDCategoryKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDCategoryKit_Private-umbrella.h"; sourceTree = ""; }; + 23A2B938F4BD4B9E2AEF9E234DB2D33C /* RecursiveScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveScheduler.swift; path = RxSwift/Schedulers/RecursiveScheduler.swift; sourceTree = ""; }; + 23E262A76C5B93AEA1EBED9CB7FCD754 /* EKAttributes+FrameStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+FrameStyle.swift"; path = "Source/Model/EntryAttributes/EKAttributes+FrameStyle.swift"; sourceTree = ""; }; + 24036AE1074A61EA6BF3D1255E28EDB2 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; + 24B7E9080BFE6C997B5F17619677113E /* EKSimpleMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKSimpleMessageView.swift; path = Source/MessageViews/EKSimpleMessageView.swift; sourceTree = ""; }; + 24CA29109E20F9275E38F8FBFFAD09F8 /* JXCategoryNumberCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberCellModel.h; path = Sources/Number/JXCategoryNumberCellModel.h; sourceTree = ""; }; + 24D419A749A3EF2DB63614969FABCCBA /* AMapFoundation-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapFoundation-NO-IDFA.release.xcconfig"; sourceTree = ""; }; + 24F414B07DE7D57F29C8DD5C1B7B94BA /* ZLPhotoConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoConfiguration.swift; path = Sources/General/ZLPhotoConfiguration.swift; sourceTree = ""; }; + 250EDFF28DF12E1484194728C0A13665 /* MBProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MBProgressHUD.h; path = DDProgressHUDKit_Private/Classes/MBProgressHUD.h; sourceTree = ""; }; + 25197147B1BDCF7829FAC33F8D90A2A2 /* SynchronizedDisposeType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SynchronizedDisposeType.swift; path = RxSwift/Concurrency/SynchronizedDisposeType.swift; sourceTree = ""; }; + 2546320FA557E55667BE189ABE849B34 /* ZFPlayerLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerLogManager.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerLogManager.h; sourceTree = ""; }; + 25620580657139A91501761C0E2C0EE8 /* SDWebImageMapKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageMapKit.h; path = DDWebImageKit_Private/Classes/SDWebImageMapKit/SDWebImageMapKit.h; sourceTree = ""; }; + 2620ADC3E00641CA2E744DB523F945EC /* EKWrapperView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKWrapperView.swift; path = Source/Infra/EKWrapperView.swift; sourceTree = ""; }; + 26574936449535B509BE5C6D0034E0C7 /* IQKeyboardManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManager.swift; path = IQKeyboardManagerSwift/IQKeyboardManager.swift; sourceTree = ""; }; + 26A19A66A3BD9A7DDE5A0EF74E057E90 /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackGifFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m; sourceTree = ""; }; + 26A2E988B0E144175C54E387D5439905 /* AMapSearchObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchObj.h; path = AMapSearchKit.framework/Headers/AMapSearchObj.h; sourceTree = ""; }; + 26C6DCC4AA19DF0161F8F6C6B39FAA5A /* Single.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Single.swift; path = RxSwift/Traits/PrimitiveSequence/Single.swift; sourceTree = ""; }; + 273B2F6C4A42A708F9FCB7CE4D6A29B3 /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; + 274E947A2A873E3FD5362C0F2FD472C0 /* UIScrollView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+Rx.swift"; path = "RxCocoa/iOS/UIScrollView+Rx.swift"; sourceTree = ""; }; + 277FF58F134845011CF6F9EDF6779546 /* JXCategoryIndicatorComponentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorComponentView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorComponentView.h; sourceTree = ""; }; + 27899DD27632A9F27F15589704AEFFB9 /* SwiftSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftSupport.swift; path = RxSwift/SwiftSupport/SwiftSupport.swift; sourceTree = ""; }; + 2790E6FB8D6725649EC7DD0E59B9679F /* SwiftyRSA+ObjC.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SwiftyRSA+ObjC.swift"; path = "Source/SwiftyRSA+ObjC.swift"; sourceTree = ""; }; + 27935E6A76148C4CC3A43A08E5BB374A /* 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 = ""; }; + 280D5EF936A2580A91A42298138CA9A0 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; + 2817608EDD36410A5DB4FB72F51602FA /* ConstraintRelatableTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelatableTarget.swift; path = Sources/ConstraintRelatableTarget.swift; sourceTree = ""; }; + 28A98C9B5D697744DB95098A8FFF5B8B /* AMapLocation-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapLocation-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; + 28E96632CE12E61FA77F2320A4E64891 /* PrivateKey.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrivateKey.swift; path = Source/PrivateKey.swift; sourceTree = ""; }; + 290A8A27E575C3A9AF8317932B8C668E /* SwiftEntryKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftEntryKit.release.xcconfig; sourceTree = ""; }; + 2934BA2CEA013912A529BD258CA78FF6 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = Sources/en.lproj; sourceTree = ""; }; + 2939C7819E5A12221623F773DF77D831 /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; + 295A6E787530D5136253F0A207197D98 /* UITableView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITableView+Rx.swift"; path = "RxCocoa/iOS/UITableView+Rx.swift"; sourceTree = ""; }; + 29F2E88129E33053604F01B0A2345386 /* KingfisherError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherError.swift; path = Sources/General/KingfisherError.swift; 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 = ""; }; + 2AAFEF40372B8476A5373AE50FB4DED8 /* AnyObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyObserver.swift; path = RxSwift/AnyObserver.swift; sourceTree = ""; }; 2AB85225A76FD605AAA4578E1A765164 /* Pods-OrderScheduling.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OrderScheduling.release.xcconfig"; 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 = ""; }; + 2ADEA647B9653D68C43A8AB4568E7846 /* ZLImageNavController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLImageNavController.swift; path = Sources/General/ZLImageNavController.swift; sourceTree = ""; }; + 2B5E1308D0498DDA1BAE3780B738588E /* 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 = ""; }; + 2B8ABD9E511421907B266B104A52DCB2 /* DDBaseTableView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTableView.h; path = DDBasicControlsKit_Private/Classes/DDBaseTableView/DDBaseTableView.h; sourceTree = ""; }; + 2B9552FCBFE21A3BC81FE557772B549D /* DDZFPlayerKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDZFPlayerKit_Private-umbrella.h"; sourceTree = ""; }; + 2BCCBEDCD22DC7F0FE533D49617EB2D5 /* WKInterfaceImage+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKInterfaceImage+Kingfisher.swift"; path = "Sources/Extensions/WKInterfaceImage+Kingfisher.swift"; sourceTree = ""; }; + 2BDF2C5E718C6769207083C6E8EB1A93 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = RxSwift/Observables/Filter.swift; sourceTree = ""; }; + 2BE1B37DEC9DAD6C065AFB6FE0E02E76 /* DDWebImageKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDWebImageKit_Private.modulemap; sourceTree = ""; }; + 2BFA0489989445DD2B4962E11806481B /* DDBaseAttributedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseAttributedString.h; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseAttributedString.h; sourceTree = ""; }; + 2C0B5C4EEEB02265B88B00F64A69B41E /* DispatchQueue+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Extensions.swift"; path = "Platform/DispatchQueue+Extensions.swift"; sourceTree = ""; }; + 2C490D20EDACA6A662B727C0166EA7D9 /* RxRelay.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxRelay.release.xcconfig; sourceTree = ""; }; + 2C59C90FEC69AED1404197E1EC6BCF8C /* SerialDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDisposable.swift; path = RxSwift/Disposables/SerialDisposable.swift; sourceTree = ""; }; + 2C9A84455ABE4629AB73B15B698AD049 /* BRResultModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRResultModel.h; path = BRPickerView/StringPickerView/BRResultModel.h; sourceTree = ""; }; + 2CBC6225504BE0C1B1C22A9B7E0D5004 /* ZFNetworkSpeedMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFNetworkSpeedMonitor.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFNetworkSpeedMonitor.m; sourceTree = ""; }; + 2D0097DBB3542F32ECCF4A04A38DBC63 /* 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 = ""; }; + 2D54239F5B771C2A283FFB230410DA5A /* DDColorKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDColorKit_Private-prefix.pch"; sourceTree = ""; }; + 2DBF46FC17F26606228D9C7D49EBDFCA /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoGifFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h; sourceTree = ""; }; 2DE47AF6516BB19369CA020EA7C48A4A /* DDNetworkingOfAlamofireKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDNetworkingOfAlamofireKit_Private; path = libDDNetworkingOfAlamofireKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + 2DF705364F0BC43C833CC7D012C90C75 /* 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 = ""; }; + 2E0FE5903EDDBECEBCA6986831792A1D /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; + 2E2F004D13B5E083B12131387642B38A /* 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 = ""; }; + 2E533C5837506931185AA2A80EB49E5E /* DelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelegateProxy.swift; path = RxCocoa/Common/DelegateProxy.swift; sourceTree = ""; }; + 2E5EA93FE5870D31B6974C927E031778 /* Repeat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Repeat.swift; path = RxSwift/Observables/Repeat.swift; sourceTree = ""; }; + 2E7572BCA0726F4BBDAC725F8D72D30E /* JXCategoryTitleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleView.m; path = Sources/Title/JXCategoryTitleView.m; sourceTree = ""; }; + 2E76E03EB8A76B24B807AE35F123F29A /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; + 2F4005DBF5C9517C79EE0D76B3E055FE /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = ""; }; + 2FA31007B6D93602F27D3323C15FC96A /* JXCategoryImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageView.h; path = Sources/Image/JXCategoryImageView.h; sourceTree = ""; }; + 2FB0C728A4B0E64CD956D4D35B6EFD27 /* ConstraintMakerRelatable+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintMakerRelatable+Extensions.swift"; path = "Sources/ConstraintMakerRelatable+Extensions.swift"; sourceTree = ""; }; + 2FBBBB12EDBFB983B3BA4BAF8C5FB23A /* AMapFoundationKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationKit.h; path = AMapFoundationKit.framework/Headers/AMapFoundationKit.h; sourceTree = ""; }; + 2FC99AEF9325DC652C27BD7D2F617307 /* JXCategoryIndicatorImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorImageView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorImageView.m; sourceTree = ""; }; + 3015EFFDE4AEC9AA8AEF53C903A9B7F9 /* DDTimerSwiftKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDTimerSwiftKit_Private.modulemap; sourceTree = ""; }; + 304ED5CCB3C625B2C0E4B4433AD73814 /* 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 = ""; }; + 305627E9AB98A769E88C7AFABE7746CF /* 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 = ""; }; + 3081305964160CF2FE04DBFF7C825C9F /* AMapTrackTerminalObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackTerminalObj.h; path = AMapTrackKit.framework/Headers/AMapTrackTerminalObj.h; sourceTree = ""; }; + 309A702838F2115A0BE51A6F1FB73B0A /* MACircleRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACircleRenderer.h; path = AMapNaviKit.framework/Headers/MACircleRenderer.h; sourceTree = ""; }; + 30DC0F7A4DF3F1BA2A24DAC6C68F6846 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; + 315A20ED27D7DCA059FFFCE69D36FD1B /* TakeWithPredicate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeWithPredicate.swift; path = RxSwift/Observables/TakeWithPredicate.swift; sourceTree = ""; }; + 31ADC7D2323622EC9BA4BFEB35C6C818 /* JXCategoryIndicatorParamsModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorParamsModel.h; path = Sources/Common/JXCategoryIndicatorParamsModel.h; sourceTree = ""; }; + 31B17B5BC0B7F981FCE3EB0BEC4C6493 /* DDLogKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDLogKit_Private-prefix.pch"; sourceTree = ""; }; + 3216FEB31DC406BCF4654E8BE74EFE08 /* UIView+ZFFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+ZFFrame.h"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIView+ZFFrame.h"; sourceTree = ""; }; + 32730F8A7A18DB932A7FECAAE3F9EBF8 /* ZLInputTextViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLInputTextViewController.swift; path = Sources/Edit/ZLInputTextViewController.swift; sourceTree = ""; }; + 32AE1FE472FCB6CC7C6905B414F597BF /* DiskStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DiskStorage.swift; path = Sources/Cache/DiskStorage.swift; sourceTree = ""; }; + 32B8F4B00CC214F4ADBA31948EFF1530 /* JXCategoryView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = JXCategoryView.modulemap; sourceTree = ""; }; + 32F084C19384365A8CA7A0C4615145E4 /* RxCollectionViewReactiveArrayDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewReactiveArrayDataSource.swift; path = RxCocoa/iOS/DataSources/RxCollectionViewReactiveArrayDataSource.swift; sourceTree = ""; }; + 330E865281109556CAE4DB7A35DB1195 /* AMapNaviBaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviBaseManager.h; path = AMapNaviKit.framework/Headers/AMapNaviBaseManager.h; sourceTree = ""; }; + 332A98704F5F6B076FE302371087FD46 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; + 333F2DD39100144CEC674B19431775F8 /* IQUIView+Hierarchy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIView+Hierarchy.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIView+Hierarchy.swift"; sourceTree = ""; }; + 3345FC12F5432119241137F410F1F47D /* 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 = ""; }; + 33752FE261B0C078F848B58A07AA481B /* JXCategoryTitleCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleCellModel.h; path = Sources/Title/JXCategoryTitleCellModel.h; sourceTree = ""; }; + 337AC09FE0D05A9DA699E817FC6F5F51 /* RxCocoa.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCocoa.swift; path = RxCocoa/RxCocoa.swift; sourceTree = ""; }; + 33A9D92711ACDB2898BFF0CFF2F3EE75 /* RxSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxSwift.modulemap; sourceTree = ""; }; + 33D7B7C9CF4C295AA54334F0046EE901 /* HTTPHeaders.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPHeaders.swift; path = Source/HTTPHeaders.swift; sourceTree = ""; }; + 33D9D57752039D3412720692F13977DB /* HistoricalScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalScheduler.swift; path = RxSwift/Schedulers/HistoricalScheduler.swift; sourceTree = ""; }; + 33E92A2F19E132481C1946D42238AB68 /* SwiftEntryKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftEntryKit.swift; path = Source/SwiftEntryKit.swift; sourceTree = ""; }; 3431A513DD5CF052B33F1798DE98E1E6 /* Pods-OrderScheduling-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-OrderScheduling-acknowledgements.markdown"; 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 = ""; }; + 3438D118E49B28076AAA4FC9A453BC83 /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackStateFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h; sourceTree = ""; }; + 346C2ED81B703129EE19E024234EFFD8 /* ZFPlayerMediaPlayback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerMediaPlayback.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerMediaPlayback.h; sourceTree = ""; }; + 34CC3770E898F07F459877A63FAEB43E /* IQBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQBarButtonItem.swift; sourceTree = ""; }; + 351D70A21EFE25A7DD5501D53307CD41 /* ConstraintView+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintView+Extensions.swift"; path = "Sources/ConstraintView+Extensions.swift"; sourceTree = ""; }; + 353E568A1A831B3A346D0130295CF756 /* NSControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSControl+Rx.swift"; path = "RxCocoa/macOS/NSControl+Rx.swift"; sourceTree = ""; }; + 3549C98214FF7D02981B0D98B6CA79C0 /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; + 35A754FDB59B0DB8A23200979795D334 /* AMapFoundationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapFoundationKit.framework; sourceTree = ""; }; 35BC09180850FDD03C450D14BD310714 /* DDProgressHUDKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDProgressHUDKit_Private; path = libDDProgressHUDKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + 361CF9ACE31045529002F6F3209B3D80 /* JXCategoryTitleVerticalZoomView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomView.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomView.h; sourceTree = ""; }; + 361F71DB6C83855F5354208ECE297AD4 /* Observable+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Bind.swift"; path = "RxCocoa/Common/Observable+Bind.swift"; sourceTree = ""; }; + 363F011DC1FF87C3247411AFB1659531 /* ObservableConvertibleType+SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+SharedSequence.swift"; path = "RxCocoa/Traits/SharedSequence/ObservableConvertibleType+SharedSequence.swift"; sourceTree = ""; }; + 365BECFE3ACA2123A3FE62FC16189B16 /* ZFPersentInteractiveTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPersentInteractiveTransition.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPersentInteractiveTransition.h; sourceTree = ""; }; + 3690225A06D71775C52F0A985F305B9F /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; + 371181C2A15EBAA5B0FC3C4B09A77A72 /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; + 372B2A09B3DB27C695D55E8B92716B9C /* ZFSpeedLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFSpeedLoadingView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSpeedLoadingView.m; sourceTree = ""; }; + 373CEB444661E37B54E13728D920DC91 /* JPush-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "JPush-xcframeworks.sh"; sourceTree = ""; }; + 3771D2E74B9C62FD95124980CA0AB61A /* DDBaseImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseImageView.h; path = DDBasicControlsKit_Private/Classes/DDBaseImageView/DDBaseImageView.h; sourceTree = ""; }; + 37781223FDEA4CDD8B66B49C14C53909 /* DDTimerSwiftKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDTimerSwiftKit_Private-prefix.pch"; sourceTree = ""; }; + 386BCD60DA6DBEC2D98AC156696830CE /* BehaviorSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorSubject.swift; path = RxSwift/Subjects/BehaviorSubject.swift; sourceTree = ""; }; + 38B271677BCF17F8B3AA393BAB770E03 /* MAPathShowRange.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPathShowRange.h; path = AMapNaviKit.framework/Headers/MAPathShowRange.h; sourceTree = ""; }; + 38B3C4A9564C4C0152FC378BECB78BBD /* _RX.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RX.h; path = RxCocoa/Runtime/include/_RX.h; sourceTree = ""; }; + 38CFCC46DA1554A043039C4464B0CF5D /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = ""; }; + 391D39FB31B7FE1E6330FC05742F83E7 /* ZFPortraitControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPortraitControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPortraitControlView.m; sourceTree = ""; }; + 3959754FECDE99CD5B3966F34DC1C452 /* RxRelay-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxRelay-dummy.m"; sourceTree = ""; }; + 395C2231E068862D97CA29529AD18DE1 /* MBProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MBProgressHUD.m; path = DDProgressHUDKit_Private/Classes/MBProgressHUD.m; sourceTree = ""; }; + 398DF2961A9DBEDEEE8F37805E3DE56C /* DDBaseTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTextView.m; path = DDBasicControlsKit_Private/Classes/DDBaseTextView/DDBaseTextView.m; sourceTree = ""; }; 39C2ABB7EE85CD6B4D61998636DB33BB /* Pods-OrderSchedulingNotificationService-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-OrderSchedulingNotificationService-acknowledgements.plist"; 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 = ""; }; - 3BA50CAB6FDB17485A8E123464C43BDE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; 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 = ""; }; + 39C4AE6A5477E66DB8EF75B3A0C31652 /* DDControlsKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDControlsKit_Private.debug.xcconfig; sourceTree = ""; }; + 39C5A540E8623D397DB9B33C786EEB34 /* JXCategoryView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXCategoryView-umbrella.h"; sourceTree = ""; }; + 3A2DAD51E238CE866DB40C7706EA0095 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; + 3A31E7B6A9875CF4ED6F210C53487985 /* ESTabBarController-swift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ESTabBarController-swift-prefix.pch"; sourceTree = ""; }; + 3A4F4C4A9DE17BCCC7B4B7C711D146E1 /* RxCollectionViewDataSourcePrefetchingProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourcePrefetchingProxy.swift; path = RxCocoa/iOS/Proxies/RxCollectionViewDataSourcePrefetchingProxy.swift; sourceTree = ""; }; + 3A72BBBF3A4AD8500A8EE38B2BA3FF16 /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = ""; }; + 3A9739EFBFBD04AE760EC4819117A4E5 /* JXCategoryTitleImageCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageCellModel.h; path = Sources/TitleImage/JXCategoryTitleImageCellModel.h; sourceTree = ""; }; + 3B763723156DA73EF644488D056097FB /* DDBaseTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTableViewCell.m; path = DDBasicControlsKit_Private/Classes/DDBaseTableViewCell/DDBaseTableViewCell.m; sourceTree = ""; }; + 3B8D373C213F8AC8B4B2D5C010D5FD6A /* ConstraintLayoutSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupport.swift; path = Sources/ConstraintLayoutSupport.swift; sourceTree = ""; }; + 3BA3686CE2A2D9793C12B1A45C688717 /* DDTimerSwiftKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDTimerSwiftKit_Private-dummy.m"; sourceTree = ""; }; + 3BD5049C7E7CA0CAEC7AF90BFF1FBF37 /* Bugly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Bugly.debug.xcconfig; sourceTree = ""; }; + 3BE7D202B93B07C3559872F2CBB2421F /* Reduce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reduce.swift; path = RxSwift/Observables/Reduce.swift; sourceTree = ""; }; + 3BFF040C3B7EB4B06F8327F826C92823 /* 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 = ""; }; + 3C0C25B49BD53F96C514E15B4669C4B9 /* ZFLandscapeViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLandscapeViewController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeViewController.m; sourceTree = ""; }; + 3C2CDFC311ADE48F355DF75F7B557AA2 /* MAPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolyline.h; path = AMapNaviKit.framework/Headers/MAPolyline.h; sourceTree = ""; }; + 3C44F62C22DF3008C7CC0519407F5187 /* RTLManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RTLManager.m; path = Sources/RLTManager/RTLManager.m; sourceTree = ""; }; + 3CA8C889B446D161712CE863896F7BE4 /* EKAttributes+Precedence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Precedence.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Precedence.swift"; sourceTree = ""; }; + 3CAA888F101891B4378A6B3BF94B6670 /* Infallible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Infallible.swift; path = RxSwift/Traits/Infallible/Infallible.swift; sourceTree = ""; }; + 3CB00C1EF4360C618CCA5A38F658946A /* 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 = ""; }; + 3CD6AA262FA3C7C56326222F1F962ABD /* JPush.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPush.debug.xcconfig; sourceTree = ""; }; + 3CDFC2D26E2DBC26781C63F8B6332D47 /* DDKeychain.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDKeychain.swift; path = DDPersistenceKit_Private/Classes/DDKeychain.swift; sourceTree = ""; }; + 3D21AD7E4E73EF184AB3068EECD2A7EE /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = ""; }; + 3D362CACDECC39F763D908ADADD45CF7 /* DDTimerSwiftKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDTimerSwiftKit_Private-umbrella.h"; sourceTree = ""; }; + 3D431EA69A167891A4820C57419741E6 /* NSTextStorage+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextStorage+Rx.swift"; path = "RxCocoa/iOS/NSTextStorage+Rx.swift"; sourceTree = ""; }; + 3D5E4C805A263C00F598441E53FFA2A0 /* ExtensionHelpers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExtensionHelpers.swift; path = Sources/Utility/ExtensionHelpers.swift; sourceTree = ""; }; + 3D6E7FAE8A3D8AA188E7627A096DF2EF /* 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 = ""; }; + 3DFB8D71098F786D73A6F9575F54791A /* DDBasicControlsKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDBasicControlsKit_Private.debug.xcconfig; sourceTree = ""; }; + 3E4F5351005D4800B64116FC1E9C3710 /* ConstraintDirectionalInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsetTarget.swift; path = Sources/ConstraintDirectionalInsetTarget.swift; sourceTree = ""; }; + 3E872D89E831F2D48C7F15D1B0B98A37 /* SizeExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SizeExtensions.swift; path = Sources/Utility/SizeExtensions.swift; sourceTree = ""; }; + 3F05A75DD37C54EA2690FFEFA61CA0A8 /* ZLCameraConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCameraConfiguration.swift; path = Sources/General/ZLCameraConfiguration.swift; sourceTree = ""; }; + 3F3181A148D887E3096CEC99ACD066B5 /* DDView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDView.swift; path = DDControlsKit_Private/Classes/DDView/DDView.swift; sourceTree = ""; }; + 3F3DE80888D43D3C9951DE4D84D5D1BE /* RxWKNavigationDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxWKNavigationDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxWKNavigationDelegateProxy.swift; sourceTree = ""; }; + 3F52C2B3D6B43F54728BEFA7C8D453DD /* MAPolygonRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolygonRenderer.h; path = AMapNaviKit.framework/Headers/MAPolygonRenderer.h; sourceTree = ""; }; + 3F71FA752AF4AD1CBE961DD87253EB4E /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; + 3F96AEFBFDFBBE687D261F1ADFA1A5E9 /* AMapSearchKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchKit.h; path = AMapSearchKit.framework/Headers/AMapSearchKit.h; sourceTree = ""; }; + 3FE430B533168DAECFE85F4140191E1E /* BRAddressPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRAddressPickerView.m; path = BRPickerView/AddressPickerView/BRAddressPickerView.m; sourceTree = ""; }; + 4040332B7FE3A86CA301916F4A943D89 /* DDBaseCollectionViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseCollectionViewCell.h; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionViewCell/DDBaseCollectionViewCell.h; sourceTree = ""; }; + 406F7E3229F593F84AD83A7E85A7761B /* Kingfisher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Kingfisher-dummy.m"; sourceTree = ""; }; + 408A95249D2949BFB8A25794EAB53F2F /* DDBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseView.h; path = DDBasicControlsKit_Private/Classes/DDBaseView/DDBaseView.h; sourceTree = ""; }; + 40F4E5C25156724C2F2D3CF57BF48F05 /* OperationQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OperationQueueScheduler.swift; path = RxSwift/Schedulers/OperationQueueScheduler.swift; sourceTree = ""; }; + 4107E70F84423A8E0BDB9EC90133CBD7 /* KVORepresentable+CoreGraphics.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KVORepresentable+CoreGraphics.swift"; path = "RxCocoa/Foundation/KVORepresentable+CoreGraphics.swift"; sourceTree = ""; }; + 4126420073094E3D763BB7A0E5D7CA54 /* AMapNaviStatisticsInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviStatisticsInfo.h; path = AMapNaviKit.framework/Headers/AMapNaviStatisticsInfo.h; sourceTree = ""; }; + 414DEEA9CD0A32CBD5AD1D286EB2228F /* 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 = ""; }; + 41AB2E3834CD80B47895D2E52F2A5A7F /* DDCategoryKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDCategoryKit_Private-dummy.m"; sourceTree = ""; }; + 41B1F2387D17F0545EEAA28FC56789B5 /* ZFPlayer.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = ZFPlayer.bundle; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPlayer.bundle; sourceTree = ""; }; + 41CED83574961870FBA1DDDE655D6329 /* ZLThumbnailPhotoCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLThumbnailPhotoCell.swift; path = Sources/General/ZLThumbnailPhotoCell.swift; sourceTree = ""; }; + 41E8E4C5E9E29C04A7A8A4B585174610 /* KFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFAnimatedImage.swift; path = Sources/SwiftUI/KFAnimatedImage.swift; sourceTree = ""; }; + 41EA1A9C8B2CEFC47FC9413A9FBEE795 /* ZLResultModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLResultModel.swift; path = Sources/General/ZLResultModel.swift; sourceTree = ""; }; + 424AEC4F2749338D1A1829FA0453BD22 /* DDCategoryKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDCategoryKit_Private.release.xcconfig; sourceTree = ""; }; + 4272B0BD4A2BE9F19990E0C6EFE3E0D7 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; + 4282CE5957809B946B809F2EA789AF4B /* MAMapVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapVersion.h; path = AMapNaviKit.framework/Headers/MAMapVersion.h; sourceTree = ""; }; + 4299D246DB3C42A023E4F347FA8817E4 /* MAAnimatedAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnimatedAnnotation.h; path = AMapNaviKit.framework/Headers/MAAnimatedAnnotation.h; sourceTree = ""; }; + 429B086293BF9ADAF7607AA1E330A07A /* UIEdgeInsets+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIEdgeInsets+Utils.swift"; path = "Source/Extensions/UIEdgeInsets+Utils.swift"; sourceTree = ""; }; + 42BD2AC49E322F1475EEB28FB0F7EBFE /* AMapNaviInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviInfo.h; path = AMapNaviKit.framework/Headers/AMapNaviInfo.h; sourceTree = ""; }; + 42CE894862A6551F3FD6D62E3B4F513A /* ObservableConvertibleType+Infallible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Infallible.swift"; path = "RxSwift/Traits/Infallible/ObservableConvertibleType+Infallible.swift"; sourceTree = ""; }; + 42E3EE2F918DDAC497F04BB514DDC8A4 /* Sequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sequence.swift; path = RxSwift/Observables/Sequence.swift; sourceTree = ""; }; + 42ED0C8493576B3B2DAC8BB706A3C67E /* DDBaseAttributedString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseAttributedString.m; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseAttributedString.m; sourceTree = ""; }; 42F10DB6CED6AC3E9AA446F86C16A0F5 /* DDBasicControlsKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDBasicControlsKit_Private; path = libDDBasicControlsKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + 431451112586F267C934663C4359E1AE /* ConstraintLayoutSupportDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupportDSL.swift; path = Sources/ConstraintLayoutSupportDSL.swift; sourceTree = ""; }; + 431782679AB85CC792CD54FC66A6F865 /* 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 = ""; }; + 4374971A6F77EA988C483A0D5EB207B4 /* URLSession+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSession+Rx.swift"; path = "RxCocoa/Foundation/URLSession+Rx.swift"; sourceTree = ""; }; 439EA354473F5B1B44C857E4C3A7D7D7 /* Pods-OrderScheduling-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-OrderScheduling-dummy.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 = ""; }; - 4C43BD69FD9C6CD32883C828F36FC9E5 /* DDUIGestureRecognizer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDUIGestureRecognizer.debug.xcconfig; 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 = ""; }; - 522D25F1600F0C13CE316743AF9EE20F /* DDUIGestureRecognizer.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = DDUIGestureRecognizer.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 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 = ""; }; + 43BAAF4125B2B7C23F8E906FA3E7997C /* EKTextField.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKTextField.swift; path = Source/MessageViews/MessagesUtils/EKTextField.swift; sourceTree = ""; }; + 44251D79E3CF70706B8F34DB409652E3 /* ZFPersentInteractiveTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPersentInteractiveTransition.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPersentInteractiveTransition.m; sourceTree = ""; }; + 442BF38ACEEB2A95CD854D11C3BB749D /* LockOwnerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LockOwnerType.swift; path = RxSwift/Concurrency/LockOwnerType.swift; sourceTree = ""; }; + 44322A20D771C3F7CB740629F767410D /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; + 447B4B856DF296CBC8356A4E4F0DBB49 /* ObservableType+PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+PrimitiveSequence.swift"; path = "RxSwift/Traits/PrimitiveSequence/ObservableType+PrimitiveSequence.swift"; sourceTree = ""; }; + 44A1DBE692BF431955C710EFEA6D5010 /* 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 = ""; }; + 455BE24F5F1C7200E7C8BB60ECD4DF6F /* 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 = ""; }; + 457746032015541C4109E295A482AEA4 /* DDMAMapView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMAMapView.m; path = DDMAMapKit_Private/Classes/DDMAMap/MapView/DDMAMapView.m; sourceTree = ""; }; + 45A54B0C5BBD3E42F6B6CE069DCEA312 /* UIView+Shadow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Shadow.swift"; path = "Source/Extensions/UIView+Shadow.swift"; sourceTree = ""; }; + 4614408AC4B0C896A3737952C0F41DD9 /* MAMultiPoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPoint.h; path = AMapNaviKit.framework/Headers/MAMultiPoint.h; sourceTree = ""; }; + 4626EE8B0CB5D9327B7343BD6DDC1071 /* AMapTrackVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackVersion.h; path = AMapTrackKit.framework/Headers/AMapTrackVersion.h; sourceTree = ""; }; + 463D297175DE8763E4F71E6D2FE91852 /* UICollectionViewLayout+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewLayout+MJRefresh.h"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.h"; sourceTree = ""; }; + 464CD8F4570B51C519E09AFA41112A3F /* RxTabBarControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTabBarControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTabBarControllerDelegateProxy.swift; sourceTree = ""; }; + 466D342F86962BABCF052FC27E610112 /* AMapNaviDriveManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviDriveManager.h; path = AMapNaviKit.framework/Headers/AMapNaviDriveManager.h; sourceTree = ""; }; + 46A34A02338061EADE6D0A8E23EC2901 /* Do.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Do.swift; path = RxSwift/Observables/Do.swift; sourceTree = ""; }; + 46B8A95C40EE03EF5115D2F1168FD571 /* ZLPhotoUIConfiguration+Chaining.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ZLPhotoUIConfiguration+Chaining.swift"; path = "Sources/General/ZLPhotoUIConfiguration+Chaining.swift"; sourceTree = ""; }; + 46D66D101D84367BD65081A1A244748A /* EKEntryView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKEntryView.swift; path = Source/Infra/EKEntryView.swift; sourceTree = ""; }; + 46E4D4512F13DCFD1212B1D250330DC9 /* UIPickerView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIPickerView+Rx.swift"; path = "RxCocoa/iOS/UIPickerView+Rx.swift"; sourceTree = ""; }; + 472562C8601F869521F331AF37C73900 /* IQKeyboardManager+Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Debug.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Debug.swift"; sourceTree = ""; }; + 472C95310D3E9326325D48CDD3A9B277 /* ZFPortraitViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPortraitViewController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPortraitViewController.m; sourceTree = ""; }; + 4763623B772F020E17DCB8248891393F /* Bool+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bool+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Bool+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 47848C71E5674983C399A3B98DD02638 /* MACircle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACircle.h; path = AMapNaviKit.framework/Headers/MACircle.h; sourceTree = ""; }; + 478DFBF13B36D4A09093D2C16A33EAE6 /* IQTitleBarButtonItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTitleBarButtonItem.swift; path = IQKeyboardManagerSwift/IQToolbar/IQTitleBarButtonItem.swift; sourceTree = ""; }; + 48329013E34142821D40FA4D80F06EDC /* ZFPresentTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPresentTransition.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPresentTransition.m; sourceTree = ""; }; + 490AD0FD50CAEABE5F4B573941F31CB4 /* DDBaseModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseModel.m; path = DDBasicControlsKit_Private/Classes/DDBaseModel/DDBaseModel.m; sourceTree = ""; }; + 49173471BB6AE2908BD9989328E1333C /* IQNSArray+Sort.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQNSArray+Sort.swift"; path = "IQKeyboardManagerSwift/Categories/IQNSArray+Sort.swift"; sourceTree = ""; }; + 493FE6A76079482FF5CF8F3C2444570F /* EKAttributes+PositionConstraints.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+PositionConstraints.swift"; path = "Source/Model/EntryAttributes/EKAttributes+PositionConstraints.swift"; sourceTree = ""; }; + 494476B60FCCACEA7079BCEB0080148A /* EKProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKProperty.swift; path = Source/Model/EKProperty.swift; sourceTree = ""; }; + 49B243634C54B2984100673C44A1395A /* BinaryDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BinaryDisposable.swift; path = RxSwift/Disposables/BinaryDisposable.swift; sourceTree = ""; }; + 49CFDE87917E04710ADF2283A1E54983 /* DDControlsKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDControlsKit_Private-prefix.pch"; sourceTree = ""; }; + 49EBB0A59C53BF36E37CAC40FC358FF4 /* AMapGeoFenceError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapGeoFenceError.h; path = AMapLocationKit.framework/Headers/AMapGeoFenceError.h; sourceTree = ""; }; + 49FB1EC653D272840E215E57E322E4D1 /* UIViewController+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIViewController+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 4AB144B8A6315A17571F0E392A919DCD /* BRBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRBaseView.m; path = BRPickerView/Base/BRBaseView.m; sourceTree = ""; }; + 4AB87EA43F2DBA3EB4E0AEA06B6C413B /* JXCategoryDotCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotCellModel.h; path = Sources/Dot/JXCategoryDotCellModel.h; sourceTree = ""; }; + 4AE9C6CD531DEE9989CEA93F5D471DD9 /* ZLPhotoManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoManager.swift; path = Sources/General/ZLPhotoManager.swift; sourceTree = ""; }; + 4B06F452379CFBDFA87F490D0D16A862 /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; + 4B0D3B7B2BCF78E03CBC19514D0A9270 /* Alamofire.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.debug.xcconfig; sourceTree = ""; }; + 4B26A5E3DB3AD5EE64E8DACAC02AE77C /* 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 = ""; }; + 4BA0D50EA6D6151A95ABB359E74B3474 /* Cancelable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Cancelable.swift; path = RxSwift/Cancelable.swift; sourceTree = ""; }; + 4BB996E3B95737B5D391C477524EABA6 /* SDImageAWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAWebPCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAWebPCoder.m; sourceTree = ""; }; + 4BC03D3ACF84885B64C2E9EC1791023C /* AMapLocationCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationCommonObj.h; path = AMapLocationKit.framework/Headers/AMapLocationCommonObj.h; sourceTree = ""; }; + 4BD16989233DEC0EAF9163AC4121FF46 /* DDBaseScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseScrollView.h; path = DDBasicControlsKit_Private/Classes/DDBaseScrollView/DDBaseScrollView.h; sourceTree = ""; }; + 4BE5A2A37B6BBA9E90F42A753FEC5689 /* EntryAppearanceDescriptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EntryAppearanceDescriptor.swift; path = Source/MessageViews/MessagesUtils/EntryAppearanceDescriptor.swift; sourceTree = ""; }; + 4BF0BF51AB4731B45B8B03E4AD2D7CED /* Sample.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sample.swift; path = RxSwift/Observables/Sample.swift; sourceTree = ""; }; + 4C1F185253DC51F255BA776064117957 /* DDMASearch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMASearch.m; path = DDMAMapKit_Private/Classes/DDMASearch/DDMASearch.m; sourceTree = ""; }; + 4C2E8959AB3413D81CEC970D12580AAF /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; + 4C316AFF5F31FD73A1072563D126E34B /* Infallible+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Bind.swift"; path = "RxCocoa/Common/Infallible+Bind.swift"; sourceTree = ""; }; + 4C4E2D5039129C5DDB1F47E2757EF79E /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; + 4C6624DED0B4B32DD8620EF629949DFE /* Producer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Producer.swift; path = RxSwift/Observables/Producer.swift; sourceTree = ""; }; + 4C70A4FB23FA3E14CA394467F423DD78 /* DDSpeechSynthesizer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDSpeechSynthesizer.swift; path = DDAudioPlayerKit_Private/Classes/DDSpeechSynthesizer.swift; sourceTree = ""; }; + 4C7A17640384B33065DE03CDEF045AB7 /* JXCategoryTitleImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageView.h; path = Sources/TitleImage/JXCategoryTitleImageView.h; sourceTree = ""; }; + 4C99216E5060E42043ED32D42481323E /* Dematerialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Dematerialize.swift; path = RxSwift/Observables/Dematerialize.swift; sourceTree = ""; }; + 4C9D5ED4DEBECC5E19644632ECE94707 /* MJRefreshTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshTrailer.m; path = MJRefresh/Base/MJRefreshTrailer.m; sourceTree = ""; }; + 4CEA02D2597987A57E68109914486C35 /* IQKeyboardManagerSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-umbrella.h"; sourceTree = ""; }; + 4CF20B8C9D05A0854551BD468863606A /* 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 = ""; }; + 4D0E3A13A93E334F804A60CCADB72F1A /* DDSwiftLog.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDSwiftLog.swift; path = DDLogKit_Private/Classes/SwiftLog/DDSwiftLog.swift; sourceTree = ""; }; + 4D2C743851A09B2A6B3724C89D6EFD0F /* KingfisherOptionsInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherOptionsInfo.swift; path = Sources/General/KingfisherOptionsInfo.swift; sourceTree = ""; }; + 4D43DE9089919C5D1CDF9BC60423966D /* Kingfisher.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.debug.xcconfig; sourceTree = ""; }; + 4D66F6FEF4CF9DF915751A09D68BDE2A /* Catch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Catch.swift; path = RxSwift/Observables/Catch.swift; sourceTree = ""; }; + 4D6F7F53AE7D5AC577979EF2B3DBC8B3 /* URLConvertible+URLRequestConvertible.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLConvertible+URLRequestConvertible.swift"; path = "Source/URLConvertible+URLRequestConvertible.swift"; sourceTree = ""; }; + 4DA096E0DD8E7FD2BDAAC89129A2824A /* DDNavigationController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDNavigationController.swift; path = DDControlsKit_Private/Classes/DDNavigationController/DDNavigationController.swift; sourceTree = ""; }; + 4DC4906ADAF959FE5B7AFE7AC5DA0FA5 /* DDBaseViewModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseViewModel.h; path = DDBasicControlsKit_Private/Classes/DDBaseViewModel/DDBaseViewModel.h; sourceTree = ""; }; + 4DFC036A62A358022223F07BA12A3092 /* 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 = ""; }; + 4E2DDAE53B52C281E0BA6830BEA149E7 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; + 4EA6F369CBB3FB4CC48C9D8F5DEB8C92 /* JXCategoryImageCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageCell.h; path = Sources/Image/JXCategoryImageCell.h; sourceTree = ""; }; + 4ECAECEC96421914C54723F1E59D553E /* ControlProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlProperty.swift; path = RxCocoa/Traits/ControlProperty.swift; sourceTree = ""; }; + 4EECC192C97F684F343F01A7084A8535 /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Source/RedirectHandler.swift; sourceTree = ""; }; + 4F64361A4B4659AAE66030A617B1815D /* JPushExtension-xcframeworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "JPushExtension-xcframeworks.sh"; sourceTree = ""; }; + 4F820A7A12E660E164671D6BCCBA7CC8 /* 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 = ""; }; + 4FA83B8A7AA08A8094261110F8AB52E9 /* Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Driver.swift; path = RxCocoa/Traits/Driver/Driver.swift; sourceTree = ""; }; + 4FAEC3742F1E09DA62DB97EBD7D8A15F /* AtomicInt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AtomicInt.swift; path = Platform/AtomicInt.swift; sourceTree = ""; }; + 4FED76C158E912D16AC748290C45725C /* EKAttributes+Animation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Animation.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Animation.swift"; sourceTree = ""; }; + 5050C9FBEC6E5371EDEBD880066E3D88 /* MAArcRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAArcRenderer.h; path = AMapNaviKit.framework/Headers/MAArcRenderer.h; sourceTree = ""; }; + 509C44695E41EECE9FD48B08D9E1A161 /* DDBaseTableView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTableView.m; path = DDBasicControlsKit_Private/Classes/DDBaseTableView/DDBaseTableView.m; sourceTree = ""; }; + 50D2536271FE329E1393FFB45239420C /* 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 = ""; }; + 50FD7549869B955E17B7B4D73F9A4A1D /* DriveRouteCustomAnnotation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DriveRouteCustomAnnotation.m; path = DDMAMapKit_Private/Classes/DDMAMap/Annotation/DriveRouteCustomAnnotation.m; sourceTree = ""; }; + 51384E5611E36C571C0066EA9BD9137F /* PublishRelay+Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PublishRelay+Signal.swift"; path = "RxCocoa/Traits/Signal/PublishRelay+Signal.swift"; sourceTree = ""; }; + 515845AD1E4F81D84BB2B852F2EABB53 /* ZFPortraitControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPortraitControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPortraitControlView.h; sourceTree = ""; }; + 5169308318F183E8145E35DFF3BBD5F0 /* JXCategoryIndicatorBackgroundView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorBackgroundView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBackgroundView.m; sourceTree = ""; }; + 517F7F3A30F03E692CE1A650603F160F /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = ""; }; + 51A2396BE6734D12FA36E5072941E6B4 /* AMapLocationVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationVersion.h; path = AMapLocationKit.framework/Headers/AMapLocationVersion.h; sourceTree = ""; }; + 51B41D89B28E2CE1DFDAED063E6F9B01 /* AMapNaviEleBikeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviEleBikeManager.h; path = AMapNaviKit.framework/Headers/AMapNaviEleBikeManager.h; sourceTree = ""; }; + 51C15303EE04DC081B316BC1D21CF4C1 /* 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 = ""; }; + 51CB50772BAF3D0328DE0CB9E8F9E354 /* ConstraintPriority.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriority.swift; path = Sources/ConstraintPriority.swift; sourceTree = ""; }; + 51D325EC40F0DD46BB8D12D5D7B875B6 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; + 5282EE44DEA450B95D40BD589E400D08 /* Window.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Window.swift; path = RxSwift/Observables/Window.swift; sourceTree = ""; }; + 529098BF095FDF966BB0C87BD9C50986 /* ZFLandscapeWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLandscapeWindow.h; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeWindow.h; sourceTree = ""; }; + 52C50037DD90E5A587B72957FB017716 /* _RXObjCRuntime.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXObjCRuntime.m; path = RxCocoa/Runtime/_RXObjCRuntime.m; sourceTree = ""; }; + 52F45FFF8D38F14F6DDB947E2069BCE5 /* DDBaseMutableAttributedString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseMutableAttributedString.h; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseMutableAttributedString.h; sourceTree = ""; }; + 52FA67F50DAFD273DCFE9E9D59E55095 /* RxCocoa-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxCocoa-prefix.pch"; sourceTree = ""; }; + 52FF72F067B913274A50FC6B65772CB3 /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; + 5309D1F5E2F946EF2A2332477D59DE9D /* EKBackgroundView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKBackgroundView.swift; path = Source/Infra/EKBackgroundView.swift; sourceTree = ""; }; + 531BE91522737064C0E7B04FB667ABA4 /* DDBaseImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseImage.h; path = DDBasicControlsKit_Private/Classes/DDBaseImage/DDBaseImage.h; sourceTree = ""; }; + 53970BE51104CA4805F2DFF4EADEC94B /* Merge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Merge.swift; path = RxSwift/Observables/Merge.swift; sourceTree = ""; }; + 54318A8730DDA27BF665B8CA1C6B6EF9 /* DDCategoryKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDCategoryKit_Private.modulemap; sourceTree = ""; }; + 54474303245141ABEE828DB13E805DFE /* ZFPortraitViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPortraitViewController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPortraitViewController.h; sourceTree = ""; }; + 54A278A43D5D0935670C359D5992B9BA /* EKPopUpMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKPopUpMessageView.swift; path = Source/MessageViews/EKPopUpMessageView.swift; sourceTree = ""; }; + 54C2475BDBBA23ADBE4B7776D55C7834 /* RxSwift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-umbrella.h"; sourceTree = ""; }; + 54D04CC609BE536D46BF57DFFADB31EB /* Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Image.swift; path = Sources/Image/Image.swift; sourceTree = ""; }; + 552C265417EEEF4C733B3389BBB60B81 /* ShareReplayScope.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShareReplayScope.swift; path = RxSwift/Observables/ShareReplayScope.swift; sourceTree = ""; }; + 55A73A83E02FB8CE59B41F07F08BED25 /* DDTimerSwiftKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDTimerSwiftKit_Private.release.xcconfig; sourceTree = ""; }; + 55FB4BBBB52C50A53E47FF064D22FB6E /* Using.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Using.swift; path = RxSwift/Observables/Using.swift; sourceTree = ""; }; + 563C56E411D4BC9C5D6141B44B45F985 /* 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 = ""; }; + 563DF075B1A377F596B58666C02936CC /* jcore-ios-4.2.1.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = "jcore-ios-4.2.1.xcframework"; sourceTree = ""; }; + 566EE0EF1200976E825C76C079C39F5F /* ZFPlayerNotification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerNotification.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerNotification.m; sourceTree = ""; }; + 5686CE5152ABB005BE226C850D579F38 /* JXCategoryIndicatorTriangleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorTriangleView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorTriangleView.h; sourceTree = ""; }; + 56B3B7BAD0B37E1BF1AAEBD2594EA662 /* JXCategoryCollectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryCollectionView.m; path = Sources/Common/JXCategoryCollectionView.m; sourceTree = ""; }; + 56BD7AE02538E9E4B1C6E71F2D3A1635 /* EntryCachingHeuristic.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EntryCachingHeuristic.swift; path = Source/Infra/EntryCachingHeuristic.swift; sourceTree = ""; }; + 56D827DD71933586827C60C59B2F324D /* PriorityQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PriorityQueue.swift; path = Platform/DataStructures/PriorityQueue.swift; sourceTree = ""; }; + 56FBFF13F31D572E4FEC5D4FF410E3AF /* DDMAGeometry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMAGeometry.m; path = DDMAMapKit_Private/Classes/DDMAUtil/DDMAGeometry.m; sourceTree = ""; }; + 5722E0FBB48E89451DBB8C86575F1468 /* Bugly.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Bugly.framework; sourceTree = ""; }; + 5779AD5E1855533B91C0B5650313C5C9 /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; + 579DEE906EE62807C6C862D8B7313D2B /* RxTableViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDelegateProxy.swift; sourceTree = ""; }; + 5802CF56D312B8E04A2251ED79A91789 /* NSTextAttachment+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextAttachment+Kingfisher.swift"; path = "Sources/Extensions/NSTextAttachment+Kingfisher.swift"; sourceTree = ""; }; + 580A1A772DE9485E7AEEF52A545CF646 /* AMapNaviHeaderHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviHeaderHandler.h; path = AMapNaviKit.framework/Headers/AMapNaviHeaderHandler.h; sourceTree = ""; }; + 580B4C1F47A763EB15B9B2C52900BC82 /* RxRelay-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxRelay-umbrella.h"; sourceTree = ""; }; + 5897C1795BDA23E9A770BDF904032173 /* Toast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Toast.swift; path = DDToastKit_Private/Classes/Toast.swift; sourceTree = ""; }; + 5897FBEDD93BE0BD5350B4054C31150E /* SubjectType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubjectType.swift; path = RxSwift/Subjects/SubjectType.swift; sourceTree = ""; }; + 5898EB1A38FE7DFF749668F98E44E76B /* EKButtonBarView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKButtonBarView.swift; path = Source/MessageViews/MessagesUtils/EKButtonBarView.swift; sourceTree = ""; }; + 58A8DE468DA39A7F80D4952AD4AB5A4E /* DDBaseMutableAttributedString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseMutableAttributedString.m; path = DDBasicControlsKit_Private/Classes/DDBaseAttributedString/DDBaseMutableAttributedString.m; sourceTree = ""; }; + 58D379C0B9889D93B56811DE0AFFD019 /* IQKeyboardManager+Toolbar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Toolbar.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Toolbar.swift"; sourceTree = ""; }; + 58D937F896EB7A25A19964F1CD0A2814 /* AMapTrackKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackKit.h; path = AMapTrackKit.framework/Headers/AMapTrackKit.h; sourceTree = ""; }; + 58D96755ED59599A7393B524B505DFDD /* UIViewArray+QuickLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewArray+QuickLayout.swift"; path = "Source/Extensions/QuickLayout/UIViewArray+QuickLayout.swift"; sourceTree = ""; }; + 5916768C215C18F79CC9FE8C20A326C3 /* AMapFoundation-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapFoundation-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; + 5927B9EC34CF6DA5023F1C46B6B43CD0 /* DDOCLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDOCLog.h; path = DDLogKit_Private/Classes/OCLog/DDOCLog.h; sourceTree = ""; }; + 5940E321D283F8FD17217BCC63D4005D /* DDFontKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDFontKit_Private.release.xcconfig; sourceTree = ""; }; + 5972E9A326023DFD310F055DBD1F380F /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; + 597F86830C65AB4C2AE7E9C009BDE567 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; + 59B4A65EEF12ABF3FDD775A6E06F6E12 /* EKSimpleMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKSimpleMessage.swift; path = Source/Model/EKSimpleMessage.swift; sourceTree = ""; }; + 59CA523F5ED4C23CE85B1BAF00D65B8D /* Infallible+Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Operators.swift"; path = "RxSwift/Traits/Infallible/Infallible+Operators.swift"; sourceTree = ""; }; + 5A2683005BB6DEE1F6A9C38395DCA7D7 /* ConstraintAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintAttributes.swift; path = Sources/ConstraintAttributes.swift; sourceTree = ""; }; + 5A34EA1A0C7A1171809409045CBA66C3 /* JXCategoryView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JXCategoryView-prefix.pch"; sourceTree = ""; }; + 5A46E93833CAAF0016F1A076B6A5C84D /* Delay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delay.swift; path = RxSwift/Observables/Delay.swift; sourceTree = ""; }; + 5ABDD7BEA7720240CDB2A483B7AF6DCA /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateHeader.h; path = MJRefresh/Custom/Header/MJRefreshStateHeader.h; sourceTree = ""; }; + 5ADCE33F34B093641FED0F7C8659508B /* JPush.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPush.release.xcconfig; sourceTree = ""; }; + 5AE2FE6CDA623B5D1DC005A03600F5E0 /* UIView+ZFFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+ZFFrame.m"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIView+ZFFrame.m"; sourceTree = ""; }; + 5B0D82385BA0EB5E491ADA1E1C8A41EC /* TextInput.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextInput.swift; path = RxCocoa/Common/TextInput.swift; sourceTree = ""; }; + 5B1A5732077260FE0BA3878CA6D26607 /* MACustomBuildingOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomBuildingOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MACustomBuildingOverlayRenderer.h; sourceTree = ""; }; + 5B241229C4FAF70B1CE6179F95E5F763 /* RefCountDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RefCountDisposable.swift; path = RxSwift/Disposables/RefCountDisposable.swift; sourceTree = ""; }; + 5B4298074354977BE3B096F2404B2CEA /* IQKeyboardManager+OrientationNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+OrientationNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+OrientationNotification.swift"; sourceTree = ""; }; + 5B73C4F5B228339805AA81EBE2AC0D73 /* 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 = ""; }; 5BA6046B4C2674409C0D5625F45F8769 /* BRPickerView */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = BRPickerView; path = libBRPickerView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + 5BEB9FF0C6D5FB00AB9A5220587A1880 /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; + 5C2AE8803DD2ADB3E9505E1AC253E5EB /* ZLCustomAlertProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCustomAlertProtocol.swift; path = Sources/General/ZLCustomAlertProtocol.swift; sourceTree = ""; }; + 5C6AC059E218D7AEFD5B53F1027C9ADF /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; + 5CC34AF3EA0D7317091783EB80B1BD0F /* 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 = ""; }; + 5CEEFDA1834DF558CEC910B1A10481CB /* DDMAMapView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMAMapView.h; path = DDMAMapKit_Private/Classes/DDMAMap/MapView/DDMAMapView.h; sourceTree = ""; }; + 5CF46F080893FF3D38BDE1324FC8BB85 /* AsyncSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncSubject.swift; path = RxSwift/Subjects/AsyncSubject.swift; sourceTree = ""; }; + 5D3250497A860AF8EB84E42556395233 /* NSDate+BRPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDate+BRPickerView.h"; path = "BRPickerView/DatePickerView/NSDate+BRPickerView.h"; sourceTree = ""; }; + 5D3CEE42B0CF04A30F8A7C5D0CE4A67B /* JXCategoryListContainerRTLCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryListContainerRTLCell.m; path = Sources/Common/JXCategoryListContainerRTLCell.m; sourceTree = ""; }; 5D797E9A5C5782CE845840781FA1CC81 /* Alamofire */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = Alamofire; path = libAlamofire.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + 5D93F9547BC10C3613AED97CF14CA44C /* DDAudioPlayerKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDAudioPlayerKit_Private-prefix.pch"; sourceTree = ""; }; + 5DAA7AB53BFB4D3ED99CACE5DB475EFB /* MATraceReplayOverlayRender.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MATraceReplayOverlayRender.m; path = DDMAMapKit_Private/Classes/DDMAMap/Trace/MATraceReplayOverlayRender.m; sourceTree = ""; }; + 5DAEA17D8EA610C4ABB5439BACEF9627 /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = ""; }; + 5DBDCBE3CFF85FEA9F92DDAE38A78646 /* ControlProperty+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlProperty+Driver.swift"; path = "RxCocoa/Traits/Driver/ControlProperty+Driver.swift"; sourceTree = ""; }; + 5DCF5D4CAE57B21EC2F4AB5A1A708765 /* ZFNetworkSpeedMonitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFNetworkSpeedMonitor.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFNetworkSpeedMonitor.h; sourceTree = ""; }; + 5E1075BF5F2D723818A240EB48553232 /* MainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MainScheduler.swift; path = RxSwift/Schedulers/MainScheduler.swift; sourceTree = ""; }; + 5E33BD1641FD5D1D329DEFE1DF206670 /* ElementAt.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ElementAt.swift; path = RxSwift/Observables/ElementAt.swift; sourceTree = ""; }; + 5E3AFACC2958AE263F4DC7AA4DFBA6C1 /* ZFFloatView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFFloatView.h; path = DDZFPlayerKit_Private/Classes/Core/ZFFloatView.h; sourceTree = ""; }; + 5E9A15FC8268FB70B57ABF97D262DC6A /* RxRelay.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = RxRelay.modulemap; sourceTree = ""; }; + 5EA7CDFEB6D29B01715D230F749A288C /* PublishSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublishSubject.swift; path = RxSwift/Subjects/PublishSubject.swift; sourceTree = ""; }; + 5ECE700F4AFF8B78540CE2C56469DC8F /* DDBaseViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseViewController.m; path = DDBasicControlsKit_Private/Classes/DDBaseViewController/DDBaseViewController.m; sourceTree = ""; }; + 5EF641048381CD640F1D004A7B295629 /* DDDateKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDDateKit_Private.modulemap; sourceTree = ""; }; + 5F0264C64E4D4EEBFC45EDB818692C7A /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/AFError.swift; sourceTree = ""; }; + 5F1BB63D8B7BAEB5A5EEAECFC339D3D2 /* DDAudioPlayerKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDAudioPlayerKit_Private.debug.xcconfig; sourceTree = ""; }; + 5F72F44CBE8D21DA5C8B40CAC4E77DA1 /* EKAttributes+Duration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Duration.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Duration.swift"; sourceTree = ""; }; + 5F76DEE37945EE615FA885440E92759F /* Timeout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeout.swift; path = RxSwift/Observables/Timeout.swift; sourceTree = ""; }; + 5FFA609DFFFD0D424ECB7E97724C2CC8 /* Source.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Source.swift; path = Sources/General/ImageSource/Source.swift; sourceTree = ""; }; + 602476F2F00A5ED1002DBBCB943885DE /* AMapNaviDriveView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviDriveView.h; path = AMapNaviKit.framework/Headers/AMapNaviDriveView.h; sourceTree = ""; }; + 60449961B188CDECAD8A7797E91F1A1E /* Deferred.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Deferred.swift; path = RxSwift/Observables/Deferred.swift; sourceTree = ""; }; + 60DB9996D9B6477BAC8C1D97D6F0449C /* TakeLast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TakeLast.swift; path = RxSwift/Observables/TakeLast.swift; sourceTree = ""; }; + 6137F8F3FC4F62A185DE46FE7984DCA9 /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = ""; }; + 61B51A451CB94D7646E7B17DA15A9554 /* 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 = ""; }; + 620077EF75E49FBE7A7363E2C6238E3A /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; + 6239957C7FB0A9E328D7664131986E99 /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; + 626CC9F402C18E629AE5DA9C4479016E /* DDProgressHUDKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDProgressHUDKit_Private.release.xcconfig; sourceTree = ""; }; + 626E5D8C1BCE379CFE289243A1B88899 /* Optional.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Optional.swift; path = RxSwift/Observables/Optional.swift; sourceTree = ""; }; + 6283B713B7BC1CC1ED7247C918B65B3B /* UIView+QuickLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+QuickLayout.swift"; path = "Source/Extensions/QuickLayout/UIView+QuickLayout.swift"; sourceTree = ""; }; + 62D28F4F2D17540F500472D60E991FC7 /* String+MD5.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+MD5.swift"; path = "Sources/Utility/String+MD5.swift"; sourceTree = ""; }; + 62D3EA982927D46430AF9EA0FC945EA6 /* ItemEvents.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ItemEvents.swift; path = RxCocoa/iOS/Events/ItemEvents.swift; sourceTree = ""; }; + 63384AFBC552DE6802E90CEF8F8899C6 /* 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 = ""; }; + 635AE42BDFD151FFE2EAA9B7790FA772 /* DDViewControllerAnimatedTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDViewControllerAnimatedTransition.h; path = DDBasicControlsKit_Private/Classes/DDBaseAnimation/DDTransitionAnimation/DDViewControllerAnimatedTransition.h; sourceTree = ""; }; + 636EB5CF4330A308D4A3C25B952801CB /* AMapNavi.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = AMapNavi.bundle; path = AMapNaviKit.framework/AMapNavi.bundle; sourceTree = ""; }; + 639CEDEB018F6B4FB0CF7049E16D51C8 /* MAParticleOverlayOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlayOptions.h; path = AMapNaviKit.framework/Headers/MAParticleOverlayOptions.h; sourceTree = ""; }; + 63CD69FD29674D2322AA4E0DA868D754 /* AnonymousObserver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousObserver.swift; path = RxSwift/Observers/AnonymousObserver.swift; sourceTree = ""; }; + 63D1E9A0D7E004AD26F2F18F56D56581 /* Placeholder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Placeholder.swift; path = Sources/Image/Placeholder.swift; sourceTree = ""; }; + 6403C3946D1BA757C724C323A04A5C56 /* ConstraintMakerExtendable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerExtendable.swift; path = Sources/ConstraintMakerExtendable.swift; sourceTree = ""; }; + 640F3877CF8ACAA8F297346C0E90EE19 /* 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 = ""; }; + 64255098B3D01AD4A925A661CE48A0FF /* EncryptedMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EncryptedMessage.swift; path = Source/EncryptedMessage.swift; sourceTree = ""; }; + 646623E37EE9BCD93A92BA48EA2C85F7 /* SwiftyRSA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyRSA.debug.xcconfig; sourceTree = ""; }; + 647065FD7DD8B6206A2F633440F1D513 /* SharedSequence+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Concurrency.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Concurrency.swift"; sourceTree = ""; }; + 64C8893757A2D4E62E4220D92513F337 /* RxCocoa.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxCocoa.release.xcconfig; sourceTree = ""; }; + 651C50A5293CFA8AF6E49315DE95D318 /* AMapNaviKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapNaviKit.framework; sourceTree = ""; }; + 652A6EB0A106827AC3551F9373C42C7C /* 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 = ""; }; + 6574527F11AEEBBBD10C4390745E3850 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = ""; }; + 658515FE76D410592A4AB7B469FCB111 /* car_xingshi@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "car_xingshi@2x.png"; path = "DDMAMapKit_Private/Assets/car_xingshi@2x.png"; sourceTree = ""; }; + 6588ECF58B11157B57FA577E1004B8D2 /* EKAttributes+UserInteraction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+UserInteraction.swift"; path = "Source/Model/EntryAttributes/EKAttributes+UserInteraction.swift"; sourceTree = ""; }; + 663EA6C939676AEBAB3CDA24223F27DF /* 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 = ""; }; + 664C6499AF8F8C9EF762E80985B7EE41 /* ZLPhotoBrowser.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ZLPhotoBrowser.debug.xcconfig; sourceTree = ""; }; + 664FAFD6CBAE186D22E2AC8D4CF236CA /* JXCategoryIndicatorCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorCellModel.m; path = Sources/Indicator/JXCategoryIndicatorCellModel.m; sourceTree = ""; }; + 66563585F722BA8D6C290A6DCFFA26FF /* MABaseOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MABaseOverlay.h; path = AMapNaviKit.framework/Headers/MABaseOverlay.h; sourceTree = ""; }; + 667136F6DC478C4D4230F055DDF8BA9B /* CGFloat+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CGFloat+ZLPhotoBrowser.swift"; path = "Sources/Extensions/CGFloat+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 668382E77DF65963BB502C803257FD39 /* 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 = ""; }; + 669A2514198294877A8F3491D2A37A06 /* ZLGeneralDefine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLGeneralDefine.swift; path = Sources/General/ZLGeneralDefine.swift; sourceTree = ""; }; + 66A85E06C513B0B4F16F42B61FEA3043 /* MJRefreshStateTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.h; sourceTree = ""; }; + 66B18AE978878166FAA3B309F285DD8F /* BRAddressPickerView.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = BRAddressPickerView.bundle; path = BRPickerView/AddressPickerView/BRAddressPickerView.bundle; sourceTree = ""; }; + 66B87680F1A2D0F618A4039EEC7056A6 /* DDToastKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDToastKit_Private.modulemap; sourceTree = ""; }; + 66BDB5B6BE44519D1B66F53F19E4EB7D /* DDBaseButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseButton.m; path = DDBasicControlsKit_Private/Classes/DDBaseButton/DDBaseButton.m; sourceTree = ""; }; + 66DE3E48FBE5ADAA762D97363A6CBAFA /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = ""; }; + 67151E7E2AC38FBD484CF1D66F7DF9C1 /* RxSwift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxSwift-dummy.m"; sourceTree = ""; }; + 6718DD82D44F6D3C76210C501B76CC99 /* MultipartUpload.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartUpload.swift; path = Source/MultipartUpload.swift; sourceTree = ""; }; + 671A98BD87F85117435CD71F6152C133 /* AMapServices.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapServices.h; path = AMapFoundationKit.framework/Headers/AMapServices.h; sourceTree = ""; }; + 672A259CAC7E6E42EBCD9A5F91EE8875 /* AMapTrack-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapTrack-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; + 672D4B18EDC8DDAAAB9027065A18B509 /* ObservableConvertibleType+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableConvertibleType+Driver.swift"; path = "RxCocoa/Traits/Driver/ObservableConvertibleType+Driver.swift"; sourceTree = ""; }; + 67F64BA9EE0D9424B4480B7FF285F525 /* 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 = ""; }; + 6826F805FE0700E370FA67DC727188AA /* CachedResponseHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CachedResponseHandler.swift; path = Source/CachedResponseHandler.swift; sourceTree = ""; }; + 68337E6BF0375FA39E471BF6643105E1 /* ZLImageStickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLImageStickerView.swift; path = Sources/Edit/ZLImageStickerView.swift; sourceTree = ""; }; + 684CDF94DC7DDEE1D5D861459C94717C /* SnapKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SnapKit-dummy.m"; sourceTree = ""; }; + 685AAE8626FFB044E491839EA1AE043F /* ZFKVOController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFKVOController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFKVOController.h; sourceTree = ""; }; + 6882F146555E57F04598A96644573544 /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; + 68DFBF76A76273EE9FDFD63BDBBCB093 /* URLEncodedFormEncoder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = URLEncodedFormEncoder.swift; path = Source/URLEncodedFormEncoder.swift; sourceTree = ""; }; + 68E0C5AAFE3CAA5CCD5EB8441ED139E6 /* MATileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATileOverlay.h; path = AMapNaviKit.framework/Headers/MATileOverlay.h; sourceTree = ""; }; + 68F85173D63717128F10859F4B88DA83 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; + 691D9E9385F20E953E1AE85EA68C818A /* ZLPhotoBrowser.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ZLPhotoBrowser.modulemap; sourceTree = ""; }; + 6988BF2C6DA9CCFB885A9A2177E8BAA2 /* ImageDataProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProvider.swift; path = Sources/General/ImageSource/ImageDataProvider.swift; sourceTree = ""; }; + 699ECDE0EA00BCCC8C9962922D1A441B /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+MJExtension.m"; path = "MJRefresh/UIView+MJExtension.m"; sourceTree = ""; }; + 69B4F1F5F2AB3F36200060050B9E4B9D /* MATouchPoi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATouchPoi.h; path = AMapNaviKit.framework/Headers/MATouchPoi.h; sourceTree = ""; }; + 69BFB506BEE1F9BC2B4D02D3B312774E /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; + 69CB524E1CE7F91DB1DB1F3E7C633DC4 /* NSBundle+BRPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+BRPickerView.h"; path = "BRPickerView/Base/NSBundle+BRPickerView.h"; sourceTree = ""; }; + 6A055BE9D13701A22B26256670EADF51 /* ConstraintView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintView.swift; path = Sources/ConstraintView.swift; sourceTree = ""; }; + 6A60B3AA38313A56486FCF25E55B677C /* ZLAddPhotoCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAddPhotoCell.swift; path = Sources/General/ZLAddPhotoCell.swift; sourceTree = ""; }; + 6A643FE9C2CBDE246B7B8BECD3F98795 /* First.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = First.swift; path = RxSwift/Observables/First.swift; sourceTree = ""; }; + 6A731A1029480E71095336F261F38A56 /* DDAudioPlayerKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDAudioPlayerKit_Private.release.xcconfig; sourceTree = ""; }; + 6A767EA155F4FE2D8900920C612ED2DA /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = ""; }; + 6A83F58220ED8E60F55506CCC8E3586C /* DDFontKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDFontKit_Private-dummy.m"; sourceTree = ""; }; + 6AB528A1B975B3C2034CDED6750905A6 /* ZFPlayerLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerLogManager.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerLogManager.m; sourceTree = ""; }; + 6AE4B09D86F4BCF782B0FB4761A2A097 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; + 6AEE0EF6ED79650A924807A8C4FE9EDD /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; + 6AF21E6DA64A11CFAF22382B1BB1D0E1 /* AMapNaviCompositeAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCompositeAnnotation.h; path = AMapNaviKit.framework/Headers/AMapNaviCompositeAnnotation.h; sourceTree = ""; }; + 6AF5EC4EA0585807DF927CD85B2F9B19 /* Platform.Darwin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Platform.Darwin.swift; path = Platform/Platform.Darwin.swift; sourceTree = ""; }; + 6B2A584C07E29F371576F096BDFEDD76 /* ZFOrientationObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFOrientationObserver.m; path = DDZFPlayerKit_Private/Classes/Core/ZFOrientationObserver.m; sourceTree = ""; }; + 6B360C83A5F864A133C07AF4DE854F41 /* MAHeatMapTileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapTileOverlay.h; path = AMapNaviKit.framework/Headers/MAHeatMapTileOverlay.h; sourceTree = ""; }; + 6B3F358B2F807033C4AE34511667F880 /* RxCocoaRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RxCocoaRuntime.h; path = RxCocoa/Runtime/include/RxCocoaRuntime.h; sourceTree = ""; }; + 6B91E55916F03FB5A884E37F37DA426F /* DDColorKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDColorKit_Private-dummy.m"; sourceTree = ""; }; + 6BAC18947B909747487F87ECB9FDEFCB /* ImageDownloader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloader.swift; path = Sources/Networking/ImageDownloader.swift; sourceTree = ""; }; + 6BF6D1863CEF8B524B3F2C483E002C4E /* EKMessageContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKMessageContentView.swift; path = Source/MessageViews/EKMessageContentView.swift; sourceTree = ""; }; + 6C38F44EE363718812226442A59C3B00 /* ESTabBarItemContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemContentView.swift; path = Sources/ESTabBarItemContentView.swift; sourceTree = ""; }; + 6C44A92ECE8EC09F38A1D3E80C511418 /* Box.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Box.swift; path = Sources/Utility/Box.swift; sourceTree = ""; }; + 6C5F422FD2A112BA0F9EC79C48A85A03 /* EKNotificationMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKNotificationMessageView.swift; path = Source/MessageViews/EKNotificationMessageView.swift; sourceTree = ""; }; + 6CD1C09E35E0FC2C32AA7FCD3AB19C76 /* RetryPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryPolicy.swift; path = Source/RetryPolicy.swift; sourceTree = ""; }; + 6D474F71D2BC276B35AFA8CB970F14DD /* AMapNaviRideView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRideView.h; path = AMapNaviKit.framework/Headers/AMapNaviRideView.h; sourceTree = ""; }; + 6D55C1752A31C6C0A5E904BF38DBE902 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; + 6D7A641E3F429C5D5861A239E961CABB /* DDMAMapKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDMAMapKit_Private.modulemap; sourceTree = ""; }; + 6D9D590E09C0FE35D12401482B553D98 /* EKAttributes+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Position.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Position.swift"; sourceTree = ""; }; + 6D9D869EB97B18CEBE0E38D5942BC7E6 /* DDMutableAttributedString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDMutableAttributedString.swift; path = DDControlsKit_Private/Classes/DDAttributedString/DDMutableAttributedString.swift; sourceTree = ""; }; + 6DA3BAAFA9B542232B974AFFA95DA561 /* NSTextField+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextField+Rx.swift"; path = "RxCocoa/macOS/NSTextField+Rx.swift"; sourceTree = ""; }; + 6DBBA4C8C9F3F577C4C974504503BE0C /* SharedSequence+Operators.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SharedSequence+Operators.swift"; path = "RxCocoa/Traits/SharedSequence/SharedSequence+Operators.swift"; sourceTree = ""; }; + 6E5FAFC9E4CCA59344AC693449DB8A51 /* 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 = ""; }; + 6E70B43D74E84F3AF81B44C10CEE495F /* Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Concurrency.swift; path = Source/Concurrency.swift; sourceTree = ""; }; + 6E7FAEF8333E1A8BBA0069BC2D6B07E1 /* DDMAGeometry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMAGeometry.h; path = DDMAMapKit_Private/Classes/DDMAUtil/DDMAGeometry.h; sourceTree = ""; }; + 6ECBBBC7E0D610B6D7921FC0EB78256F /* DDBaseLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseLabel.m; path = DDBasicControlsKit_Private/Classes/DDBaseLabel/DDBaseLabel.m; sourceTree = ""; }; 6EEB8B1CB2BF24B44DEEDC1B058B22E2 /* DDMAMapKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDMAMapKit_Private; path = libDDMAMapKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + 6F19C0B84399234DE43E9C11FCA731D0 /* 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 = ""; }; + 6F24528ECAE39081EE2ABB142D7CCA50 /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = ""; }; + 6F288A0F3BBE89DEAB560F1358EE6383 /* DDNavigationControllerDelegateReceiver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDNavigationControllerDelegateReceiver.h; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDNavigationControllerDelegateReceiver.h; sourceTree = ""; }; + 6F481836E9BE562C8F412BBB3F237D04 /* JXCategoryIndicatorCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorCellModel.h; path = Sources/Indicator/JXCategoryIndicatorCellModel.h; sourceTree = ""; }; + 6F911AB245724CAA5E6DFF24AAF6038A /* ZFVolumeBrightnessView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFVolumeBrightnessView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFVolumeBrightnessView.m; sourceTree = ""; }; + 6FE8F4E8B0EF75209256C6CBC27829FD /* AMapTrackCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackCommonObj.h; path = AMapTrackKit.framework/Headers/AMapTrackCommonObj.h; sourceTree = ""; }; + 6FF4A0F5E61D523DB46B7274B7ED7FE5 /* Scan.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Scan.swift; path = RxSwift/Observables/Scan.swift; sourceTree = ""; }; + 700F8F1B44C665355740785F2A3A4B2E /* BehaviorRelay+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "BehaviorRelay+Driver.swift"; path = "RxCocoa/Traits/Driver/BehaviorRelay+Driver.swift"; sourceTree = ""; }; + 700FF3BAAB754294200B6E7F3EF8D104 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; + 7019A59A9AAAC01BBD3C83E3D79799E7 /* AMapURLSearchConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearchConfig.h; path = AMapFoundationKit.framework/Headers/AMapURLSearchConfig.h; sourceTree = ""; }; + 7030BC12F220D1700C320AACB831A219 /* ZFPlayerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerView.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerView.h; sourceTree = ""; }; + 706FDF0D1877BEEB3B72FA667455D2DE /* AlamofireExtended.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AlamofireExtended.swift; path = Source/AlamofireExtended.swift; sourceTree = ""; }; + 70BB91167ABEE2352D3CE681C81C3153 /* UIColor+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIColor+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIColor+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 70C02CBCD9F2AE8933C2B300352DFC04 /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefresh/MJRefresh.h; sourceTree = ""; }; 71067D1F0754E977C6E009846B257042 /* DDBasicControlsKit_Private-DDBaseViewController */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "DDBasicControlsKit_Private-DDBaseViewController"; path = DDBaseViewController.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; - 7499ECC312F3D57D5BBED2E7E1455F0D /* DDUIGestureRecognizer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDUIGestureRecognizer-dummy.m"; 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 = ""; }; + 7156CB3F8329BB0793CFFB6544972637 /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDNetworkingOfAlamofireKit_Private.release.xcconfig; sourceTree = ""; }; + 715F07D106B63A04EA7B7A5AE0DB3E3A /* ImageView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ImageView+Kingfisher.swift"; path = "Sources/Extensions/ImageView+Kingfisher.swift"; sourceTree = ""; }; + 71925ACFA5858C8058296B18B41DDA5B /* RxNavigationControllerDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxNavigationControllerDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxNavigationControllerDelegateProxy.swift; sourceTree = ""; }; + 71B7D251D226F3D82928A74A97735476 /* SwiftyRSA-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyRSA-prefix.pch"; sourceTree = ""; }; + 7215AB564266D20DD5A4F1100DB9AA21 /* Timer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timer.swift; path = RxSwift/Observables/Timer.swift; sourceTree = ""; }; + 724722D5D6003BD8B23E0DB7A876F56E /* RxTableViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxTableViewDataSourceType.swift; sourceTree = ""; }; + 72AA863275D84B37CD7FF74C792A5CA0 /* KFImageOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageOptions.swift; path = Sources/SwiftUI/KFImageOptions.swift; sourceTree = ""; }; + 72AE2733B31FE4DADA0345F29D71C093 /* JXCategoryNumberView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberView.h; path = Sources/Number/JXCategoryNumberView.h; sourceTree = ""; }; + 72BE789EE4CA52ED5A35DFDB909613BE /* DDUtilsSwiftKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDUtilsSwiftKit_Private.release.xcconfig; sourceTree = ""; }; + 72DF7CD3DFEBD01540DA11A3E3670683 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; + 72E802F37C854A4FF90F1A66060A25DE /* RxTabBarDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTabBarDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTabBarDelegateProxy.swift; sourceTree = ""; }; + 72F7021212165D16FF0E4ED522328F19 /* DDColorKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDColorKit_Private.modulemap; sourceTree = ""; }; + 733931B6C2A40207036CBE720D7C8314 /* EKAttributes+Scroll.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Scroll.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Scroll.swift"; sourceTree = ""; }; + 73419A92646E09D6B562C28B3CA05BA3 /* NSData+SHA.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+SHA.h"; path = "Source/NSData+SHA.h"; sourceTree = ""; }; + 7358878FDC99B15E1FD4CF7BE510793C /* JXCategoryIndicatorCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorCell.m; path = Sources/Indicator/JXCategoryIndicatorCell.m; sourceTree = ""; }; + 738E4B79AC68A6F43F3E49E0F2EACD34 /* ESTabBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBar.swift; path = Sources/ESTabBar.swift; sourceTree = ""; }; + 73FFE0918E3264C28FE559685B7134DF /* AnimatedImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedImageView.swift; path = Sources/Views/AnimatedImageView.swift; sourceTree = ""; }; + 74371AA102C375B6A9C05FF5FCA3DA2D /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; + 74B063AD4097BE8A24E6E731EF2B4A57 /* Map.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Map.swift; path = RxSwift/Observables/Map.swift; sourceTree = ""; }; + 74D61A5F18EAD8FB7931E73FDEB53F1C /* ObserveOn.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserveOn.swift; path = RxSwift/Observables/ObserveOn.swift; sourceTree = ""; }; + 74E504B0B38E7652E8C8E4F3D5BC9B9D /* UIView+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIView+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 75749C34D0921498DA5CC1013286AF0B /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = ""; }; + 75A9C1387CEC025461AA7DEB8F1EEE69 /* DDDate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDDate.swift; path = DDDateKit_Private/Classes/DDDate.swift; sourceTree = ""; }; + 75DAFA1AC695B509C2780FE8EC418CD1 /* DDColorKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDColorKit_Private.debug.xcconfig; sourceTree = ""; }; + 75F647DACAC45348A9F04231C502C7A5 /* Constraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constraint.swift; path = Sources/Constraint.swift; sourceTree = ""; }; + 7609B2B03558E4594631C731EDB10728 /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; + 7620AA5191F723BF4C54EEC3DADD4114 /* OperationQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "OperationQueue+Alamofire.swift"; path = "Source/OperationQueue+Alamofire.swift"; sourceTree = ""; }; + 762897DE187CC155AE0155EB3526E9F5 /* JCore.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JCore.debug.xcconfig; sourceTree = ""; }; + 762E91082B5B8D3E5AA4FDC165589895 /* 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 = ""; }; + 763C41B62183DDB92CDC296FD00E1E5C /* JXCategoryTitleImageCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleImageCell.h; path = Sources/TitleImage/JXCategoryTitleImageCell.h; sourceTree = ""; }; + 76589309CDE359FD002B6DDBBA48F92A /* DDMATrackManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMATrackManager.h; path = DDMAMapKit_Private/Classes/DDMATrackManager/DDMATrackManager.h; sourceTree = ""; }; + 766AB4A861BED0C8C4E0AB8EAE8AD563 /* DDZFPlayerKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDZFPlayerKit_Private.debug.xcconfig; sourceTree = ""; }; + 76B0B0393DB4BA68A89B300349BE4897 /* ESTabBarItemContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemContainer.swift; path = Sources/ESTabBarItemContainer.swift; sourceTree = ""; }; + 76CA884C548C653E6CE037C7CC1BBFCA /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; + 76E60CD55C6020A770B1F80F87EE77A9 /* Driver+Subscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Driver+Subscription.swift"; path = "RxCocoa/Traits/Driver/Driver+Subscription.swift"; sourceTree = ""; }; + 76F379F05F1624C746C7F5F98C40D9C9 /* ImageTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageTransition.swift; path = Sources/Image/ImageTransition.swift; sourceTree = ""; }; + 772D442B7B2EA1769821B341F24CC8B9 /* PrimitiveSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrimitiveSequence.swift; path = RxSwift/Traits/PrimitiveSequence/PrimitiveSequence.swift; sourceTree = ""; }; + 77660A66FD52AE4EB05728A6FBA09C03 /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJExtension.m"; path = "MJRefresh/UIScrollView+MJExtension.m"; sourceTree = ""; }; + 777978BB5AFBB61A80F9C8C7C019E864 /* jpush-extension-ios-2.0.1.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = "jpush-extension-ios-2.0.1.xcframework"; sourceTree = ""; }; + 77AB66EBFFB2BBC4ADD123C3E59838A1 /* DDNavigationControllerDelegateReceiver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDNavigationControllerDelegateReceiver.m; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDNavigationControllerDelegateReceiver.m; sourceTree = ""; }; + 77C5DD767DC3FF4E2DDD42B2D01D1EE0 /* Filter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Filter.swift; path = Sources/Image/Filter.swift; sourceTree = ""; }; + 77E921AF98A629DFDC2006CC62BAFCA6 /* DDMATrackManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMATrackManager.m; path = DDMAMapKit_Private/Classes/DDMATrackManager/DDMATrackManager.m; sourceTree = ""; }; + 781C9D59C456C7219ADD79A80E021103 /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefresh/Base/MJRefreshHeader.h; sourceTree = ""; }; + 786DBA7A836D01551A9F77B34469496B /* DDTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTextView.swift; path = DDControlsKit_Private/Classes/DDTextView/DDTextView.swift; sourceTree = ""; }; + 78A38AB1BEB652BC61BB8A18964890EB /* 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 = ""; }; + 78AA2EE182FFF0E6070E53AB44E25754 /* 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 = ""; }; + 78AC6660C7FB04EB23F0BF1D0B3EA719 /* UIImageView+DDWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+DDWebCache.m"; path = "DDWebImageKit_Private/Classes/DDWebImage/UIImageView+DDWebCache.m"; sourceTree = ""; }; + 78D64DA9B9CFB4513675F6B8ADB17C75 /* Kingfisher.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Kingfisher.modulemap; sourceTree = ""; }; + 79AFE1126635DF7682A203347E4C5AC3 /* SubscriptionDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SubscriptionDisposable.swift; path = RxSwift/Disposables/SubscriptionDisposable.swift; sourceTree = ""; }; + 79DE57AFCF3D85D40852FAE0F484297F /* 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 = ""; }; + 7A08E155C84481CC37D8F173D3BD1B67 /* JXCategoryDotCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotCell.h; path = Sources/Dot/JXCategoryDotCell.h; sourceTree = ""; }; + 7A636F211352C3DE6116917AE7EC06E9 /* JXCategoryIndicatorCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorCell.h; path = Sources/Indicator/JXCategoryIndicatorCell.h; sourceTree = ""; }; + 7A713C3F36FCC3976BAE0F9B1AE66D6F /* Kingfisher-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-prefix.pch"; sourceTree = ""; }; + 7A7A9572A176055DF5C20AEBAEC67024 /* SingleAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAsync.swift; path = RxSwift/Observables/SingleAsync.swift; sourceTree = ""; }; + 7A9228500518E4F48822A587C40F419E /* IQKeyboardManagerConstantsInternal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstantsInternal.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstantsInternal.swift; sourceTree = ""; }; + 7A93F5EA1B938F35EFF078322B9EDCF5 /* DDAutoUIKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDAutoUIKit_Private.modulemap; sourceTree = ""; }; + 7AA2E518EECC85C0E5AC4CD0C29FB4EF /* DDPersistenceKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDPersistenceKit_Private.release.xcconfig; sourceTree = ""; }; + 7AA55A106289C99447D4B27721243B96 /* Typealiases.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Typealiases.swift; path = Sources/Typealiases.swift; sourceTree = ""; }; + 7B0BC6C34D5DACF09568881AC14F98DB /* ZFOrientationObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFOrientationObserver.h; path = DDZFPlayerKit_Private/Classes/Core/ZFOrientationObserver.h; sourceTree = ""; }; + 7B146DAB3B0F2D4D2148D23245570341 /* _RXObjCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXObjCRuntime.h; path = RxCocoa/Runtime/include/_RXObjCRuntime.h; sourceTree = ""; }; + 7B180D09C8D79EDD7046D53796A145C3 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; + 7B3B4DCE1064643B0D0CBB423131D13D /* 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 = ""; }; + 7B7BA8085362FCCEA3DFB815E71C527A /* MAMVTTileOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMVTTileOverlay.h; path = AMapNaviKit.framework/Headers/MAMVTTileOverlay.h; sourceTree = ""; }; + 7BCA9496A0662B7A472484A308AD3FEC /* DDPersistenceKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDPersistenceKit_Private.modulemap; sourceTree = ""; }; + 7BCB04E25582D341B33598FB35D40FDE /* AMapNearbyUploadInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNearbyUploadInfo.h; path = AMapSearchKit.framework/Headers/AMapNearbyUploadInfo.h; sourceTree = ""; }; 7BF437F1301E282D248141EA0E4FDED5 /* Pods-OrderSchedulingNotificationService.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OrderSchedulingNotificationService.debug.xcconfig"; 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 = ""; }; + 7C86605B5DB4A207C18DF0BAB0B51C4C /* ImageDataProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDataProcessor.swift; path = Sources/Networking/ImageDataProcessor.swift; sourceTree = ""; }; + 7C944D55A4EB5AF3B90AA9217FF75E93 /* JXCategoryDotView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryDotView.h; path = Sources/Dot/JXCategoryDotView.h; sourceTree = ""; }; + 7C97C5ABEF7A2889F372B6B39A2FA2D1 /* DDWebImageKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDWebImageKit_Private-dummy.m"; sourceTree = ""; }; + 7CA0D30FAACB5B4E05E683B2ACCF273E /* SwiftyRSA-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftyRSA-dummy.m"; sourceTree = ""; }; + 7CEEAF670DB302937514821BFF491B38 /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalHeader.h; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.h; sourceTree = ""; }; + 7D213FD2F8DA516EF5C22E5B330B6756 /* DDZFPlayerKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDZFPlayerKit_Private.release.xcconfig; sourceTree = ""; }; + 7D781BACE05EBDA6DDEA3D37FDD11976 /* RxMutableBox.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxMutableBox.swift; path = RxSwift/RxMutableBox.swift; sourceTree = ""; }; + 7D9CC15CB2C70E029E7A14E3D4587F20 /* ZLTextStickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLTextStickerView.swift; path = Sources/Edit/ZLTextStickerView.swift; sourceTree = ""; }; + 7DBC035755B1803221013993CD09AA72 /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; + 7DD94D73905EA42D1EA845719E4B4606 /* JXCategoryImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageView.m; path = Sources/Image/JXCategoryImageView.m; sourceTree = ""; }; + 7DE136CDA8F1AE0B45CDEBCDE4544398 /* RxTextViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTextViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTextViewDelegateProxy.swift; sourceTree = ""; }; + 7E7900EE3DEAEC68257F18737BACB0E2 /* UIColor+JXAdd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+JXAdd.h"; path = "Sources/Common/UIColor+JXAdd.h"; sourceTree = ""; }; + 7EE6DD98411B4B480DC229ECBECD6AD7 /* ConstraintDirectionalInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDirectionalInsets.swift; path = Sources/ConstraintDirectionalInsets.swift; sourceTree = ""; }; + 7F5F9E4CA39D50C9170C7E6ABB327C21 /* 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 = ""; }; + 7F70A5C9739288DC9DE9D99E40915A72 /* BRPickerStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRPickerStyle.m; path = BRPickerView/Base/BRPickerStyle.m; sourceTree = ""; }; + 8013288FC0E5537A40B5E188A3930002 /* DDBaseTabBarController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTabBarController.h; path = DDBasicControlsKit_Private/Classes/DDBaseTabBarController/DDBaseTabBarController.h; sourceTree = ""; }; + 804FAC52FFE0F7C9D4D1080C11E626AF /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; + 808DFCFFFA7B6209039E67CB49C61F63 /* Signal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Signal.swift; path = RxCocoa/Traits/Signal/Signal.swift; sourceTree = ""; }; 809C5FAB588354C9BA37DC3EAB8CB45C /* RxSwift */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RxSwift; path = libRxSwift.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + 80A649CE3F93375783D7116EF430B256 /* JXCategoryBaseCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseCellModel.m; path = Sources/Base/JXCategoryBaseCellModel.m; sourceTree = ""; }; + 80C8F4BD3F97D346DAE783697557BB98 /* ObservableType+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ObservableType+Extensions.swift"; path = "RxSwift/ObservableType+Extensions.swift"; sourceTree = ""; }; + 80ED5FFB60A048F9671F865E87B8FC10 /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; + 80FB4A5751EFEB9401FA87191AA925BC /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; + 8102F50289748651CB2EAFBAF3BA5C39 /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; + 81D4D09C726A31A0D1CAEBDFDFD02DBC /* MAPolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolylineRenderer.h; path = AMapNaviKit.framework/Headers/MAPolylineRenderer.h; sourceTree = ""; }; + 81F261D35D9145315EE9B1752B5C7084 /* SkipWhile.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipWhile.swift; path = RxSwift/Observables/SkipWhile.swift; sourceTree = ""; }; + 82265B14E1FD3E8BCA9A4F14AE02C00A /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; + 8234ACE7C19004A77861B162823282E9 /* SwiftToast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftToast.swift; path = DDToastKit_Private/Classes/SwiftToast.swift; sourceTree = ""; }; + 824856A69D944DFA92D760070A3D0B4C /* RxTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTarget.swift; path = RxCocoa/Common/RxTarget.swift; sourceTree = ""; }; + 82C98E5ED6C3EB19D7E7A32FC304932E /* DDScrollView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDScrollView.swift; path = DDControlsKit_Private/Classes/DDScrollView/DDScrollView.swift; sourceTree = ""; }; + 82CA52148C0CB755C01EB157B7F47220 /* EKImageNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKImageNoteMessageView.swift; path = Source/MessageViews/Notes/EKImageNoteMessageView.swift; sourceTree = ""; }; + 82E906B38F805356ADC3DDA8356B65A4 /* UIButton+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+Rx.swift"; path = "RxCocoa/iOS/UIButton+Rx.swift"; sourceTree = ""; }; + 82EA83B3606AF5F817DB227D91D6110B /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = ""; }; + 8349443035B263497EE374791EC640D7 /* MAIndoorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAIndoorInfo.h; path = AMapNaviKit.framework/Headers/MAIndoorInfo.h; sourceTree = ""; }; + 834D7B33EA6C1B57E4D8041DCC012066 /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+MJRefresh.h"; path = "MJRefresh/NSBundle+MJRefresh.h"; sourceTree = ""; }; + 83880583FCE2648A59907391AE06CCE0 /* DDUIGestureRecognizer-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDUIGestureRecognizer-umbrella.h"; sourceTree = ""; }; + 838E315A029BCA82AF0F157D6100C0C3 /* 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 = ""; }; + 83B889CEACA11362D80DA70D19EEDB98 /* GCDTimer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GCDTimer.swift; path = DDTimerSwiftKit_Private/Classes/GCDTimer/GCDTimer.swift; sourceTree = ""; }; + 83E8A0AD8CDA023AB7591BD8214FE839 /* SessionDataTask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDataTask.swift; path = Sources/Networking/SessionDataTask.swift; sourceTree = ""; }; + 84139A709116A6DE8AA5ECFC893A1675 /* JXCategoryImageCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryImageCellModel.m; path = Sources/Image/JXCategoryImageCellModel.m; sourceTree = ""; }; + 842381777B3E83A806F12A254C7542F3 /* DDNetworkingOfAlamofireKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDNetworkingOfAlamofireKit_Private-prefix.pch"; sourceTree = ""; }; + 8479CE8561D03238FA223751194AC999 /* 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 = ""; }; + 8482B2B8C9C28ABD46B989FF22D3EA3B /* _RXKVOObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXKVOObserver.m; path = RxCocoa/Runtime/_RXKVOObserver.m; sourceTree = ""; }; + 84C77E1E2CEC777BAFDEC2E002852B84 /* ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist"; sourceTree = ""; }; + 84D2B83AA07FA4EE846C5ED2A2BDB6A2 /* Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utils.swift; path = RxRelay/Utils.swift; sourceTree = ""; }; + 84E7276764C1790CA4337E2C99402488 /* EKWindowProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKWindowProvider.swift; path = Source/Infra/EKWindowProvider.swift; sourceTree = ""; }; + 8546678868EA3265DCE799A4719BB8C6 /* Event.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Event.swift; path = RxSwift/Event.swift; sourceTree = ""; }; + 85684DC09A1ABE3769AC1969830D5214 /* MJRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-umbrella.h"; sourceTree = ""; }; + 857089AD8B62EB613B627281C537EA3A /* MJRefreshStateTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m; sourceTree = ""; }; + 85A77A80037CB2ED1FA9E44DDFD6D03E /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = ""; }; + 85B9198B32A14C16CAD74E5A03D08110 /* ImageContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageContext.swift; path = Sources/SwiftUI/ImageContext.swift; sourceTree = ""; }; + 85CEDE84D564EF34245B33AFD27ABD70 /* Delegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Delegate.swift; path = Sources/Utility/Delegate.swift; sourceTree = ""; }; + 85DE57206B61F81DC9B2B0AB92F8EFBB /* NSObject+Rx+RawRepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx+RawRepresentable.swift"; path = "RxCocoa/Foundation/NSObject+Rx+RawRepresentable.swift"; sourceTree = ""; }; + 861CFAA2C8340AA35A40C6170A65B656 /* 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 = ""; }; 861E3EABF816A1CA179B292C434C7624 /* Pods-OrderSchedulingNotificationService-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-OrderSchedulingNotificationService-dummy.m"; 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 = ""; }; + 862FAE944C2C47A1ACD2D5143AF774C6 /* ScheduledDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledDisposable.swift; path = RxSwift/Disposables/ScheduledDisposable.swift; sourceTree = ""; }; + 8680F130E7D7A59E0B0522366D478E71 /* DDFontKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDFontKit_Private-umbrella.h"; sourceTree = ""; }; + 86E84E635C9634F8B4A86B85323CCEBF /* Bugly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Bugly.release.xcconfig; sourceTree = ""; }; + 8718096511BDE69ECB5BDDCB166B1804 /* JXCategoryIndicatorBackgroundView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorBackgroundView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBackgroundView.h; sourceTree = ""; }; + 87B725288365D714C1C3DD2C54E3B315 /* AMapTrackManagerOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackManagerOptions.h; path = AMapTrackKit.framework/Headers/AMapTrackManagerOptions.h; sourceTree = ""; }; + 87D5941B2ADFCAB567FA9C59C9702BE0 /* DDBaseSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseSwitch.m; path = DDBasicControlsKit_Private/Classes/DDBaseSwitch/DDBaseSwitch.m; sourceTree = ""; }; + 87DD00BAA79B5606679A2FD8E1301979 /* EKAttributes+PopBehavior.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+PopBehavior.swift"; path = "Source/Model/EntryAttributes/EKAttributes+PopBehavior.swift"; sourceTree = ""; }; + 88225E31EB7AAE532311D31D022CBCE3 /* BRDatePickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRDatePickerView.h; path = BRPickerView/DatePickerView/BRDatePickerView.h; sourceTree = ""; }; + 8904651863EBDFA68DD55853CF2E0D8D /* 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 = ""; }; + 890DE64D33931D869ED7D6B93B339AD2 /* JXCategoryListContainerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryListContainerView.h; path = Sources/Common/JXCategoryListContainerView.h; sourceTree = ""; }; + 893FD45896F746FE284051A52A86426C /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; + 89691CA8F799C21F0DE4A9D1BFDC06FD /* ZLPhotoBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZLPhotoBrowser.h; path = Sources/ZLPhotoBrowser.h; sourceTree = ""; }; + 89855B37A9AF81D184B758259193D5CB /* AMapNaviRoute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRoute.h; path = AMapNaviKit.framework/Headers/AMapNaviRoute.h; sourceTree = ""; }; + 89922CA1364279A9646DACAA3A0E8A80 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; + 89B784E3FCB395FC266E9DB14E05012F /* Disposables.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposables.swift; path = RxSwift/Disposables/Disposables.swift; sourceTree = ""; }; + 89BB2C0640C2B0E5D1D4D2E03014C4E2 /* EKAlertMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAlertMessage.swift; path = Source/Model/EKAlertMessage.swift; sourceTree = ""; }; + 89D5FE44EE1480C618C6C905D9B62AA7 /* JXCategoryTitleVerticalZoomCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleVerticalZoomCell.h; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCell.h; sourceTree = ""; }; + 8A0A2E4D8C87760B993D19FF9F3341B7 /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefresh/Base/MJRefreshFooter.m; sourceTree = ""; }; + 8A2BCF52911FB19A8EE866CA74632138 /* EKColor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKColor.swift; path = Source/Model/EKColor.swift; sourceTree = ""; }; + 8A329E8FED4A3CFEE60027AE989BABE6 /* KFImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImage.swift; path = Sources/SwiftUI/KFImage.swift; sourceTree = ""; }; + 8A3D76E1EBD6AF7F47748C406FF163CA /* ConstraintDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDSL.swift; path = Sources/ConstraintDSL.swift; sourceTree = ""; }; + 8A56480E992760E2D2C10E10DB960885 /* ObserverBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObserverBase.swift; path = RxSwift/Observers/ObserverBase.swift; sourceTree = ""; }; + 8A9621857C668E485CA2AA9762EAE498 /* Switch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Switch.swift; path = RxSwift/Observables/Switch.swift; sourceTree = ""; }; 8AD026CF2FA53C314E8C799B9A40528A /* DDZFPlayerKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDZFPlayerKit_Private; path = libDDZFPlayerKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + 8B10484601C6C25094EE2083E5EE997F /* KingfisherManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KingfisherManager.swift; path = Sources/General/KingfisherManager.swift; sourceTree = ""; }; + 8B316DE6AC16129F3192DA1435AD9437 /* ReplayRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplayRelay.swift; path = RxRelay/ReplayRelay.swift; sourceTree = ""; }; + 8B854826A7789934EF05F096D5A1ADA3 /* 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 = ""; }; + 8B9A8B6B5B2E73694505BE5FB657030A /* RxRelay-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxRelay-prefix.pch"; sourceTree = ""; }; + 8BA8B4C96B8947CB8EFF49072E232A2F /* MAOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlay.h; path = AMapNaviKit.framework/Headers/MAOverlay.h; sourceTree = ""; }; + 8BD85E8CC11408A4E1ED3804A999F74B /* SchedulerType+SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SchedulerType+SharedSequence.swift"; path = "RxCocoa/Traits/SharedSequence/SchedulerType+SharedSequence.swift"; sourceTree = ""; }; + 8C0500AFE12BEA911C665C57FA898C4B /* JXCategoryNumberCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberCell.m; path = Sources/Number/JXCategoryNumberCell.m; sourceTree = ""; }; + 8C0B2654E471DCE015DD262A8C792E77 /* ZLPhotoPreviewSheet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewSheet.swift; path = Sources/General/ZLPhotoPreviewSheet.swift; sourceTree = ""; }; + 8C394CEBB4546119ECB1C24B64E6ADE3 /* AsSingle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsSingle.swift; path = RxSwift/Observables/AsSingle.swift; sourceTree = ""; }; + 8C5592B2EC56CA21F54F0016BC5A721F /* AMapLocation-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapLocation-NO-IDFA.release.xcconfig"; sourceTree = ""; }; + 8CB3754C4B17E0A81AF818425D2D8AC8 /* JXCategoryBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseView.h; path = Sources/Base/JXCategoryBaseView.h; sourceTree = ""; }; + 8CD15EBB949A28AE863CE13ABADAF704 /* DDWebImageKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDWebImageKit_Private.debug.xcconfig; sourceTree = ""; }; + 8D2390AD1BF0F59E27CF22CA709C6439 /* Storage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Storage.swift; path = Sources/Cache/Storage.swift; sourceTree = ""; }; + 8D2D801B067049DF8C69534FEEBD40D3 /* BRPickerView.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = BRPickerView.bundle; path = BRPickerView/Base/BRPickerView.bundle; sourceTree = ""; }; + 8D34581D4140A6F9CF8AFA006881900D /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; + 8D37A0365AA292CAFBC01F43B562A1F3 /* EKRatingSymbolView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingSymbolView.swift; path = Source/MessageViews/MessagesUtils/EKRatingSymbolView.swift; sourceTree = ""; }; + 8D557D6B686D3717A1C25B4A91E77138 /* DDLogKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDLogKit_Private-dummy.m"; sourceTree = ""; }; + 8D6C429E59862D8114B998F10E190F8F /* BRDatePickerView+BR.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "BRDatePickerView+BR.m"; path = "BRPickerView/DatePickerView/BRDatePickerView+BR.m"; sourceTree = ""; }; + 8DA168B63AF6CDBCA12F68E28D35EA3F /* RequestCompression.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestCompression.swift; path = Source/RequestCompression.swift; sourceTree = ""; }; + 8DB20E77BB607B95B7D63B6B53B272CC /* MAAnnotationMoveAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotationMoveAnimation.h; path = AMapNaviKit.framework/Headers/MAAnnotationMoveAnimation.h; sourceTree = ""; }; + 8E49C8335D1CB2E2C2541F50E6DE520B /* DDButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDButton.swift; path = DDControlsKit_Private/Classes/DDButton/DDButton.swift; sourceTree = ""; }; + 8ECAB07FCFE0072D948CF75E934427E1 /* JXCategoryIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorView.m; path = Sources/Indicator/JXCategoryIndicatorView.m; sourceTree = ""; }; + 8EF172681C3D046E236093513974A8E0 /* AMapNaviCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCommonObj.h; path = AMapNaviKit.framework/Headers/AMapNaviCommonObj.h; sourceTree = ""; }; + 8F2D1811B0CE60B062C36A276194EE6C /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/DispatchQueue+Alamofire.swift"; sourceTree = ""; }; + 8F3659E30F0D0A3150789145CFDCDA2D /* 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 = ""; }; + 8F68F524E9F1B440B700B4C7896C0D57 /* HapticFeedbackGenerator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HapticFeedbackGenerator.swift; path = Source/Utils/HapticFeedbackGenerator.swift; sourceTree = ""; }; + 8FD60DECEA703EE30485EDA50460B3E2 /* UIFont+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIFont+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIFont+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 900F09E3AB18DCC591F8FFCDC5623C90 /* SharedSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SharedSequence.swift; path = RxCocoa/Traits/SharedSequence/SharedSequence.swift; sourceTree = ""; }; + 90CDCC90EADCC2E4AFE40E1023BD763C /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; + 90E2B1053E365BDBC042170E244B454E /* 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 = ""; }; + 91156020EF5382483A437EB042DCDF32 /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = ""; }; + 91BE4D2DD1269130525FB8546C526E6E /* IQKeyboardManagerSwift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IQKeyboardManagerSwift.modulemap; sourceTree = ""; }; + 92113897F9D3BCD0846AFEF58957AC41 /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; + 9243FE92DBB5E378D53169FC35B5253F /* AMapTrackManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackManager.h; path = AMapTrackKit.framework/Headers/AMapTrackManager.h; sourceTree = ""; }; + 9269A7E274CDE89A331D16C9372E34D9 /* ZLWeakProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLWeakProxy.swift; path = Sources/General/ZLWeakProxy.swift; sourceTree = ""; }; + 928616C4F91F5DBEC11DCC224AA38C60 /* RxPickerViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxPickerViewDataSourceType.swift; sourceTree = ""; }; + 92897AEB41A2399AF2A027D4CC0BFC68 /* RxSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxSwift-prefix.pch"; sourceTree = ""; }; + 92A01A283164F32E1D091910FFDB82BA /* DDBasicControlsKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDBasicControlsKit_Private-dummy.m"; sourceTree = ""; }; + 92AFCA13019BDDCB53CB10B0CBCD7F52 /* ZLBaseStickerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLBaseStickerView.swift; path = Sources/Edit/ZLBaseStickerView.swift; sourceTree = ""; }; + 92B099E85406B753F9F78F25216D12A0 /* MAOfflineMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineMap.h; path = AMapNaviKit.framework/Headers/MAOfflineMap.h; sourceTree = ""; }; + 92B4437446B052AC96771C0B935B5F99 /* MAMapStatus.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapStatus.h; path = AMapNaviKit.framework/Headers/MAMapStatus.h; sourceTree = ""; }; + 92D6CB3786C70E22E0FF1BF764EDDE31 /* DDMAMapKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDMAMapKit_Private.debug.xcconfig; sourceTree = ""; }; + 92E672D36B67460E69224E81585F7781 /* Debugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debugging.swift; path = Sources/Debugging.swift; sourceTree = ""; }; + 92FA5A924736ECDB427DB40FFCE1362C /* JXCategoryIndicatorBallView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorBallView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBallView.h; sourceTree = ""; }; + 9353CBDAAC363717113BFB5518B02DCF /* Reactive.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Reactive.swift; path = RxSwift/Reactive.swift; sourceTree = ""; }; + 93953438C7847BC10CB6D8CE72332FB5 /* UIScrollView+ZFPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+ZFPlayer.h"; path = "DDZFPlayerKit_Private/Classes/Core/UIScrollView+ZFPlayer.h"; sourceTree = ""; }; + 93AFB9A50DB970A45391F3502A121E34 /* ApplicationInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ApplicationInfo.swift; path = DDUtilsSwiftKit_Private/Classes/ApplicationInfo/ApplicationInfo.swift; sourceTree = ""; }; + 93C5C40D839610E5361AAECEAC1B52F5 /* DDCategoryKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDCategoryKit_Private-prefix.pch"; sourceTree = ""; }; + 93EAF951D8DBBE3540E424BBEEA2C115 /* MAOfflineProvince.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineProvince.h; path = AMapNaviKit.framework/Headers/MAOfflineProvince.h; sourceTree = ""; }; + 94482E4EC568435E64B22D007C4410AC /* DDProgressHUDKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDProgressHUDKit_Private-umbrella.h"; sourceTree = ""; }; + 94E93DBE573ED8C6F33F01948ED7C1E8 /* DDBaseCollectionViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseCollectionViewCell.m; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionViewCell/DDBaseCollectionViewCell.m; sourceTree = ""; }; + 9589C472B639E2997BEF5B3D29D15E86 /* ZLImagePreviewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLImagePreviewController.swift; path = Sources/General/ZLImagePreviewController.swift; sourceTree = ""; }; + 959BC3BA53C035A9502FA78704B1A8AF /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackNormalFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m; sourceTree = ""; }; + 95BC051C3B8A110581BAB84448C26CF2 /* 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 = ""; }; + 963A2DE2F4BBFB477750B663CE353E85 /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; + 966BB5F4EA478C380ED1562AE502E807 /* IJKMediaFramework.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IJKMediaFramework.framework; path = DDZFPlayerKit_Private/Classes/ijkplayer/IJKMediaFramework.framework; sourceTree = ""; }; + 96884774F057717C996491A9F223C411 /* UrlLinks.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UrlLinks.swift; path = DDUtilsSwiftKit_Private/Classes/UrlLinks/UrlLinks.swift; sourceTree = ""; }; + 976FF2E2E06321631D7456A718FDD8E2 /* NSTextView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSTextView+Rx.swift"; path = "RxCocoa/macOS/NSTextView+Rx.swift"; sourceTree = ""; }; 979486118B3E90C08386079D57962701 /* SnapKit */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = SnapKit; path = libSnapKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + 97A57E6647F42B87160F851992C14F3C /* _RXDelegateProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXDelegateProxy.h; path = RxCocoa/Runtime/include/_RXDelegateProxy.h; sourceTree = ""; }; + 97AF1EBBCC9C27F141B9E1D6FC7C32AF /* DDUIGestureRecognizer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDUIGestureRecognizer-dummy.m"; sourceTree = ""; }; + 97D0B72200D9842C84087C5993158A8B /* DDWebImageKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDWebImageKit_Private-prefix.pch"; sourceTree = ""; }; + 97FD6AFF1EF039947760BB9F66E85243 /* EKAttributes+DisplayMode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+DisplayMode.swift"; path = "Source/Model/EntryAttributes/EKAttributes+DisplayMode.swift"; sourceTree = ""; }; + 980BE6CAD2A65E7CA227BB5EC5D8BA13 /* AsMaybe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsMaybe.swift; path = RxSwift/Observables/AsMaybe.swift; sourceTree = ""; }; + 984D60C7B9D68D6B051E06504ECC6279 /* MAOverlayPathRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlayPathRenderer.h; path = AMapNaviKit.framework/Headers/MAOverlayPathRenderer.h; sourceTree = ""; }; + 98652E0913C1EA2BDE0E3C77EF28E0CF /* VirtualTimeScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeScheduler.swift; path = RxSwift/Schedulers/VirtualTimeScheduler.swift; sourceTree = ""; }; + 987456B03A4C2A7639CFD6B8CC8245B9 /* IQTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQTextView.swift; path = IQKeyboardManagerSwift/IQTextView/IQTextView.swift; sourceTree = ""; }; + 98DEA0F029FC14297B49A679EB4136F5 /* 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 = ""; }; + 98F4B1625EBFDD8E711389967205AB12 /* AMapNaviEleBikeDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviEleBikeDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviEleBikeDataRepresentable.h; sourceTree = ""; }; + 9926891A27457F1F8E220732A2D10824 /* DDBaseTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTextView.h; path = DDBasicControlsKit_Private/Classes/DDBaseTextView/DDBaseTextView.h; sourceTree = ""; }; + 993C86813F3952C70B72D38AB0A1BEC0 /* DDBaseModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseModel.h; path = DDBasicControlsKit_Private/Classes/DDBaseModel/DDBaseModel.h; sourceTree = ""; }; + 993F005147DF1700EF33D4939308A4E0 /* BRAddressModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRAddressModel.h; path = BRPickerView/AddressPickerView/BRAddressModel.h; sourceTree = ""; }; + 99A4D11FE648A96A5BE41191F5B06135 /* ConstraintLayoutGuide.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuide.swift; path = Sources/ConstraintLayoutGuide.swift; sourceTree = ""; }; + 99C2A3CC9DF59387B3895793F1B686B7 /* UIImageView+ZFCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+ZFCache.h"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIImageView+ZFCache.h"; sourceTree = ""; }; + 9A078AADB3C65F533A3FB7BA287791FC /* EKProcessingNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKProcessingNoteMessageView.swift; path = Source/MessageViews/Notes/EKProcessingNoteMessageView.swift; sourceTree = ""; }; + 9A23E63F39460BFDDBB7CA026924399F /* IQKeyboardManagerSwift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IQKeyboardManagerSwift-prefix.pch"; sourceTree = ""; }; + 9AB31A604EE13F7F78D7A3D5138A9F5A /* UIView+Utils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Utils.swift"; path = "Source/Extensions/UIView+Utils.swift"; sourceTree = ""; }; + 9ADB5050DFAFC9CCC277FA6CEF1CA00B /* EKPopUpMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKPopUpMessage.swift; path = Source/Model/EKPopUpMessage.swift; sourceTree = ""; }; + 9B3709D9480CB26E4BBA3335187F937C /* IQInvocation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQInvocation.swift; path = IQKeyboardManagerSwift/IQToolbar/IQInvocation.swift; sourceTree = ""; }; + 9B4AFAD429770C88E5AC0799A78C98BA /* EKNoteMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKNoteMessageView.swift; path = Source/MessageViews/Notes/EKNoteMessageView.swift; sourceTree = ""; }; + 9B741ED6F65E6593CFE5690805A58EBE /* DDPersistenceKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDPersistenceKit_Private-prefix.pch"; sourceTree = ""; }; + 9B8597EBAE0BA2A238E46E49308F9191 /* Completable+AndThen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Completable+AndThen.swift"; path = "RxSwift/Traits/PrimitiveSequence/Completable+AndThen.swift"; sourceTree = ""; }; + 9B90EA217BD262A8A13A4E9019D62D65 /* Bundle+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Bundle+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Bundle+ZLPhotoBrowser.swift"; sourceTree = ""; }; + 9BAF498497DC998D3292C123DAB26FC8 /* RxCollectionViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxCollectionViewDataSourceType.swift; path = RxCocoa/iOS/Protocols/RxCollectionViewDataSourceType.swift; sourceTree = ""; }; + 9C47E977F821F85D602A3B26EDC351C7 /* DelegateProxyType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelegateProxyType.swift; path = RxCocoa/Common/DelegateProxyType.swift; sourceTree = ""; }; + 9C964BB96BC503D38ECEF14B560F872C /* ServerTrustEvaluation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustEvaluation.swift; path = Source/ServerTrustEvaluation.swift; sourceTree = ""; }; 9CB241779EEAD809AC3180FD5B56FDF4 /* DDFontKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDFontKit_Private; path = libDDFontKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + 9CD8032029069D4351CFD4CF8DD5E327 /* DDToastKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDToastKit_Private-prefix.pch"; sourceTree = ""; }; + 9CFC001257A1B40FCBC356E384C2A4AF /* KVORepresentable+Swift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "KVORepresentable+Swift.swift"; path = "RxCocoa/Foundation/KVORepresentable+Swift.swift"; sourceTree = ""; }; 9D4B74A4386EF8F53603612D83CA68C9 /* DDColorKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDColorKit_Private; path = libDDColorKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 9D57D19629CE260314DE6E8DB370E35D /* ScheduledItemType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItemType.swift; path = RxSwift/Schedulers/Internal/ScheduledItemType.swift; sourceTree = ""; }; - 9D71D9262E67B386B611667DA9B27BBC /* DDUIGestureRecognizer.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDUIGestureRecognizer.modulemap; sourceTree = ""; }; - 9D8C7DB024F10C1415AC8F55084A1F94 /* DDTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTableViewCell.swift; path = DDControlsKit_Private/Classes/DDTableViewCell/DDTableViewCell.swift; sourceTree = ""; }; + 9D5673F98454B8ECA0782B1C3CB6F38D /* UIActivityIndicatorView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIActivityIndicatorView+Rx.swift"; path = "RxCocoa/iOS/UIActivityIndicatorView+Rx.swift"; sourceTree = ""; }; + 9D7117CE9F126D8AFB2EF3E21C5275DC /* ESTabBarItemBadgeView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemBadgeView.swift; path = Sources/ESTabBarItemBadgeView.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; }; - 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 = ""; }; + 9D98CB88D6B58CF42397FB2EB934B487 /* JXCategoryDotView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotView.m; path = Sources/Dot/JXCategoryDotView.m; sourceTree = ""; }; + 9DCD356CC83A2E80E3DE4C6A559808A7 /* JXCategoryBaseCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryBaseCellModel.h; path = Sources/Base/JXCategoryBaseCellModel.h; sourceTree = ""; }; + 9E15619DE7EE2262F3B0191F07D83D96 /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = MJRefresh.bundle; path = MJRefresh/MJRefresh.bundle; sourceTree = ""; }; + 9E59429EDAF06FD126D49DD4D663FE6A /* DDNetworkingOfAlamofireKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDNetworkingOfAlamofireKit_Private.debug.xcconfig; sourceTree = ""; }; + 9E7604BFD62A11AD14E6F4B17E461032 /* WithLatestFrom.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WithLatestFrom.swift; path = RxSwift/Observables/WithLatestFrom.swift; sourceTree = ""; }; + 9E8A6022C8CF2F4E01ABDC35B4A847E9 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; + 9E955CE6C1C09B352957B302A7537C11 /* UIApplication+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+Rx.swift"; path = "RxCocoa/iOS/UIApplication+Rx.swift"; sourceTree = ""; }; + 9EE2BA020EC3D26D090626F0BAE91E20 /* PrimitiveSequence+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PrimitiveSequence+Concurrency.swift"; path = "RxSwift/Traits/PrimitiveSequence/PrimitiveSequence+Concurrency.swift"; sourceTree = ""; }; + 9EF86C643214B5EBA4C54E281D711C33 /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; + 9F019F40FEA3144FA977635A40108831 /* WithUnretained.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WithUnretained.swift; path = RxSwift/Observables/WithUnretained.swift; sourceTree = ""; }; + 9F4AAB2F90DD1E2F4B29A34CE29B042F /* 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 = ""; }; + 9F6328AB4247551B7DE7F9C59FD87B9C /* URLSessionConfiguration+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLSessionConfiguration+Alamofire.swift"; path = "Source/URLSessionConfiguration+Alamofire.swift"; sourceTree = ""; }; + 9F6A3BA6FC7A481028E34213AA721CDB /* AMapNaviHUDView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviHUDView.h; path = AMapNaviKit.framework/Headers/AMapNaviHUDView.h; sourceTree = ""; }; + 9F96F0483BB088A4D422BA70EDCEB693 /* UITextView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextView+Rx.swift"; path = "RxCocoa/iOS/UITextView+Rx.swift"; sourceTree = ""; }; + 9FC49E0C20721851910941146A81049E /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJRefresh.h"; path = "MJRefresh/UIScrollView+MJRefresh.h"; sourceTree = ""; }; + 9FD34ED95BEB09198976104EECDD897F /* ESTabBarController-swift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "ESTabBarController-swift.debug.xcconfig"; sourceTree = ""; }; + 9FFD1D36EFD317E6742A34B511D00A64 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; A0031ECF94D34F1497602F4B0794DD58 /* Pods-OrderScheduling-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-OrderScheduling-umbrella.h"; 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 = ""; }; - A251B9B3980C94FCC632EE2A9E09CCC5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; 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 = ""; }; + A015F53EF5B639A36B05E4DB501BE7A0 /* MAAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotationView.h; path = AMapNaviKit.framework/Headers/MAAnnotationView.h; sourceTree = ""; }; + A0224311F849B855B09C4309182443EE /* AMapNaviWalkDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviWalkDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviWalkDataRepresentable.h; sourceTree = ""; }; + A0230679B106F8DB70B542FBB92921FF /* BehaviorRelay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BehaviorRelay.swift; path = RxRelay/BehaviorRelay.swift; sourceTree = ""; }; + A057D8D9ADD5B92BDE58B602D44F3685 /* Range.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Range.swift; path = RxSwift/Observables/Range.swift; sourceTree = ""; }; + A08401120D6B9CF22F102CB12AA300C0 /* JXCategoryListContainerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryListContainerView.m; path = Sources/Common/JXCategoryListContainerView.m; sourceTree = ""; }; + A0AD6D9DB128055A8E5D6F949D01807F /* 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 = ""; }; + A0F6F9650EA4876E4F733985399251AC /* ZLPhotoBrowser-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ZLPhotoBrowser-umbrella.h"; sourceTree = ""; }; + A102EC55EA836A841D7DE393469035B3 /* ZFPlayerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerController.h; sourceTree = ""; }; + A15A48EE53406A3516FE6CF82C636924 /* BRPickerView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BRPickerView.release.xcconfig; sourceTree = ""; }; + A19C4BEFD2E261BE8734FCE139E89CCB /* 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 = ""; }; + A1B023569047890BBE13E437A530B0C6 /* MAOfflineItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItem.h; path = AMapNaviKit.framework/Headers/MAOfflineItem.h; sourceTree = ""; }; + A1D6D8936528F3AA710EDE666E1B1CB8 /* VirtualTimeConverterType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VirtualTimeConverterType.swift; path = RxSwift/Schedulers/VirtualTimeConverterType.swift; sourceTree = ""; }; + A21E48A849F586BBFD21714D2BDE80AF /* SingleAssignmentDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleAssignmentDisposable.swift; path = RxSwift/Disposables/SingleAssignmentDisposable.swift; sourceTree = ""; }; + A24AB7AE2B655E74C3508490DDB36F30 /* ZFSliderView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFSliderView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSliderView.h; sourceTree = ""; }; + A26FEB6228C891C1DBC837930AAC595E /* ZLEditImageViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditImageViewController.swift; path = Sources/Edit/ZLEditImageViewController.swift; sourceTree = ""; }; + A2AB0BDA4E5ED895F4E62E2383C2EED2 /* MAGeometry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGeometry.h; path = AMapNaviKit.framework/Headers/MAGeometry.h; sourceTree = ""; }; + A32BB7C1A9A47FDDEC109EB78EEF30E8 /* JXCategoryBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseView.m; path = Sources/Base/JXCategoryBaseView.m; sourceTree = ""; }; + A3AA6DD0FF21EC10EA126324BE0C6EA1 /* DDBaseTextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseTextField.m; path = DDBasicControlsKit_Private/Classes/DDBaseTextField/DDBaseTextField.m; sourceTree = ""; }; + A48039FF0278CE5400B58D59DD3DD6AD /* X509Certificate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = X509Certificate.swift; path = Source/X509Certificate.swift; sourceTree = ""; }; + A4B663ADB8E7392C70972270C49038CC /* ZLCustomCamera.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCustomCamera.swift; path = Sources/Camera/ZLCustomCamera.swift; sourceTree = ""; }; + A4C0C20830AF12DC74F52352EF1BFAFD /* DDAutoUIKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDAutoUIKit_Private.release.xcconfig; sourceTree = ""; }; + A4F4B7872AC1A1ADC3F4D426CAE827B1 /* ConcurrentMainScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentMainScheduler.swift; path = RxSwift/Schedulers/ConcurrentMainScheduler.swift; sourceTree = ""; }; + A5026644938F169D658D8CDB107025AB /* ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist"; sourceTree = ""; }; + A50F6C14295C24018D3303C5B335B506 /* Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Create.swift; path = RxSwift/Observables/Create.swift; sourceTree = ""; }; + A50FB1EC68CC22C57F86E8BBDF04F501 /* MAParticleOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAParticleOverlayRenderer.h; sourceTree = ""; }; + A528AF6CA50672282B779DDDF556B1A2 /* RecursiveLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RecursiveLock.swift; path = Platform/RecursiveLock.swift; sourceTree = ""; }; + A52E72F667979A0CE385524329010DEE /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; + A539BA6B3B78E4DAC06E1E5107D57351 /* JXCategoryTitleCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryTitleCell.h; path = Sources/Title/JXCategoryTitleCell.h; sourceTree = ""; }; + A5C924DB562B5A9157005183A61F78F2 /* AutoUI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AutoUI.swift; path = DDAutoUIKit_Private/Classes/AutoUI.swift; sourceTree = ""; }; + A5CC4AC3062FAE8434E67C4666BDD667 /* JXCategoryIndicatorDotLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorDotLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorDotLineView.h; sourceTree = ""; }; + A5D4E64068394AA154860B9C15CC04F9 /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = ""; }; + A5EA2586E3EAEEC2194F17B9F253F654 /* DDZFPlayerKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDZFPlayerKit_Private-prefix.pch"; sourceTree = ""; }; + A607ED2656C6103B871BD1882303608A /* DDLogKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDLogKit_Private.release.xcconfig; sourceTree = ""; }; + A624119E6D69EB3DCED1B6A872C9C67C /* 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 = ""; }; + A64069EFDAF134990E8EADE3999D32C9 /* 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 = ""; }; + A64141A13774D957159C396B00EA1FA0 /* JXCategoryTitleImageCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageCell.m; path = Sources/TitleImage/JXCategoryTitleImageCell.m; sourceTree = ""; }; + A64CFB78A7B2A705F540A2AA34AA4623 /* 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 = ""; }; + A66217270CAC388AB3038D0BAB44FC2A /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; + A6AB124C92496A27782E3881CA0AE52D /* _RX.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RX.m; path = RxCocoa/Runtime/_RX.m; sourceTree = ""; }; + A7097C3D39B1944CBC369F5EE9EB0271 /* RxTextStorageDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTextStorageDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxTextStorageDelegateProxy.swift; sourceTree = ""; }; + A7B2210F3FF8CA2A14D7B3543ED66017 /* DDMAMapKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDMAMapKit_Private-umbrella.h"; sourceTree = ""; }; + A7CCE309D4DCC6DC87793B104A23D2FC /* 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 = ""; }; A7EC9B31B72E86761444A2C60DB92CC6 /* Pods-OrderSchedulingNotificationService.prerelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OrderSchedulingNotificationService.prerelease.xcconfig"; 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 = ""; }; + A8A034D8983AE3073E69ECB1045061D1 /* IQKeyboardManager+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Position.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Position.swift"; sourceTree = ""; }; + A8A3477E5056C45505EFD33642952734 /* DDAudioService.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAudioService.swift; path = DDAudioPlayerKit_Private/Classes/DDAudioService.swift; sourceTree = ""; }; + A8AF3DFA7313D7AD950DB8A2B53D323D /* ConstraintViewDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintViewDSL.swift; path = Sources/ConstraintViewDSL.swift; sourceTree = ""; }; + A8B603928CFDD379AC71B438DDD80A16 /* SwiftyRSA.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SwiftyRSA.h; path = Source/SwiftyRSA.h; sourceTree = ""; }; + A8D570BCD1CECC9A0823EA4C9E1D6B30 /* ZFLandscapeViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFLandscapeViewController.h; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeViewController.h; sourceTree = ""; }; + A8D5FF5C9DE17D7A3F5AA39571E95E70 /* UIGestureRecognizer+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIGestureRecognizer+Rx.swift"; path = "RxCocoa/iOS/UIGestureRecognizer+Rx.swift"; sourceTree = ""; }; A8E950A16D00F649C54FFB30F81D7842 /* IQKeyboardManagerSwift */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = IQKeyboardManagerSwift; path = libIQKeyboardManagerSwift.a; sourceTree = BUILT_PRODUCTS_DIR; }; + A8EE0732B24D9380A9D10F82F68C17E2 /* JXCategoryListContainerRTLCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryListContainerRTLCell.h; path = Sources/Common/JXCategoryListContainerRTLCell.h; sourceTree = ""; }; + A8F2768B53DF2C464A975A8DBA8B995D /* BRStringPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRStringPickerView.h; path = BRPickerView/StringPickerView/BRStringPickerView.h; sourceTree = ""; }; + A90EFFF829D8B6C031175B3F16DBB192 /* CallbackQueue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CallbackQueue.swift; path = Sources/Utility/CallbackQueue.swift; sourceTree = ""; }; A9132D6AA90D7BC2B6C7A08B065F87A9 /* DDToastKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDToastKit_Private; path = libDDToastKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; - 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 = ""; }; + A9B09E808EE321878677C790C1F30DB3 /* DDViewControllerAnimatedTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDViewControllerAnimatedTransition.m; path = DDBasicControlsKit_Private/Classes/DDBaseAnimation/DDTransitionAnimation/DDViewControllerAnimatedTransition.m; sourceTree = ""; }; + A9C633FBF3167CFCF2C9EE23F56E6B4E /* AMapNaviManagerConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviManagerConfig.h; path = AMapNaviKit.framework/Headers/AMapNaviManagerConfig.h; sourceTree = ""; }; + A9CBF9DFB1999D4BE2B957297EDE6B78 /* Never.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Never.swift; path = RxSwift/Observables/Never.swift; sourceTree = ""; }; + AA3C07D84C8D2A116EF8BDDDAA93B6FE /* DDMAMapKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDMAMapKit_Private-dummy.m"; sourceTree = ""; }; + AA527DB264FA6745EADFF0A0CE995A64 /* JXCategoryViewAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryViewAnimator.m; path = Sources/Common/JXCategoryViewAnimator.m; sourceTree = ""; }; + AA5EBAE398E16FF5FCD459C111346D33 /* EKRatingSymbolsContainerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingSymbolsContainerView.swift; path = Source/MessageViews/MessagesUtils/EKRatingSymbolsContainerView.swift; sourceTree = ""; }; + AA67B0669E9AF92C8466EE207049D025 /* 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 = ""; }; + AA94AE7ACCCFA7BF65E3740A76E672B7 /* Signature.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Signature.swift; path = Source/Signature.swift; sourceTree = ""; }; + AAACDCDF1E3045C2A52F24EF41A8CF93 /* 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 = ""; }; + AACA4276A4DD2A181A29CB5A6D4F987F /* JXCategoryTitleImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageView.m; path = Sources/TitleImage/JXCategoryTitleImageView.m; sourceTree = ""; }; + AB1E39CA6AFB7FE59C944D0E54210502 /* RxCocoa-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RxCocoa-umbrella.h"; sourceTree = ""; }; + AB7E7A62BC31BF4713857CFC04DBEC29 /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJRefresh.m"; path = "MJRefresh/UIScrollView+MJRefresh.m"; sourceTree = ""; }; + ABB640A1023AB534787D176E8F155036 /* UIView+QLContentWrap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+QLContentWrap.swift"; path = "Source/Extensions/QuickLayout/UIView+QLContentWrap.swift"; sourceTree = ""; }; + AC118F61A29BC33C872BEDB062ECAED2 /* ZFSpeedLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFSpeedLoadingView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSpeedLoadingView.h; sourceTree = ""; }; + AC220FC7504EE55E196C0B41D8977731 /* StartWith.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StartWith.swift; path = RxSwift/Observables/StartWith.swift; sourceTree = ""; }; + AC6F7EDE8C85ACEE871942207EC9B8DD /* Skip.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Skip.swift; path = RxSwift/Observables/Skip.swift; sourceTree = ""; }; + ACF41B361E7A1201408BD2B0F41CA56D /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; + AD0E5BBF85B2ACF004F02C14D63AEDA7 /* EKAttributes+StatusBar.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+StatusBar.swift"; path = "Source/Model/EntryAttributes/EKAttributes+StatusBar.swift"; sourceTree = ""; }; + AD5400297361F68F8ABF2376D58B0890 /* BRDatePickerView+BR.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "BRDatePickerView+BR.h"; path = "BRPickerView/DatePickerView/BRDatePickerView+BR.h"; sourceTree = ""; }; AD8FF1E8B0C9C12F070D79A5EC3BEE59 /* DDWebImageKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDWebImageKit_Private; path = libDDWebImageKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; - AF572D9E966A6ADEAA1AE261F1B91D21 /* DDUIGestureRecognizer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDUIGestureRecognizer.release.xcconfig; 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 = ""; }; + ADC173C0A2B73E007BE49B890571E712 /* SwiftEntryKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftEntryKit.debug.xcconfig; sourceTree = ""; }; + ADCEE716CA632C08529542E2FC4983F7 /* MATraceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATraceManager.h; path = AMapNaviKit.framework/Headers/MATraceManager.h; sourceTree = ""; }; + ADCFCD2E3E307B7E812CEE2F5976D55D /* SwiftEntryKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SwiftEntryKit.modulemap; sourceTree = ""; }; + ADD89F309186031E535C13E2627380C7 /* SwitchIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwitchIfEmpty.swift; path = RxSwift/Observables/SwitchIfEmpty.swift; sourceTree = ""; }; + AE4CEF76965ADC8D00CA001C1C34D24E /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; + AE8430A3BCB9BEDD0313B6C7722F54AA /* AsyncLock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsyncLock.swift; path = RxSwift/Concurrency/AsyncLock.swift; sourceTree = ""; }; + AF0532E0AD4973657A6F9DEA3199861F /* DDWebImageKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDWebImageKit_Private-umbrella.h"; sourceTree = ""; }; + AF2256806EB74927FFAEBE52134E034D /* DDBasicControlsKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDBasicControlsKit_Private-umbrella.h"; sourceTree = ""; }; + AF470B49F52DD3204C90082CED57987B /* JXCategoryTitleCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleCellModel.m; path = Sources/Title/JXCategoryTitleCellModel.m; sourceTree = ""; }; + AF7E309CD40C8902B3DC69167A80DF37 /* ConstraintMakerEditable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerEditable.swift; path = Sources/ConstraintMakerEditable.swift; sourceTree = ""; }; + AF887A0534F724EB92045A93644F7A73 /* ZLFetchImageOperation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLFetchImageOperation.swift; path = Sources/General/ZLFetchImageOperation.swift; sourceTree = ""; }; + AFA7D24EC65CBCA265744E7840B2C390 /* QLCompatibility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = QLCompatibility.swift; path = Source/Extensions/QuickLayout/QLCompatibility.swift; sourceTree = ""; }; + AFBCF61F57F5531AEB77AD9F2F8139E0 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; + B063FA266C282EAFDB9AA12BA5BFDF08 /* ZFKVOController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFKVOController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFKVOController.m; sourceTree = ""; }; B10BE75A37E306EDA52A1E38B89F97ED /* Pods-OrderScheduling-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-OrderScheduling-resources.sh"; 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 = ""; }; + B1398556B97E813F5A8270C9233DDC90 /* AMapSearchAPI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchAPI.h; path = AMapSearchKit.framework/Headers/AMapSearchAPI.h; sourceTree = ""; }; + B1620DBE640F42A0484DAC836441326B /* DDControlsKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDControlsKit_Private-umbrella.h"; sourceTree = ""; }; + B19C42512763A8CEA24DF9124119997B /* ZLPhotoModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoModel.swift; path = Sources/General/ZLPhotoModel.swift; sourceTree = ""; }; + B1B766F76E93131F217E79645FD69E92 /* AMapUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapUtility.h; path = AMapFoundationKit.framework/Headers/AMapUtility.h; sourceTree = ""; }; + B1D08A8BA7B30876E4E67632D41FA753 /* Infallible+Create.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Create.swift"; path = "RxSwift/Traits/Infallible/Infallible+Create.swift"; sourceTree = ""; }; + B205A73F66530DAB4EBBB7E3E82982DE /* EKAttributes+Validations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Validations.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Validations.swift"; sourceTree = ""; }; + B25E04F3EA30D0D933886EE487BD4555 /* DDUtilsSwiftKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDUtilsSwiftKit_Private.debug.xcconfig; sourceTree = ""; }; + B27CC71B07E04E4A3DE495BD283CFDC8 /* DDColorKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDColorKit_Private-umbrella.h"; sourceTree = ""; }; + B28E906FCB5668B964BE098100101BC0 /* 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 = ""; }; + B2D27982E1B5C44AEE9B99893A3AAEF6 /* ConstraintDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDescription.swift; path = Sources/ConstraintDescription.swift; sourceTree = ""; }; + B312BE4F74F13C76CFFF69A3872936B4 /* JXCategoryIndicatorRainbowLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorRainbowLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorRainbowLineView.h; sourceTree = ""; }; + B334D67E5E5903730B1973E16286BF27 /* JXCategoryDotCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotCell.m; path = Sources/Dot/JXCategoryDotCell.m; sourceTree = ""; }; + B393DBDB96336A5D45D2DA641478E65C /* ScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ScheduledItem.swift; path = RxSwift/Schedulers/Internal/ScheduledItem.swift; sourceTree = ""; }; B3B0956B7EBF66A8FD677D586C9C387A /* Pods-OrderScheduling */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-OrderScheduling"; path = "libPods-OrderScheduling.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; - BB2559B43ED5D8E1230FB84F96A3B679 /* DDUIPanGestureRecognizer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDUIPanGestureRecognizer.swift; path = DDUIGestureRecognizer/Classes/DDUIPanGestureRecognizer/DDUIPanGestureRecognizer.swift; sourceTree = ""; }; + B3E9BC9892B35BE0029DF8D8710A6248 /* MAOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAOverlayRenderer.h; sourceTree = ""; }; + B457EC806E1D1DBAD8F081B5BDBD0F0E /* DDAutoUIKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDAutoUIKit_Private-umbrella.h"; sourceTree = ""; }; + B4654BC1E670D3428DC237EAAA471D3B /* BRPickerStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRPickerStyle.h; path = BRPickerView/Base/BRPickerStyle.h; sourceTree = ""; }; + B4C3C9C8871C77E6AB3DC47E8E275CD0 /* 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 = ""; }; + B4E4B4ADD21DE33904C43AF84FB5BE55 /* ZFLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLoadingView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLoadingView.m; sourceTree = ""; }; + B50CAFBC2921ED5E9035C11C32BA9CF7 /* jpush-ios-5.0.1.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; path = "jpush-ios-5.0.1.xcframework"; sourceTree = ""; }; + B51DE7FD25136051DCE40F732F37A1CD /* MAOfflineItemCommonCity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemCommonCity.h; path = AMapNaviKit.framework/Headers/MAOfflineItemCommonCity.h; sourceTree = ""; }; + B528A531E143180E82A288067D0377BB /* AMapCommonObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapCommonObj.h; path = AMapSearchKit.framework/Headers/AMapCommonObj.h; sourceTree = ""; }; + B52DFFF71243EB8C7251CB1564835CD0 /* DDTextField.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTextField.swift; path = DDControlsKit_Private/Classes/DDTextField/DDTextField.swift; sourceTree = ""; }; + B53D381A91BA84278B60E04E0C85EF0E /* Observable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Observable.swift; path = RxSwift/Observable.swift; sourceTree = ""; }; + B585CBB58624E0EF2F21DF85166782A0 /* GradientView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientView.swift; path = Source/Utils/GradientView.swift; sourceTree = ""; }; + B5964D4803CFB8CEED0898C4438E9707 /* SDImageAWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAWebPCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAWebPCoder.h; sourceTree = ""; }; + B5C295419664BF01C1693D120BA2E13A /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; + B5F58FF4291879BBEA3539B0B74B3F4B /* NSData+SHA.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+SHA.m"; path = "Source/NSData+SHA.m"; sourceTree = ""; }; + B60734D98697BBE0BDA5907476C2F8E2 /* ZLEditImageConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditImageConfiguration.swift; path = Sources/General/ZLEditImageConfiguration.swift; sourceTree = ""; }; + B6144FA59B6FF2280AADF2A1E80920CF /* RequestInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestInterceptor.swift; path = Source/RequestInterceptor.swift; sourceTree = ""; }; + B62739FC705A59986B106E0BEC75FFC8 /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+MJExtension.h"; path = "MJRefresh/UIView+MJExtension.h"; sourceTree = ""; }; + B62B78079CEC2823B15BF35349176539 /* DDZFPlayerKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDZFPlayerKit_Private.modulemap; sourceTree = ""; }; + B69172B807351CBD0D60A9BF9CE3B69D /* 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 = ""; }; + B7358F3BC873542366011A08ECF48E85 /* JXCategoryTitleVerticalZoomCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomCellModel.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCellModel.m; sourceTree = ""; }; + B76B693FF4BD29AC280EB0A5AB4F57A5 /* BRPickerViewMacro.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRPickerViewMacro.h; path = BRPickerView/Base/BRPickerViewMacro.h; sourceTree = ""; }; + B78F93A260C4C4D84185389BDED0CB5C /* JXCategoryFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryFactory.h; path = Sources/Common/JXCategoryFactory.h; sourceTree = ""; }; + B79743990CE5027E957622AD540BBE93 /* MACustomBuildingOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MACustomBuildingOverlay.h; path = AMapNaviKit.framework/Headers/MACustomBuildingOverlay.h; sourceTree = ""; }; + B79D62E22D9848F7996A4C22AD03BA19 /* DDControlsKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDControlsKit_Private.release.xcconfig; sourceTree = ""; }; + B81EB1FAB8782845950E12E81E38CF8C /* Zip+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+arity.swift"; path = "RxSwift/Observables/Zip+arity.swift"; sourceTree = ""; }; + B87E673A0B4439C6149A466E8EEBC135 /* RedirectHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RedirectHandler.swift; path = Sources/Networking/RedirectHandler.swift; sourceTree = ""; }; + B88231265E76ADE26235DC161FCDDE58 /* DDDateKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDDateKit_Private.release.xcconfig; sourceTree = ""; }; + B8B0D1CB245A7A15A69EB8319C090B73 /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; + B90420B4EBF9DCF1A3266D4299E4C90E /* RequestModifier.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RequestModifier.swift; path = Sources/Networking/RequestModifier.swift; sourceTree = ""; }; + B91A914628E1A1A1DCE14D0A54FC163F /* RetryWhen.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RetryWhen.swift; path = RxSwift/Observables/RetryWhen.swift; sourceTree = ""; }; + B9415CE4AFE58DC2E4B3B2E896E5522A /* MAParticleOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAParticleOverlay.h; path = AMapNaviKit.framework/Headers/MAParticleOverlay.h; sourceTree = ""; }; + B9595AC6B4E211E882A35383440D86A0 /* 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 = ""; }; + B95C7BFEC1CDF29695328A9DCF746795 /* TVMonogramView+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "TVMonogramView+Kingfisher.swift"; path = "Sources/Extensions/TVMonogramView+Kingfisher.swift"; sourceTree = ""; }; + B96CCE9B8D2B228DE0B0775EC50E4FAF /* ImageDownloaderDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloaderDelegate.swift; path = Sources/Networking/ImageDownloaderDelegate.swift; sourceTree = ""; }; + B99629159D169DC44E98D52B41782603 /* Protected.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Protected.swift; path = Source/Protected.swift; sourceTree = ""; }; + BA39B81C9F694AC9835EFD3EF8670823 /* ConstraintPriorityTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriorityTarget.swift; path = Sources/ConstraintPriorityTarget.swift; sourceTree = ""; }; + BA475FF1F106BB339064D815BBBAA32E /* NSObject+Rx+KVORepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx+KVORepresentable.swift"; path = "RxCocoa/Foundation/NSObject+Rx+KVORepresentable.swift"; sourceTree = ""; }; + BA57B5CC8EF5DF8F462BB82F9A811411 /* car_xingshi.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = car_xingshi.png; path = DDMAMapKit_Private/Assets/car_xingshi.png; sourceTree = ""; }; + BA7726A48CB2001D8D100932F01059D9 /* ZFVolumeBrightnessView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFVolumeBrightnessView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFVolumeBrightnessView.h; sourceTree = ""; }; + BADC12FA4AA758B1B0C6DF41C2335A12 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; BB28130B0F4C47DC99D2DB9C80F70152 /* ZLPhotoBrowser */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = ZLPhotoBrowser; path = libZLPhotoBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + BB35825F8353ECDF2C2601C5F963D471 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; + BB8E254BBB0FB0B0A608F2096EF5C3F6 /* MAPointAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPointAnnotation.h; path = AMapNaviKit.framework/Headers/MAPointAnnotation.h; sourceTree = ""; }; + BB981F0C9DA54389C6DDD68879E22750 /* JXCategoryBaseCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryBaseCell.m; path = Sources/Base/JXCategoryBaseCell.m; sourceTree = ""; }; + BBC5438ACEDEF6D854CFDFF1367A0FE8 /* ControlEvent.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlEvent.swift; path = RxCocoa/Traits/ControlEvent.swift; sourceTree = ""; }; + BBC7D17C40AA258F184EA25BCAEFE4A5 /* DDCollectionViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDCollectionViewCell.swift; path = DDControlsKit_Private/Classes/DDCollectionViewCell/DDCollectionViewCell.swift; sourceTree = ""; }; + BBE669B2E827F90144C6B2FBD0144F93 /* AMapNaviKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviKit.h; path = AMapNaviKit.framework/Headers/AMapNaviKit.h; sourceTree = ""; }; + BBF420C7141239FA67A0CE2B8AD80A3A /* DDLogKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDLogKit_Private-umbrella.h"; sourceTree = ""; }; BC432FD48A5932251F1CAFBC4BF74894 /* RxCocoa */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RxCocoa; path = libRxCocoa.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + BC7E7B1E71A60B4E7A6626233CCAB18D /* DDFileManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDFileManager.swift; path = DDUtilsSwiftKit_Private/Classes/FileManager/DDFileManager.swift; sourceTree = ""; }; + BCD740B82CE0D5EECF2564CCEDCB5CEA /* UISwitch+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISwitch+Rx.swift"; path = "RxCocoa/iOS/UISwitch+Rx.swift"; sourceTree = ""; }; + BCD7ADC2188333E663932BD3559DD670 /* MAShape.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAShape.h; path = AMapNaviKit.framework/Headers/MAShape.h; sourceTree = ""; }; + BCDBF3F0094FDEA2FBB95FAE3D171DB7 /* ZLPhotoUIConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoUIConfiguration.swift; path = Sources/General/ZLPhotoUIConfiguration.swift; sourceTree = ""; }; + BD08CA20CB5FA13ACA16424C2F36B7B9 /* JXCategoryImageCellModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryImageCellModel.h; path = Sources/Image/JXCategoryImageCellModel.h; sourceTree = ""; }; + BD282A85AB1DA40361B8DA2454E817CF /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; + BD32E852F8B94ED1759436D4626FCD91 /* ESTabBarController-swift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ESTabBarController-swift-umbrella.h"; sourceTree = ""; }; + BD515F0CAB886D098AE122B690E42E07 /* 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 = ""; }; + BD5BB61FB0ADB6B8A9833127A6FAC28E /* DriveRouteCustomAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DriveRouteCustomAnnotation.h; path = DDMAMapKit_Private/Classes/DDMAMap/Annotation/DriveRouteCustomAnnotation.h; sourceTree = ""; }; + BD6B47A1E312055E908C51240253355E /* 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 = ""; }; + BD88212010EF01BC7534AE2BA398D16C /* RxSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwift.release.xcconfig; sourceTree = ""; }; + BD914B4E305D6933F1457453419AA739 /* EKRatingMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingMessageView.swift; path = Source/MessageViews/EKRatingMessageView.swift; sourceTree = ""; }; + BD9D7EE9F0B4F6321A931EDA5AEBE7D3 /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefresh/Base/MJRefreshFooter.h; sourceTree = ""; }; + BDAAF4C61B6219986B56EB6F1BE13C49 /* DDBaseLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseLabel.h; path = DDBasicControlsKit_Private/Classes/DDBaseLabel/DDBaseLabel.h; sourceTree = ""; }; + BDB09E101FA047859063CEE71FB35C93 /* ZFPlayerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerController.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerController.m; sourceTree = ""; }; + BDB96E4185166C4E25E6A955836EB0EE /* DDBaseViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseViewController.h; path = DDBasicControlsKit_Private/Classes/DDBaseViewController/DDBaseViewController.h; sourceTree = ""; }; + BDF566D8391B1ED54BE4454556053B41 /* AMapSearchError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchError.h; path = AMapSearchKit.framework/Headers/AMapSearchError.h; sourceTree = ""; }; + BE58D564083F547D167C46DE94437866 /* Kingfisher.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Kingfisher.release.xcconfig; sourceTree = ""; }; + BF14882D2225FFAC5F8C9AF35B7D8D95 /* 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 = ""; }; + BF274C55E17FFADE148C0BCF3D41669E /* MAGroundOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGroundOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAGroundOverlayRenderer.h; sourceTree = ""; }; + BF3673B49F09BAC6900C8BA25BF4DCA2 /* ZFPlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayer.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayer.h; sourceTree = ""; }; + BF645566D918E351D340FB1DC3DB6C8A /* AMapURLSearchType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearchType.h; path = AMapFoundationKit.framework/Headers/AMapURLSearchType.h; sourceTree = ""; }; + BF97B43039A1F982A20CE0CC4F5AF496 /* ConstraintLayoutGuideDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuideDSL.swift; path = Sources/ConstraintLayoutGuideDSL.swift; sourceTree = ""; }; + BF9933C238A0EFE812D364F8FEA7C5B8 /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoNormalFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m; sourceTree = ""; }; + BFB0B638678F6BFCA7FA5729464D317E /* DDUtilsSwiftKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDUtilsSwiftKit_Private-dummy.m"; sourceTree = ""; }; + BFCD53A3C84813D3B134DF865878EC9E /* 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 = ""; }; + BFF4ABD12C58CC8E55DEDFBB5B1B9ED8 /* DDAutoUIKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDAutoUIKit_Private.debug.xcconfig; sourceTree = ""; }; + BFFC2C3D9D45DCA576D36792FCCC30A9 /* BooleanDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BooleanDisposable.swift; path = RxSwift/Disposables/BooleanDisposable.swift; sourceTree = ""; }; + C02EBA2F1450096B82D9C2AE4C0B646A /* DDBaseCollectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseCollectionView.h; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionView/DDBaseCollectionView.h; sourceTree = ""; }; + C05571DE1282BD2F8C442DBB7DD55963 /* ConstraintRelation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelation.swift; path = Sources/ConstraintRelation.swift; sourceTree = ""; }; + C06E47D0E2F2EE6B7CCF4459A0E8FE31 /* ConstraintConstantTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConstantTarget.swift; path = Sources/ConstraintConstantTarget.swift; sourceTree = ""; }; + C0C758BFBC8029DB40D25E71D3D8A697 /* Combine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Combine.swift; path = Source/Combine.swift; sourceTree = ""; }; + C0CBB0E3F0A61ACC8CEF2A45411A5AB0 /* GIFAnimatedImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GIFAnimatedImage.swift; path = Sources/Image/GIFAnimatedImage.swift; sourceTree = ""; }; + C0CEB44EEF2894301EAEEDC8B77D3AF2 /* ConnectableObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectableObservableType.swift; path = RxSwift/ConnectableObservableType.swift; sourceTree = ""; }; + C0FCF529FF0989694BF4A872A31F903C /* Just.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Just.swift; path = RxSwift/Observables/Just.swift; sourceTree = ""; }; + C1579615F46DE90B7B70707FE940822D /* EKButtonView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKButtonView.swift; path = Source/MessageViews/MessagesUtils/EKButtonView.swift; sourceTree = ""; }; + C16007D5A25CDCDC00B9C26CE43B7D82 /* ZFLandScapeControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLandScapeControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFLandScapeControlView.m; sourceTree = ""; }; + C16F5B45DAD34102901002D0B8DFDD05 /* AMapFoundationVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationVersion.h; path = AMapFoundationKit.framework/Headers/AMapFoundationVersion.h; sourceTree = ""; }; + C18139F5A43A1C285815ACBEE5478A2C /* BRPickerView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BRPickerView-dummy.m"; sourceTree = ""; }; + C18639A09489747C02189F6DF46B16F5 /* 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 = ""; }; + C1A39B00A644818BCB0CA5B5000A6DEA /* UITabBarController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITabBarController+Rx.swift"; path = "RxCocoa/iOS/UITabBarController+Rx.swift"; sourceTree = ""; }; + C1B11A8713F102FD63E3A3AB1EA76550 /* MAPinAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPinAnnotationView.h; path = AMapNaviKit.framework/Headers/MAPinAnnotationView.h; sourceTree = ""; }; + C1CC91C3C6F18C1A2E4AF06AD477BBFD /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = ""; }; + C1CE8E4465B6CB946C3C52C6C6835E2A /* JXCategoryView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXCategoryView.debug.xcconfig; sourceTree = ""; }; + C1FBDDD488E914C54EEC45235F6F15AD /* 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 = ""; }; + C2051AA305B91B42DE51F92A963FF8B8 /* RxTableViewDataSourcePrefetchingProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourcePrefetchingProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDataSourcePrefetchingProxy.swift; sourceTree = ""; }; + C221F9782A9BAE37674AAABFBDD2B7F8 /* JXCategoryView.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JXCategoryView.release.xcconfig; sourceTree = ""; }; + C2389F3A9528A09E817EEDEE24AE13F3 /* NopDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NopDisposable.swift; path = RxSwift/Disposables/NopDisposable.swift; sourceTree = ""; }; + C28E1A0F48A62F4968CE089921F2BF63 /* AnonymousDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnonymousDisposable.swift; path = RxSwift/Disposables/AnonymousDisposable.swift; sourceTree = ""; }; + C2B307DF007DE390712809DE011C5B43 /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateHeader.m; path = MJRefresh/Custom/Header/MJRefreshStateHeader.m; sourceTree = ""; }; + C314B40C7A1C38F08D09515E5EF67E13 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; + C33E70937C0C17785ED8150A2138651B /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; C3A46B03C308EEEB11F2A62BA5D2E8BE /* JXCategoryView */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = JXCategoryView; path = libJXCategoryView.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + C3D984FA15FC54711E4139BFB912617C /* DispatchQueueConfiguration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DispatchQueueConfiguration.swift; path = RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift; sourceTree = ""; }; + C3E43700B862AB0F324553D1A1BBE29F /* DDBasicControlsKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDBasicControlsKit_Private.release.xcconfig; sourceTree = ""; }; + C3E4DE1E34CD30F381F967C1C8441B44 /* ConstraintMakerRelatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerRelatable.swift; path = Sources/ConstraintMakerRelatable.swift; sourceTree = ""; }; + C3E61D6594AA51838DD5DE8F83F24637 /* DDProgressHUDKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDProgressHUDKit_Private.modulemap; sourceTree = ""; }; + C3F1C0CEB0DB2B062B28FB2207CB90A1 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; C3F44C782D64D7EB20B61CE3844EBFAD /* Kingfisher */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = Kingfisher; path = libKingfisher.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + C42AD4008CAF52D99B0A5EC0626FB27D /* ZFPlayerGestureControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerGestureControl.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerGestureControl.h; sourceTree = ""; }; + C434EB5EFD9A8E047F442AC63A679FDD /* MJRefreshConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConfig.h; path = MJRefresh/MJRefreshConfig.h; sourceTree = ""; }; + C4AE11246EECD0B976F9CF8B81E2297F /* DDBaseView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseView.m; path = DDBasicControlsKit_Private/Classes/DDBaseView/DDBaseView.m; sourceTree = ""; }; + C4C8C391E4D58569D9C9704C1F5C01E4 /* 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 = ""; }; + C5508EA6B5659E8AD9132BE4C3DD44CB /* ZLAdjustSlider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAdjustSlider.swift; path = Sources/Edit/ZLAdjustSlider.swift; sourceTree = ""; }; + C5C51D602687153D93C1434D2A7431BE /* DDLabel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDLabel.swift; path = DDControlsKit_Private/Classes/DDLabel/DDLabel.swift; sourceTree = ""; }; + C5CB79208405463217F0D40ACA654549 /* ConcurrentDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConcurrentDispatchQueueScheduler.swift; path = RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift; sourceTree = ""; }; + C5D441FC219D479DF04DC7900A078A9D /* Bag.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Bag.swift; path = Platform/DataStructures/Bag.swift; sourceTree = ""; }; + C5D99EFA6A36CB89EF3FD2F10CC0779B /* IQKeyboardManagerConstants.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardManagerConstants.swift; path = IQKeyboardManagerSwift/Constants/IQKeyboardManagerConstants.swift; sourceTree = ""; }; + C608E77AD8C1F7B28CFB6089484542BE /* UITabBar+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITabBar+Rx.swift"; path = "RxCocoa/iOS/UITabBar+Rx.swift"; sourceTree = ""; }; + C62BA54A7F1E2E94374E39E7C525C272 /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = ""; }; + C649AD052A9CD1609F9AA82081AB17E7 /* DDFontKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDFontKit_Private.modulemap; sourceTree = ""; }; + C6529C9411134215EF4AFE57EA35EE07 /* JXCategoryViewDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryViewDefines.h; path = Sources/Common/JXCategoryViewDefines.h; sourceTree = ""; }; + C6915CD2CEE7988922F4725DF5020F04 /* 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 = ""; }; + C6F1F16135F50452C526976E6E09EC5E /* EKRatingMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKRatingMessage.swift; path = Source/Model/EKRatingMessage.swift; sourceTree = ""; }; + C72BB617E03A0A34B429A279437CAAC3 /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; + C784DE2783BBE47C30888C60B164359B /* DDAudioPlayerKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDAudioPlayerKit_Private.modulemap; sourceTree = ""; }; + C7D4B86BB67C4C95F5566DC5F3A9AADB /* DDToastKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDToastKit_Private.debug.xcconfig; sourceTree = ""; }; + C7DCEF4622623F43A005D529D79F285D /* ControlEvent+Driver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ControlEvent+Driver.swift"; path = "RxCocoa/Traits/Driver/ControlEvent+Driver.swift"; sourceTree = ""; }; + C7E9B643D85DBFD37D8B69E4BC25DF55 /* DDImageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDImageView.swift; path = DDControlsKit_Private/Classes/DDImageView/DDImageView.swift; sourceTree = ""; }; + C7EB26E761192D0B395DF0707941F389 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; + C821320F799CABA2E06EB3ABA63B772E /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; + C8383EAF81E73AF942440A7F3AE81034 /* MAGltfOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGltfOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAGltfOverlayRenderer.h; sourceTree = ""; }; + C861125E2CD0971D9A3A7E91EA523A71 /* Key.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Key.swift; path = Source/Key.swift; sourceTree = ""; }; + C875871B00E34B57CB9933E8F9A0308F /* UIImageView+ZFCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+ZFCache.m"; path = "DDZFPlayerKit_Private/Classes/ControlView/UIImageView+ZFCache.m"; sourceTree = ""; }; + C89CAF766E92084E7C51D42506C29379 /* 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 = ""; }; + C8B0D6325FCFFB55E1659D7F832108F3 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; + C93424CC43819631E99AF0EDE85708E7 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; + C944813E51D25FAADC9BEBD18CBF3C24 /* 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 = ""; }; + C94D52953BBC117BD07F900979E57072 /* ConstraintInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsets.swift; path = Sources/ConstraintInsets.swift; sourceTree = ""; }; + C9772A9C23F3A4B16F654D5753153188 /* MAOfflineMapViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineMapViewController.h; path = AMapNaviKit.framework/Headers/MAOfflineMapViewController.h; sourceTree = ""; }; + C987838EA618BD73F6A28ACD07188BC7 /* ImageBinder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageBinder.swift; path = Sources/SwiftUI/ImageBinder.swift; sourceTree = ""; }; + C9B22AEFF5E21204956A6F923438DA68 /* ESTabBarItemMoreContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItemMoreContentView.swift; path = Sources/ESTabBarItemMoreContentView.swift; sourceTree = ""; }; + C9D1D343EEA5C27B4D71F54C04E93242 /* CombineLatest+arity.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+arity.swift"; path = "RxSwift/Observables/CombineLatest+arity.swift"; sourceTree = ""; }; + C9FD3B7299BEDC109194BB0B95A2FA1A /* SwiftyRSA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwiftyRSA.release.xcconfig; sourceTree = ""; }; + CA6CE727FB080198540D2C3A407DBEF6 /* ZFPlayerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerView.m; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerView.m; sourceTree = ""; }; + CA7B59B6D4C3F98DE7E7387043709C95 /* MAArc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAArc.h; path = AMapNaviKit.framework/Headers/MAArc.h; sourceTree = ""; }; + CA8F36DD09E2278795519B20F2B4E371 /* GroupedObservable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupedObservable.swift; path = RxSwift/GroupedObservable.swift; sourceTree = ""; }; + CAEE195988CEB44DDFB617A767DA79C0 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = ""; }; + CB2EFF782B3FB411DB2AF290FA7CE49F /* DDColorKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDColorKit_Private.release.xcconfig; sourceTree = ""; }; + CB56ED74DC39CC68AF7A99660929E18C /* 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 = ""; }; + CB659B69B7D3C91B155E0C5696719E24 /* BRPickerView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = BRPickerView.modulemap; sourceTree = ""; }; + CBC27A72198BDB7C38AF24FB25452AAB /* UISlider+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISlider+Rx.swift"; path = "RxCocoa/iOS/UISlider+Rx.swift"; sourceTree = ""; }; + CC18668459F280A60B4618599D0BD16A /* ImageProcessor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageProcessor.swift; path = Sources/Image/ImageProcessor.swift; sourceTree = ""; }; + CC307CBB38D0D9E2417E63C5486C26F0 /* RxTableViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxTableViewDataSourceProxy.swift; sourceTree = ""; }; + CC674515650A7193BA73BF558F4961F9 /* DDAF.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAF.swift; path = DDNetworkingOfAlamofireKit_Private/Classes/DDAF.swift; sourceTree = ""; }; + CCA09405C4F4C6073A08B204B084AF08 /* MAConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAConfig.h; path = AMapNaviKit.framework/Headers/MAConfig.h; sourceTree = ""; }; CCA25F5644BF0246ABFFF775553FEEAE /* Pods-OrderScheduling.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OrderScheduling.debug.xcconfig"; 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 = ""; }; - CD0A4601DCEDE01FE45C61E92804430D /* car_xingshi@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "car_xingshi@3x.png"; path = "DDMAMapKit_Private/Assets/car_xingshi@3x.png"; 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 = ""; }; + CCC376750741E45723F18EB3F2CDB897 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; + CD1B676691A6676A99F10B50F9274E3D /* AMapNaviRideManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRideManager.h; path = AMapNaviKit.framework/Headers/AMapNaviRideManager.h; sourceTree = ""; }; + CD5BACAB19DCE4D9237BCAC42E2683C8 /* AMapNavi-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapNavi-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; + CD676FDE4E4D758581197A7BB38EC06E /* UIViewController+ZFPlayerRotation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+ZFPlayerRotation.m"; path = "DDZFPlayerKit_Private/Classes/Core/UIViewController+ZFPlayerRotation.m"; sourceTree = ""; }; + CD9622D78B67EBBB9F0CC68E96C76460 /* DDUIPanGestureRecognizer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDUIPanGestureRecognizer.swift; path = DDUIGestureRecognizer/Classes/DDUIPanGestureRecognizer/DDUIPanGestureRecognizer.swift; sourceTree = ""; }; + CDBEDC79DF9A98BBC255B9B5BDC6BE1B /* DDTableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTableView.swift; path = DDControlsKit_Private/Classes/DDTableView/DDTableView.swift; sourceTree = ""; }; + CDBF6303D0488850ED38555E8F66471F /* AMapNaviDriveDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviDriveDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviDriveDataRepresentable.h; sourceTree = ""; }; + CDD03AB7725994DEFC16D81601725E5D /* UINavigationController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UINavigationController+Rx.swift"; path = "RxCocoa/iOS/UINavigationController+Rx.swift"; sourceTree = ""; }; + CDFAAE0F3C1ED0E8A418B1C2E5D4B11D /* RxCocoa-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RxCocoa-dummy.m"; sourceTree = ""; }; + CE102B1A14C59318B124A794B74BEF22 /* DDLogKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDLogKit_Private.modulemap; sourceTree = ""; }; + CE25309EE1995BE5DFA583C1FDFB26D8 /* IQUITextFieldView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUITextFieldView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUITextFieldView+Additions.swift"; sourceTree = ""; }; + CE30D79CEAAC1DD7490D2530D0C26C6A /* Infallible+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Infallible+Concurrency.swift"; path = "RxSwift/Traits/Infallible/Infallible+Concurrency.swift"; sourceTree = ""; }; + CE4A5A2856DE56035A12D615A3F3DD8B /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; + CE6F56AA2541B1C73D20227D285533B9 /* DDProgressHUDKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDProgressHUDKit_Private.debug.xcconfig; sourceTree = ""; }; + CE81313328137EC08B4DF48C49E15834 /* DDBaseNavigationController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseNavigationController.h; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDBaseNavigationController.h; sourceTree = ""; }; + CEE5CD9E26178F50D5F9DBB7BCEA887D /* CompositeDisposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositeDisposable.swift; path = RxSwift/Disposables/CompositeDisposable.swift; sourceTree = ""; }; + CEEA491E725F633B09A7FB4EBC582CA8 /* SwiftyRSAError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftyRSAError.swift; path = Source/SwiftyRSAError.swift; sourceTree = ""; }; + CF22AA1DB2CE9C90A37E1F17D80DF614 /* 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 = ""; }; + CFB4B69CE8870B4A92DC09ABE69C3FD7 /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefresh/MJRefreshConst.m; sourceTree = ""; }; + CFBC3C60DDA0053689D7265DE7C13E2C /* ObservableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObservableType.swift; path = RxSwift/ObservableType.swift; sourceTree = ""; }; + CFDAA1D450795E3E9ACB2041DE578354 /* MAHeatMapVectorOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorOverlay.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorOverlay.h; sourceTree = ""; }; + D00FD3347D13AF427B96A4550756CDCC /* AMapSearch-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapSearch-NO-IDFA.release.xcconfig"; sourceTree = ""; }; + D0214A5F180FC37AD90D8AA4364FFB20 /* WKWebView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "WKWebView+Rx.swift"; path = "RxCocoa/iOS/WKWebView+Rx.swift"; sourceTree = ""; }; + D046A9A05FB9780661487BAC2E06C7EC /* Multicast.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Multicast.swift; path = RxSwift/Observables/Multicast.swift; sourceTree = ""; }; + D04F4025DAA6AE1607CA0C6A613E77D2 /* JXCategoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryView.h; path = Sources/JXCategoryView.h; sourceTree = ""; }; + D0524AE01C98B859CF0D79DF9DA54B79 /* SwiftyRSA.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftyRSA.swift; path = Source/SwiftyRSA.swift; sourceTree = ""; }; + D05AB07AEAA9420C4540ECDF663E1DDB /* ZLPhotoPreviewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewCell.swift; path = Sources/General/ZLPhotoPreviewCell.swift; sourceTree = ""; }; + D0CF26A88667E560740999AB750DAC70 /* Date+Dispatch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Dispatch.swift"; path = "RxSwift/Date+Dispatch.swift"; sourceTree = ""; }; + D0DBE48A97BAB9861BB831F329CD19B1 /* 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 = ""; }; + D0DFEC83AA1947F7C57D3AC19B582D65 /* 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 = ""; }; + D10BE5B1E91883492D614DE95EA20871 /* EKAttributes+WindowLevel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+WindowLevel.swift"; path = "Source/Model/EntryAttributes/EKAttributes+WindowLevel.swift"; sourceTree = ""; }; + D10E9ABC3A41088CF833628918497FF9 /* Lock.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Lock.swift; path = RxSwift/Concurrency/Lock.swift; sourceTree = ""; }; + D119D5BF1256318F7627F469C54B1E00 /* MAMapAccessibilityIdentifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapAccessibilityIdentifier.h; path = AMapNaviKit.framework/Headers/MAMapAccessibilityIdentifier.h; sourceTree = ""; }; D13827848C413A76ADD18E47761D2B20 /* Pods-OrderScheduling.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-OrderScheduling.modulemap"; 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 = ""; }; + D15783D27881441824AD940668BCBD65 /* DDBaseViewController.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = DDBaseViewController.xcassets; path = DDBasicControlsKit_Private/Assets/DDBaseViewController.xcassets; sourceTree = ""; }; + D1B398DD661B46203B21F05443005216 /* IQKeyboardManager+UIKeyboardNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+UIKeyboardNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+UIKeyboardNotification.swift"; sourceTree = ""; }; + D201B56339807B0E62CBD0BE2B42DAA7 /* EKAlertMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAlertMessageView.swift; path = Source/MessageViews/EKAlertMessageView.swift; sourceTree = ""; }; + D205DA3C2D498E828945512898EF98CF /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; + D2086FC0D5B10E864904539B38AF3D2B /* ZLEditVideoViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEditVideoViewController.swift; path = Sources/Edit/ZLEditVideoViewController.swift; sourceTree = ""; }; + D234F382762E9E04BFD8CD5B7800AACB /* ZLClipImageViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLClipImageViewController.swift; path = Sources/Edit/ZLClipImageViewController.swift; sourceTree = ""; }; + D24054FC4BC47152A1F8985EA44E65FB /* MJRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJRefresh.modulemap; sourceTree = ""; }; + D251F6F5E7A097DA804D6B11A84EBCC7 /* ZFSmallFloatControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFSmallFloatControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSmallFloatControlView.m; sourceTree = ""; }; + D2ABA5E2F457E5ADA19F79B14FED379F /* ConstraintOffsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintOffsetTarget.swift; path = Sources/ConstraintOffsetTarget.swift; sourceTree = ""; }; + D2BED0B84C9F4F09488DA9F074487C21 /* DelaySubscription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DelaySubscription.swift; path = RxSwift/Observables/DelaySubscription.swift; sourceTree = ""; }; + D2CBE2073D3901EFEBE9548F11B9F39C /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = ""; }; + D2CC9822BD0CF962919742DE1A047C95 /* MAAnnotation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAAnnotation.h; path = AMapNaviKit.framework/Headers/MAAnnotation.h; sourceTree = ""; }; + D2D1C35B8672819CB5EEBA2B4A5653E4 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; + D2EBCDEA0E18CFB49CDFE9A4AEA421A4 /* ControlTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControlTarget.swift; path = RxCocoa/Common/ControlTarget.swift; sourceTree = ""; }; + D30FF4C708DCD643551784C15B84203F /* UIControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIControl+Rx.swift"; path = "RxCocoa/iOS/UIControl+Rx.swift"; sourceTree = ""; }; + D3756881A50A8A89FC1A80F48932308B /* ImagePrefetcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImagePrefetcher.swift; path = Sources/Networking/ImagePrefetcher.swift; sourceTree = ""; }; + D37C3F62C9EBE5B64F2311A8472348C2 /* MATileOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MATileOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MATileOverlayRenderer.h; sourceTree = ""; }; + D3A02AF1607699BF2EC288EDC813DED8 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; + D3E1209A1DDFD5B21D43A2F9842654B8 /* AuthenticationChallengeResponsable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationChallengeResponsable.swift; path = Sources/Networking/AuthenticationChallengeResponsable.swift; sourceTree = ""; }; + D3FB6F056F8A12D444682DBA0CE25994 /* DriveRouteCustomAnnotationView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DriveRouteCustomAnnotationView.h; path = DDMAMapKit_Private/Classes/DDMAMap/AnnotationView/DriveRouteCustomAnnotationView.h; sourceTree = ""; }; + D40BB621ACD2745962A92CF9F9DE8C4E /* ImmediateSchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImmediateSchedulerType.swift; path = RxSwift/ImmediateSchedulerType.swift; sourceTree = ""; }; + D4105004055EA66AE909A34489A4713E /* SnapKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-prefix.pch"; sourceTree = ""; }; + D42114A9586DCA09FC1B2CA5FD4ABA79 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; + D46282E095DB304180ACC5813886B840 /* PublicKey.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PublicKey.swift; path = Source/PublicKey.swift; sourceTree = ""; }; + D47EF339C33166FAC958557B9D4FE001 /* AMapTrackError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackError.h; path = AMapTrackKit.framework/Headers/AMapTrackError.h; sourceTree = ""; }; + D49ED24DAC355802A4BED057B46466F6 /* DDPersistenceKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDPersistenceKit_Private-dummy.m"; sourceTree = ""; }; + D4B00E006056B429B76EEC1C005ED1B9 /* ZLAlbumListController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAlbumListController.swift; path = Sources/General/ZLAlbumListController.swift; sourceTree = ""; }; + D50725068B2B8D4A638C632229E93A05 /* IQUIViewController+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIViewController+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIViewController+Additions.swift"; sourceTree = ""; }; + D56FF46099C41C4179B37FC480371703 /* EKAttributes+HapticFeedback.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+HapticFeedback.swift"; path = "Source/Model/EntryAttributes/EKAttributes+HapticFeedback.swift"; sourceTree = ""; }; + D594020C6C1BD9A7CDD5BB9F2FCD59E5 /* BRBaseView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRBaseView.h; path = BRPickerView/Base/BRBaseView.h; sourceTree = ""; }; + D5980B975AF5711F5E75E866534316EE /* MJRefreshConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConfig.m; path = MJRefresh/MJRefreshConfig.m; sourceTree = ""; }; D5A3880A46506555230D960A979C59EA /* Pods-OrderScheduling-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-OrderScheduling-acknowledgements.plist"; 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 = ""; }; - D7C2BE8DD9A4D6611E11462A2C06C07C /* car_xingshi@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "car_xingshi@2x.png"; path = "DDMAMapKit_Private/Assets/car_xingshi@2x.png"; sourceTree = ""; }; + D5BD9AA5C1EDB586301FBC4F00CA9DA3 /* EventMonitor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EventMonitor.swift; path = Source/EventMonitor.swift; sourceTree = ""; }; + D5F722418DA9A57C7FDCDF4F98860557 /* BRPickerView.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BRPickerView.debug.xcconfig; sourceTree = ""; }; + D63E79734F0397E8D93247BDF0B77F9E /* ZFSmallFloatControlView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFSmallFloatControlView.h; path = DDZFPlayerKit_Private/Classes/ControlView/ZFSmallFloatControlView.h; sourceTree = ""; }; + D641F5A274731444F1CFF4D614F677CE /* SnapKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SnapKit.modulemap; sourceTree = ""; }; + D64D0833F82FDE2751B36C155118635D /* ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoBrowser.swift; path = Sources/General/ZLPhotoBrowser.swift; sourceTree = ""; }; + D66D24BA0314D69D80A4725766A65B41 /* JXCategoryIndicatorLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorLineView.m; sourceTree = ""; }; + D67851B86363F8528BAC1048E06347AC /* DistinctUntilChanged.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DistinctUntilChanged.swift; path = RxSwift/Observables/DistinctUntilChanged.swift; sourceTree = ""; }; + D6861993DAD85F0DFAE2BD03B5F7A613 /* DDToastKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDToastKit_Private-umbrella.h"; sourceTree = ""; }; + D6F65073F0DCD250E60942545C47750A /* DDBaseNavigationController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseNavigationController.m; path = DDBasicControlsKit_Private/Classes/DDBaseNavigationController/DDBaseNavigationController.m; sourceTree = ""; }; + D6F758731ECC708DC7F5F80D5AAF0626 /* DDCollectionView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDCollectionView.swift; path = DDControlsKit_Private/Classes/DDCollectionView/DDCollectionView.swift; sourceTree = ""; }; + D6FBC98227692E2EDA7BA0158B148EE0 /* JXCategoryTitleVerticalZoomCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomCell.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomCell.m; sourceTree = ""; }; + D6FE25C4D36212884AF611DCC2F0CEC5 /* ColorUtil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorUtil.swift; path = DDColorKit_Private/Classes/ColorUtil.swift; sourceTree = ""; }; + D710895E749BAB946654E01B8DD21773 /* Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Kingfisher.swift; path = Sources/General/Kingfisher.swift; sourceTree = ""; }; + D71A38738982F4841019F6DF3A9EDA7D /* MAMultiPointOverlayRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPointOverlayRenderer.h; path = AMapNaviKit.framework/Headers/MAMultiPointOverlayRenderer.h; sourceTree = ""; }; + D72C15D32548DC9CB499C1F695B3FF78 /* JXCategoryView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "JXCategoryView-dummy.m"; sourceTree = ""; }; + D73757E22C06EA43942964B1C929EAC0 /* MAOfflineItemNationWide.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineItemNationWide.h; path = AMapNaviKit.framework/Headers/MAOfflineItemNationWide.h; sourceTree = ""; }; + D752328C851F17A39773F2072576FF3D /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoStateFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h; sourceTree = ""; }; + D75519C34B3A8A8EE799400C3E4A77B4 /* DDViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDViewController.swift; path = DDControlsKit_Private/Classes/DDViewController/DDViewController.swift; sourceTree = ""; }; + D75C33C7224002A89D976BEA77AF3C42 /* DDMALocationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDMALocationManager.m; path = DDMAMapKit_Private/Classes/DDMALocation/DDMALocationManager.m; sourceTree = ""; }; + D77AF7173B411EDDD82CE635A945D855 /* EKContentView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKContentView.swift; path = Source/Infra/EKContentView.swift; sourceTree = ""; }; + D7961ABD51451CFC2B29850BFE17D2E8 /* ZLPhotoPreviewPopInteractiveTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewPopInteractiveTransition.swift; path = Sources/Animation/ZLPhotoPreviewPopInteractiveTransition.swift; sourceTree = ""; }; + D7B498F0D77FDF2CEA1A0ED6976D5E80 /* CompactMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompactMap.swift; path = RxSwift/Observables/CompactMap.swift; sourceTree = ""; }; + D7C1CDE591EA590C681C78F2EE8AAE00 /* DDBaseTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDBaseTableViewCell.h; path = DDBasicControlsKit_Private/Classes/DDBaseTableViewCell/DDBaseTableViewCell.h; sourceTree = ""; }; D80ECFAC844B9AC7A76107391505B65A /* DDUIGestureRecognizer */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDUIGestureRecognizer; path = libDDUIGestureRecognizer.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + D8762C90F0EE6C0086B17ABA2A23C6FC /* ConstraintInsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsetTarget.swift; path = Sources/ConstraintInsetTarget.swift; sourceTree = ""; }; + D8ACAF0D76072A8F51B9F0C8833AD97C /* KF.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KF.swift; path = Sources/General/KF.swift; sourceTree = ""; }; + D8CA2A33931DC2579FC0ECC78A3F32F5 /* JXCategoryTitleVerticalZoomView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleVerticalZoomView.m; path = Sources/VerticalZoomTitle/JXCategoryTitleVerticalZoomView.m; sourceTree = ""; }; + D8D9D3488435411716F91703BEEAAD6B /* ZFIJKPlayerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFIJKPlayerManager.m; path = DDZFPlayerKit_Private/Classes/ijkplayer/ZFIJKPlayerManager.m; sourceTree = ""; }; + D8DEEAC1C0814D853BD3C163C83754F2 /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-prefix.pch"; sourceTree = ""; }; + D8E1371FFD90B69B7CD816246FC91E70 /* 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 = ""; }; + D8E24BD6706A3C27F8A0732B1F84AF01 /* ZLEnlargeButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLEnlargeButton.swift; path = Sources/General/ZLEnlargeButton.swift; sourceTree = ""; }; + D8F227D5D68ADD3C74755F408D3393E8 /* ZFPlayerConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPlayerConst.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPlayerConst.h; sourceTree = ""; }; + D8FCED600A05B1C2B846D30CC3AAD57B /* 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 = ""; }; + D9067A036606DA7919DB719E91C4BDCE /* _RXKVOObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = _RXKVOObserver.h; path = RxCocoa/Runtime/include/_RXKVOObserver.h; sourceTree = ""; }; + D90F21EEE1973C55BEDCF3B1F0635C53 /* JXCategoryCollectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryCollectionView.h; path = Sources/Common/JXCategoryCollectionView.h; sourceTree = ""; }; + D91C2D9AA7C3D028D3B93A66682B4DA9 /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; + D9330F01C623DE38FFCB15ED382FE3CB /* AuthenticationInterceptor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AuthenticationInterceptor.swift; path = Source/AuthenticationInterceptor.swift; sourceTree = ""; }; + D93B6A939DE984F1EB0388D8C75DD180 /* 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 = ""; }; + D96A1573EEDF722917BAFADBD0C4A1BE /* DDNetworkingOfAlamofireKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDNetworkingOfAlamofireKit_Private.modulemap; sourceTree = ""; }; + D98D93B3F0A5345AC7640F9F5D106304 /* ZLVideoManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLVideoManager.swift; path = Sources/General/ZLVideoManager.swift; sourceTree = ""; }; + D99B4A3B342E1BEC9FBD4999B99CACDB /* JXCategoryIndicatorDotLineView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorDotLineView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorDotLineView.m; sourceTree = ""; }; + D9AD58267617D080A644D15C5953A3DA /* Asn1Parser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Asn1Parser.swift; path = Source/Asn1Parser.swift; sourceTree = ""; }; + D9B630665C6BF531B726AB0B13F27DDE /* ZFUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFUtilities.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFUtilities.m; sourceTree = ""; }; + D9FE411F00585321AC1200E210CE060F /* UILayoutSupport+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UILayoutSupport+Extensions.swift"; path = "Sources/UILayoutSupport+Extensions.swift"; sourceTree = ""; }; + DA1B4D36BDC5BF26A01A004BABC763DD /* DDBaseImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseImageView.m; path = DDBasicControlsKit_Private/Classes/DDBaseImageView/DDBaseImageView.m; sourceTree = ""; }; + DA37BA8707C464C319C8280DEA800B2F /* NSError+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSError+ZLPhotoBrowser.swift"; path = "Sources/Extensions/NSError+ZLPhotoBrowser.swift"; sourceTree = ""; }; + DA50CE27FFED03713C09CBB312C7134E /* EKStyleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKStyleView.swift; path = Source/Infra/EKStyleView.swift; sourceTree = ""; }; DA5F7E5AA5A762E4504855EAF3216C8A /* SwiftEntryKit */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = SwiftEntryKit; path = libSwiftEntryKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + DA7B060AE4F21484A3A709123F6FA638 /* MAOfflineCity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAOfflineCity.h; path = AMapNaviKit.framework/Headers/MAOfflineCity.h; sourceTree = ""; }; DAFE13D35532C1BA0D3624F4C38BEE8E /* DDLogKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDLogKit_Private; path = libDDLogKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + DB14C58F534101E8EA2AFBA7D43B6227 /* ZLAlbumListCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLAlbumListCell.swift; path = Sources/General/ZLAlbumListCell.swift; sourceTree = ""; }; + DB23628E9D8ED8F2A61914339839CB93 /* _RXDelegateProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = _RXDelegateProxy.m; path = RxCocoa/Runtime/_RXDelegateProxy.m; sourceTree = ""; }; + DB3B79C4DB6A5DCFD066B93DA04D6F60 /* MJRefresh.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.debug.xcconfig; sourceTree = ""; }; + DB482E4D85EE363F0FA6A5BF8274328E /* ZLPhotoBrowser.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ZLPhotoBrowser.release.xcconfig; sourceTree = ""; }; + DB4FADDE9C9081AA415889358C397FD3 /* Materialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Materialize.swift; path = RxSwift/Observables/Materialize.swift; sourceTree = ""; }; + DB5422D5D752B443B060C8D7B74DE2F3 /* String+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+ZLPhotoBrowser.swift"; path = "Sources/Extensions/String+ZLPhotoBrowser.swift"; sourceTree = ""; }; + DB7034410550A92E93A2C9B271A497AB /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; + DBE7E9FAB60DED8D039B6C14E4B9E1E1 /* Observable+Concurrency.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Concurrency.swift"; path = "RxSwift/Observable+Concurrency.swift"; sourceTree = ""; }; + DBF3F7C6011FFF9525AF4F9EA7BE014C /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; + DC113ECFBA983B2B2B197B4A7B44578C /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoStateFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m; sourceTree = ""; }; + DC4533F08B18238EC5C852E1B136CC7F /* NSView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSView+Rx.swift"; path = "RxCocoa/macOS/NSView+Rx.swift"; sourceTree = ""; }; + DC6E85FE7043840E8B131B9D323E2E7A /* EKAttributes+Shadow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+Shadow.swift"; path = "Source/Model/EntryAttributes/EKAttributes+Shadow.swift"; sourceTree = ""; }; + DC897248D2F7405E6639BF7DF62EDDEC /* IQKeyboardManagerSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.debug.xcconfig; sourceTree = ""; }; + DCB938EFA10CB6F188D79421F12A0F09 /* ZLThumbnailViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLThumbnailViewController.swift; path = Sources/General/ZLThumbnailViewController.swift; sourceTree = ""; }; + DCCCD01F51423BB28E388EB2A7CA71B0 /* SnapKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-umbrella.h"; sourceTree = ""; }; + DCE1FBA2658CEF1279E07E4C878BEEA8 /* DDDateKit_Private.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDDateKit_Private.debug.xcconfig; sourceTree = ""; }; + DDCE9E6BDA94E73329AB9C50016EEBC0 /* MJRefreshNormalTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.h; sourceTree = ""; }; + DE0880A8271F9D408AB8559DEE604AA8 /* 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 = ""; }; + DE09A22B7ADCECBB2E842A4F8A309C3F /* AMapLocationKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationKit.h; path = AMapLocationKit.framework/Headers/AMapLocationKit.h; sourceTree = ""; }; + DE2E4FB8E2BEBDB74313DD9741AA817D /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = ""; }; + DE4652CD4273BE4BB3440653574A55FF /* Kingfisher-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Kingfisher-umbrella.h"; sourceTree = ""; }; + DE607DDBC3ED426CA3A37574F0D58EA4 /* AMapNaviWalkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviWalkView.h; path = AMapNaviKit.framework/Headers/AMapNaviWalkView.h; sourceTree = ""; }; + DE8420EC087CF39329EFA289A9176837 /* AMapNaviCompositeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCompositeManager.h; path = AMapNaviKit.framework/Headers/AMapNaviCompositeManager.h; sourceTree = ""; }; + DE85F40402691E08F01780481F9605A4 /* JXCategoryIndicatorComponentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorComponentView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorComponentView.m; sourceTree = ""; }; + DE89E057EB4CA2D4CCD39793E73A103D /* FormatIndicatedCacheSerializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatIndicatedCacheSerializer.swift; path = Sources/Cache/FormatIndicatedCacheSerializer.swift; sourceTree = ""; }; + DEA89CCAE3A256282C9F94981D3768C7 /* JXCategoryIndicatorTriangleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorTriangleView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorTriangleView.m; sourceTree = ""; }; DF07F7B964C7E3CE99FEEC54FC37F050 /* DDUtilsSwiftKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDUtilsSwiftKit_Private; path = libDDUtilsSwiftKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + DF34887BDD05FF791AFEFEE1D447CDE8 /* UISearchBar+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISearchBar+Rx.swift"; path = "RxCocoa/iOS/UISearchBar+Rx.swift"; sourceTree = ""; }; + DF716F2C9DEA3B5F5789AAF4A3C22572 /* EKAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKAttributes.swift; path = Source/Model/EntryAttributes/EKAttributes.swift; sourceTree = ""; }; + DF7C9DEBA19C67123F6178C64C0C9218 /* ESTabBarController-swift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "ESTabBarController-swift.modulemap"; sourceTree = ""; }; + DF8C9ABBCCBC2EE3A31AB56FAC7FEF57 /* ESTabBarItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarItem.swift; path = Sources/ESTabBarItem.swift; sourceTree = ""; }; + DF8D41B69396E37597B5BCAA8A9BF637 /* SwiftEntryKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwiftEntryKit-dummy.m"; sourceTree = ""; }; + DFE38A401804114EABFCAAC4A185896C /* ZFPlayerControlView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFPlayerControlView.m; path = DDZFPlayerKit_Private/Classes/ControlView/ZFPlayerControlView.m; sourceTree = ""; }; + DFFACA8234356B3D1F64075F951F65C2 /* 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 = ""; }; + E01451983FA9158DDDCBA2445BDAF24A /* AMapURLSearch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapURLSearch.h; path = AMapFoundationKit.framework/Headers/AMapURLSearch.h; sourceTree = ""; }; + E02AA8211E3860A9D1394A4F71C9E513 /* ZLPhotoBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ZLPhotoBrowser-prefix.pch"; sourceTree = ""; }; + E07E5EEF70E220B4DF1EFA02EB269F20 /* Amb.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Amb.swift; path = RxSwift/Observables/Amb.swift; sourceTree = ""; }; + E0B6C77B4BA6348B8AF0C7C8B2FC8DC6 /* RxSearchBarDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxSearchBarDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxSearchBarDelegateProxy.swift; sourceTree = ""; }; + E0CDF0DC4E1310B05CD60253C71A1D64 /* Array+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Array+ZLPhotoBrowser.swift"; path = "Sources/Extensions/Array+ZLPhotoBrowser.swift"; sourceTree = ""; }; + E0F0E39AF0AD69EF53A7AD2FB214B7F1 /* MemoryStorage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MemoryStorage.swift; path = Sources/Cache/MemoryStorage.swift; sourceTree = ""; }; + E114FC8ABA6674618A8351F359A7663E /* Enumerated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Enumerated.swift; path = RxSwift/Observables/Enumerated.swift; sourceTree = ""; }; + E11CD1A06565E2029E0D027F11E0F972 /* BRPickerView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BRPickerView-prefix.pch"; sourceTree = ""; }; + E16096F57A2ABE72DA71031E8C7657A6 /* 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 = ""; }; + E1650E856F0383AFF433321ADCFF0B46 /* ZLProgressView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLProgressView.swift; path = Sources/General/ZLProgressView.swift; sourceTree = ""; }; + E16CDB402BC9AC1850C54BA3E5798696 /* AMapNaviRideDataRepresentable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviRideDataRepresentable.h; path = AMapNaviKit.framework/Headers/AMapNaviRideDataRepresentable.h; sourceTree = ""; }; + E1787850581C24FD42F96FFCB2A3F1C3 /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackFooter.h; path = MJRefresh/Base/MJRefreshBackFooter.h; sourceTree = ""; }; + E186D97614A6808EAACBEB5CDDDE530C /* JXCategoryIndicatorBallView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryIndicatorBallView.m; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorBallView.m; sourceTree = ""; }; + E18C2E206A6EC25A7047EEB9D0E372E1 /* SwiftEntryKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftEntryKit-prefix.pch"; sourceTree = ""; }; + E1B25A730D7D4074AE33292A32686910 /* AMapNaviTravelManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviTravelManager.h; path = AMapNaviKit.framework/Headers/AMapNaviTravelManager.h; sourceTree = ""; }; + E1FE83E885A66F2D4CFE3AB3BAA6CA98 /* EKAttributes+BackgroundStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "EKAttributes+BackgroundStyle.swift"; path = "Source/Model/EntryAttributes/EKAttributes+BackgroundStyle.swift"; sourceTree = ""; }; + E20835D5C6EAC4F7C2A3C5DA4E39C61E /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; + E20DE510854E5D03F5D7D3BC510E4736 /* ConstraintMultiplierTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMultiplierTarget.swift; path = Sources/ConstraintMultiplierTarget.swift; sourceTree = ""; }; + E25E5922102E676BF98BCB18FC0D741B /* DDUtilsSwiftKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDUtilsSwiftKit_Private-umbrella.h"; sourceTree = ""; }; E270ABDB05C1E6CDFF8AB4EB055CE66E /* DDDateKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDDateKit_Private; path = libDDDateKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + E2C324A3842EE13126CA3965565EB4EB /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = DDWebImageKit_Private/Classes/SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; + E2FD49D762AD163F73F2C7101303D81E /* UIDatePicker+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIDatePicker+Rx.swift"; path = "RxCocoa/iOS/UIDatePicker+Rx.swift"; sourceTree = ""; }; + E35A634B22BAC8E75370F090651C0C47 /* DDTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDTableViewCell.swift; path = DDControlsKit_Private/Classes/DDTableViewCell/DDTableViewCell.swift; sourceTree = ""; }; + E362E937635497943E6DE508A30872C0 /* JXCategoryTitleImageCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryTitleImageCellModel.m; path = Sources/TitleImage/JXCategoryTitleImageCellModel.m; sourceTree = ""; }; + E3754C37E46E640F2371B2F9646878CA /* ConstraintMaker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMaker.swift; path = Sources/ConstraintMaker.swift; sourceTree = ""; }; + E38A562FCE12AA031A1E952092F9D1BE /* UIImage+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIImage+ZLPhotoBrowser.swift"; path = "Sources/Extensions/UIImage+ZLPhotoBrowser.swift"; sourceTree = ""; }; + E3945DF04317E853B8C494AAFA73FFA6 /* Zip+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Zip+Collection.swift"; path = "RxSwift/Observables/Zip+Collection.swift"; sourceTree = ""; }; + E396A12942C956AC02AC8C5FF423B112 /* AMapSearchKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapSearchKit.framework; sourceTree = ""; }; + E3C50D22C12C0396D54E5E85E927B93C /* DDBaseImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseImage.m; path = DDBasicControlsKit_Private/Classes/DDBaseImage/DDBaseImage.m; sourceTree = ""; }; + E3E34A1BE9FBEF78F5423C6DCCC3CF1F /* RxTableViewReactiveArrayDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxTableViewReactiveArrayDataSource.swift; path = RxCocoa/iOS/DataSources/RxTableViewReactiveArrayDataSource.swift; sourceTree = ""; }; + E3F8266CE317D8E0975411F90D27C290 /* JXCategoryDotCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryDotCellModel.m; path = Sources/Dot/JXCategoryDotCellModel.m; sourceTree = ""; }; E4863DBFE563EB129CD7414E7C378616 /* Pods-OrderSchedulingNotificationService-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-OrderSchedulingNotificationService-acknowledgements.markdown"; 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; }; - 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 = ""; }; - E72239874C4BBEB2C5D9198BC87952FC /* DDUIGestureRecognizer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDUIGestureRecognizer-prefix.pch"; 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 = ""; }; + E4BE4480E2643990990E862622D1F862 /* 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 = ""; }; + E4C32471D17BB084A1CD575044F9A328 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; + E4DA94F0D9E40CDAD90953BB8998CC21 /* Alamofire.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.release.xcconfig; sourceTree = ""; }; + E4EBB71FA963D8F2A4864B1F3103DDB7 /* IQKeyboardManager+Internal.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+Internal.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+Internal.swift"; sourceTree = ""; }; + E4F973818D77610A8EB47E58911872AF /* Decode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Decode.swift; path = RxSwift/Observables/Decode.swift; sourceTree = ""; }; + E519F3D7EAFE11EC2B0C8CC8524A7949 /* LayoutConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraintItem.swift; path = Sources/LayoutConstraintItem.swift; sourceTree = ""; }; + E566354F2B1D3F5622D411A141CE93F5 /* KFOptionsSetter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFOptionsSetter.swift; path = Sources/General/KFOptionsSetter.swift; sourceTree = ""; }; + E569B2DC927CC8D71F4F23F0003C3ED5 /* SerialDispatchQueueScheduler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SerialDispatchQueueScheduler.swift; path = RxSwift/Schedulers/SerialDispatchQueueScheduler.swift; sourceTree = ""; }; + E58AE775FD469CACC6E857C5744573D1 /* 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 = ""; }; + E5B0C98663D838E4AC1976ED6637FAB8 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; + E5B52A5102B12C58C636C40B66E7B73E /* DDAlamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DDAlamofire.swift; path = DDNetworkingOfAlamofireKit_Private/Classes/DDAlamofire.swift; sourceTree = ""; }; + E5C202FD09C449B1262D8F9D37A402C1 /* RxScrollViewDelegateProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxScrollViewDelegateProxy.swift; path = RxCocoa/iOS/Proxies/RxScrollViewDelegateProxy.swift; sourceTree = ""; }; + E602F76967902D5A6254723E3A53BF52 /* PHAsset+ZLPhotoBrowser.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "PHAsset+ZLPhotoBrowser.swift"; path = "Sources/Extensions/PHAsset+ZLPhotoBrowser.swift"; sourceTree = ""; }; + E62D8BC57B064B2B77157DB54B023CC1 /* IQUIScrollView+Additions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQUIScrollView+Additions.swift"; path = "IQKeyboardManagerSwift/Categories/IQUIScrollView+Additions.swift"; sourceTree = ""; }; + E658E32B7A68DF45947738A024C2EA14 /* InfiniteSequence.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InfiniteSequence.swift; path = Platform/DataStructures/InfiniteSequence.swift; sourceTree = ""; }; + E666B78DFFC402ADD04FD15B855247B2 /* NSBundle+BRPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+BRPickerView.m"; path = "BRPickerView/Base/NSBundle+BRPickerView.m"; sourceTree = ""; }; + E683AE11C689053760361CEC6EDD18CF /* DisposeBase.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DisposeBase.swift; path = RxSwift/Disposables/DisposeBase.swift; sourceTree = ""; }; + E6849A44E28F80902A3A32765DB0396A /* JXCategoryViewAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryViewAnimator.h; path = Sources/Common/JXCategoryViewAnimator.h; sourceTree = ""; }; + E68BBDD645EE655FAE41901E0EAD7C6F /* AMapNaviVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviVersion.h; path = AMapNaviKit.framework/Headers/AMapNaviVersion.h; sourceTree = ""; }; + E6B0C031C1EE54B51D9A123D0FF03124 /* EKFormMessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EKFormMessageView.swift; path = Source/MessageViews/EKFormMessageView.swift; sourceTree = ""; }; + E74AF6C7BD2D5935C1BE61D88A3F6730 /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoNormalFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h; sourceTree = ""; }; + E7865F5ED803D5C8AFD9BFC731C70704 /* MAHeatMapVectorOverlayRender.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAHeatMapVectorOverlayRender.h; path = AMapNaviKit.framework/Headers/MAHeatMapVectorOverlayRender.h; sourceTree = ""; }; E7C9437E4E7340A6BDC7C73BE8A3B117 /* Pods-OrderSchedulingNotificationService */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-OrderSchedulingNotificationService"; path = "libPods-OrderSchedulingNotificationService.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + E8018EE8173E2ADC8F9F24B8825ADA4B /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; + E87B136535ED89A2804025D2038C9010 /* DDControlsKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDControlsKit_Private-dummy.m"; sourceTree = ""; }; + E881C79A457FA3C852B9D5199547AE30 /* JXCategoryNumberCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryNumberCell.h; path = Sources/Number/JXCategoryNumberCell.h; sourceTree = ""; }; + E89C69CB893B3D1E247117A7CC7AA719 /* NSObject+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSObject+Rx.swift"; path = "RxCocoa/Foundation/NSObject+Rx.swift"; sourceTree = ""; }; + E8D67EC62C6E6D8910BC259BBDE81532 /* 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 = ""; }; + E8DB196B7ADA67C31C0E94D4D722AF25 /* AMapSearch-NO-IDFA.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapSearch-NO-IDFA.debug.xcconfig"; sourceTree = ""; }; + E8F3B8B01FCE5825085A99950D9F7F28 /* IQKeyboardManager+UITextFieldViewNotification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "IQKeyboardManager+UITextFieldViewNotification.swift"; path = "IQKeyboardManagerSwift/IQKeyboardManager+UITextFieldViewNotification.swift"; sourceTree = ""; }; + E8F8CF3F3FF2CEE632D149FC7358578E /* MAPolygon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAPolygon.h; path = AMapNaviKit.framework/Headers/MAPolygon.h; sourceTree = ""; }; + E8FEBDA1629197AB418FD839CF3756CC /* AMapFoundationConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapFoundationConst.h; path = AMapFoundationKit.framework/Headers/AMapFoundationConst.h; sourceTree = ""; }; + E91F3995EF78A3F4F3F6F6AEDA1F22E8 /* NSDate+BRPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDate+BRPickerView.m"; path = "BRPickerView/DatePickerView/NSDate+BRPickerView.m"; sourceTree = ""; }; + E98475F508A2F9237422D7C1BDF72D0C /* Observable+Bind.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Observable+Bind.swift"; path = "RxRelay/Observable+Bind.swift"; sourceTree = ""; }; + E9D0106AEB9F5B493847B8C852170099 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; + E9D8D0F8E9A255A92414961BA7142CDF /* 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 = ""; }; + EA27C19567ACF0C7770E8705376CBE2B /* UIStepper+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIStepper+Rx.swift"; path = "RxCocoa/iOS/UIStepper+Rx.swift"; sourceTree = ""; }; + EA2CA4BE59635BC23B48410658B33970 /* DDAudioPlayerKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDAudioPlayerKit_Private-umbrella.h"; sourceTree = ""; }; + EA2E3998763C20D7983E3DCE5B47A982 /* MAMultiTexturePolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiTexturePolylineRenderer.h; path = AMapNaviKit.framework/Headers/MAMultiTexturePolylineRenderer.h; sourceTree = ""; }; + EA4E09FE12FE17375DB070BB5609959F /* Debounce.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debounce.swift; path = RxSwift/Observables/Debounce.swift; sourceTree = ""; }; + EA620F5C15E32DE573BBB863557DC00F /* RxCocoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RxCocoa.h; path = RxCocoa/RxCocoa.h; sourceTree = ""; }; + EA7478A7825E79D1C54DCB975DFE9FA7 /* AMapSearchVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapSearchVersion.h; path = AMapSearchKit.framework/Headers/AMapSearchVersion.h; sourceTree = ""; }; + EAD68A0C77868E41D5CFFECC43E9C127 /* ToArray.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ToArray.swift; path = RxSwift/Observables/ToArray.swift; sourceTree = ""; }; + EAD835816757C62EA46382EA25F34BA6 /* DDPersistenceKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDPersistenceKit_Private-umbrella.h"; sourceTree = ""; }; + EAF36973F7C36C1729B5A0CAD7D56D26 /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackStateFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m; sourceTree = ""; }; + EB1EF58099893B0688111E0EE545B63F /* AMapNaviCompositeUserConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviCompositeUserConfig.h; path = AMapNaviKit.framework/Headers/AMapNaviCompositeUserConfig.h; sourceTree = ""; }; + EB2475FA10D60EF9C01C950A862E50E6 /* DDNetworkingOfAlamofireKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDNetworkingOfAlamofireKit_Private-umbrella.h"; sourceTree = ""; }; + EC01754C194475C4ECD32BF79C42ED9B /* ZLLanguageDefine.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLLanguageDefine.swift; path = Sources/General/ZLLanguageDefine.swift; sourceTree = ""; }; + EC053A20DF2E0B9FE9C6C257B6E95789 /* DDMAMapKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDMAMapKit_Private-prefix.pch"; sourceTree = ""; }; EC46C56D3F58BDA592A93730A005EF26 /* DDCategoryKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDCategoryKit_Private; path = libDDCategoryKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + EC5143172543E45623D048866016F143 /* 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 = ""; }; + EC5209FE25984EFA8CEF289DD32E1CCE /* HistoricalSchedulerTimeConverter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HistoricalSchedulerTimeConverter.swift; path = RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift; sourceTree = ""; }; + EC57A02B7CA9FDB37D02FCA6A5F82488 /* UIRefreshControl+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIRefreshControl+Rx.swift"; path = "RxCocoa/iOS/UIRefreshControl+Rx.swift"; sourceTree = ""; }; + EC6F69FBF4C778AC5A21189B7EF2DF9B /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = ""; }; + EC8044DB1AD06002A95B1ECAB3E16F00 /* Binder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Binder.swift; path = RxSwift/Binder.swift; sourceTree = ""; }; + ECA03F3180D61A6BD34ABCA471E0E9E4 /* HTTPMethod.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPMethod.swift; path = Source/HTTPMethod.swift; sourceTree = ""; }; + ECAD3AC69080823317C1EC6C939C5DFD /* AMapLocationKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AMapLocationKit.framework; sourceTree = ""; }; + ED18172DE819A87D89204AFF09EBCE1B /* BRAddressModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRAddressModel.m; path = BRPickerView/AddressPickerView/BRAddressModel.m; sourceTree = ""; }; + EDB9F61004F057A6AFBA2D181643B827 /* JXCategoryIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorView.h; path = Sources/Indicator/JXCategoryIndicatorView.h; sourceTree = ""; }; + EDCC6811280C451A00DD856CA774FFEB /* InvocableType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableType.swift; path = RxSwift/Schedulers/Internal/InvocableType.swift; sourceTree = ""; }; + EE5C868B9BE17F8233C694E5B5F35320 /* MAMultiColoredPolylineRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiColoredPolylineRenderer.h; path = AMapNaviKit.framework/Headers/MAMultiColoredPolylineRenderer.h; sourceTree = ""; }; + EE6BA1F6EEFAA0B4CE781C96EFC1C2A5 /* RxPickerViewDataSourceProxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RxPickerViewDataSourceProxy.swift; path = RxCocoa/iOS/Proxies/RxPickerViewDataSourceProxy.swift; sourceTree = ""; }; + EE9A4B02158C8AFE56BBA3B993AA2246 /* AMapTrackHistoryObj.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapTrackHistoryObj.h; path = AMapTrackKit.framework/Headers/AMapTrackHistoryObj.h; sourceTree = ""; }; + EEB4131AE9559193312626739C057CEA /* ZLFilter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLFilter.swift; path = Sources/Edit/ZLFilter.swift; sourceTree = ""; }; + EEEBB5686AE36966FA52BE0268F8C03C /* URLRequest+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URLRequest+Alamofire.swift"; path = "Source/URLRequest+Alamofire.swift"; sourceTree = ""; }; + EF10505DB9EDCB5CF878187F5157FD7A /* DDToastKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDToastKit_Private.release.xcconfig; sourceTree = ""; }; + EF2A8113E9DE65767CE9D7CC56250105 /* ZFPresentTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ZFPresentTransition.h; path = DDZFPlayerKit_Private/Classes/Core/ZFPresentTransition.h; sourceTree = ""; }; + EF4A9EBF87F1DA2CD099964C69FF8287 /* SchedulerType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SchedulerType.swift; path = RxSwift/SchedulerType.swift; sourceTree = ""; }; + EF9E861E526CE09753752959D2C22F99 /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = ""; }; + EFBEEEF50D9ACA4104F4A260004EBF76 /* ZLCollectionViewFlowLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLCollectionViewFlowLayout.swift; path = Sources/General/ZLCollectionViewFlowLayout.swift; sourceTree = ""; }; + F01E92229D893810C857F6F7CF082379 /* RxSwift.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxSwift.debug.xcconfig; sourceTree = ""; }; + F02E9496E31834EA30D63093FB024F8E /* GraphicsContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphicsContext.swift; path = Sources/Image/GraphicsContext.swift; sourceTree = ""; }; + F054E815A01F551C4709627619DC1C26 /* ZLPhotoBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ZLPhotoBrowser-dummy.m"; sourceTree = ""; }; + F0B6D885C16486F946D3EABB31EAB131 /* DDUtilsSwiftKit_Private.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDUtilsSwiftKit_Private.modulemap; sourceTree = ""; }; F11C5D34D44394CFB2C5ADD740509CC9 /* DDPersistenceKit_Private */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DDPersistenceKit_Private; path = libDDPersistenceKit_Private.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; - F2337F8EE8158B2BA5BE73880E080EBE /* DDUIGestureRecognizer-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDUIGestureRecognizer-umbrella.h"; 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 = ""; }; + F130059A8A3B3BEB905BD9BE9DB282E6 /* JPushExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPushExtension.release.xcconfig; sourceTree = ""; }; + F13E6A4EF9635F2D18F75333DCB95DC2 /* MAUserLocationRepresentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAUserLocationRepresentation.h; path = AMapNaviKit.framework/Headers/MAUserLocationRepresentation.h; sourceTree = ""; }; + F1BE0A303E1D150EB7C53DF7B78CD4A3 /* UIRectCorner+Short.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIRectCorner+Short.swift"; path = "Source/Extensions/UIRectCorner+Short.swift"; sourceTree = ""; }; + F2030E904BD543CC02C9C1168BCF0EA5 /* DDZFPlayerKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDZFPlayerKit_Private-dummy.m"; sourceTree = ""; }; + F22EE762164D1AA9AC91A3616BED1B86 /* ESTabBarController-swift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "ESTabBarController-swift.release.xcconfig"; sourceTree = ""; }; + F2436F8A52D8B95050082CCD91AEE312 /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Sources/Utility/Result.swift; sourceTree = ""; }; + F260A6317D4BC56066E8259CA9DE2026 /* CombineLatest+Collection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CombineLatest+Collection.swift"; path = "RxSwift/Observables/CombineLatest+Collection.swift"; sourceTree = ""; }; + F2DAD6CBF3EE2D2C18547B8FB92B67D5 /* ESTabBarController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ESTabBarController.swift; path = Sources/ESTabBarController.swift; sourceTree = ""; }; + F2FA7600FD210D1D7792C7FE040B8F72 /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = ""; }; + F30D377333774804832280D4E65091A6 /* NSButton+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Kingfisher.swift"; path = "Sources/Extensions/NSButton+Kingfisher.swift"; sourceTree = ""; }; + F35757BC1AC893C68843463D0111FD70 /* AMapNavi-NO-IDFA.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "AMapNavi-NO-IDFA.release.xcconfig"; sourceTree = ""; }; + F35F39BD99E98FB46CF1B393680B988F /* ZFLandscapeWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFLandscapeWindow.m; path = DDZFPlayerKit_Private/Classes/Core/ZFLandscapeWindow.m; sourceTree = ""; }; F375C7DA720F6C0C81573E458E9A4020 /* Pods-OrderScheduling.prerelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-OrderScheduling.prerelease.xcconfig"; 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 = ""; }; + F3F8EB5BFE51ADEB49C2540FB30B2B8A /* KFImageProtocol.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KFImageProtocol.swift; path = Sources/SwiftUI/KFImageProtocol.swift; sourceTree = ""; }; + F436E50F7B6231BE467F1FB4FB09205E /* UISearchController+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UISearchController+Rx.swift"; path = "RxCocoa/iOS/UISearchController+Rx.swift"; sourceTree = ""; }; + F43A4CBFB5E07FCA64CAFD3333168F38 /* DDUIGestureRecognizer.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DDUIGestureRecognizer.modulemap; sourceTree = ""; }; + F4441A0FFB90E8AA6B3E93F98CCB2127 /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = ""; }; + F4910F0BD18C60C343E23AE84CC65603 /* DDWebImageKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDWebImageKit_Private.release.xcconfig; sourceTree = ""; }; + F49EE87F10906705F1BD854853A70B20 /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = ""; }; + F4BC498AE00FB76C5D1E643882957B08 /* UIScrollView+ZFPlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+ZFPlayer.m"; path = "DDZFPlayerKit_Private/Classes/Core/UIScrollView+ZFPlayer.m"; sourceTree = ""; }; + F4D11B919FDBFAB3BF936AE6C7687EF1 /* UIView+Responder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+Responder.swift"; path = "Source/Utils/UIView+Responder.swift"; sourceTree = ""; }; + F4F040872596CD5B6DB008D070998948 /* NotificationCenter+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NotificationCenter+Rx.swift"; path = "RxCocoa/Foundation/NotificationCenter+Rx.swift"; sourceTree = ""; }; + F50A85F23DB3670CBB61983D42325893 /* UIImageView+DDWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+DDWebCache.h"; path = "DDWebImageKit_Private/Classes/DDWebImage/UIImageView+DDWebCache.h"; sourceTree = ""; }; + F54196355345A9E53E3144536DE2C295 /* 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 = ""; }; + F58B97362FF3F465FAA3FB637B756A1A /* DDUtilsSwiftKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDUtilsSwiftKit_Private-prefix.pch"; sourceTree = ""; }; + F5D8441F4871B0BD7CD000D8C762976F /* StringEncoding+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "StringEncoding+Alamofire.swift"; path = "Source/StringEncoding+Alamofire.swift"; sourceTree = ""; }; + F5FD663E24FE150C8C601B02693B4C52 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = DDWebImageKit_Private/Classes/SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; + F619A10A1AB63AB47E4B0D759213EE3D /* SwiftEntryKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftEntryKit-umbrella.h"; sourceTree = ""; }; + F624085069752CD3E97127DE1AB28641 /* ClearMessage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClearMessage.swift; path = Source/ClearMessage.swift; sourceTree = ""; }; + F68FD20B222A0BFDB5623996F6B90B40 /* JXCategoryIndicatorLineView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorLineView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorLineView.h; sourceTree = ""; }; + F6AA9C5D53F1567D9AE1F9181A613231 /* 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 = ""; }; F6D00CA03F52F8332AAD8FEEC4AFD406 /* ESTabBarController-swift */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "ESTabBarController-swift"; path = "libESTabBarController-swift.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + F6E54CBBC5A67ECE4121681BD7AF91C6 /* ConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintItem.swift; path = Sources/ConstraintItem.swift; sourceTree = ""; }; + F6EE682CD70262BDA0867C2129E360BA /* DefaultIfEmpty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DefaultIfEmpty.swift; path = RxSwift/Observables/DefaultIfEmpty.swift; sourceTree = ""; }; + F72A61F48DADF887C32B1EC3C8075F28 /* DDBaseCollectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DDBaseCollectionView.m; path = DDBasicControlsKit_Private/Classes/DDBaseCollectionView/DDBaseCollectionView.m; sourceTree = ""; }; + F72CB0EBED9E62EA70F8054BA0D029FF /* MAMultiPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMultiPolyline.h; path = AMapNaviKit.framework/Headers/MAMultiPolyline.h; sourceTree = ""; }; + F746703E83DF1CD522EFA62F771BA441 /* IQKeyboardManagerSwift.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IQKeyboardManagerSwift.release.xcconfig; sourceTree = ""; }; + F74DB77F6B56A4E0C52E7A4608745F6E /* DDMAMapKit_Private.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDMAMapKit_Private.release.xcconfig; sourceTree = ""; }; + F7DE11FA5E00DF3515BBD00DB6F27E24 /* ReplaySubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ReplaySubject.swift; path = RxSwift/Subjects/ReplaySubject.swift; sourceTree = ""; }; + F7FA0481F1BE5BEAB9555866CB7E25CD /* BRDatePickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BRDatePickerView.m; path = BRPickerView/DatePickerView/BRDatePickerView.m; sourceTree = ""; }; + F7FC77C5CB76B974D27342C88D20240A /* DDProgressHUDKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDProgressHUDKit_Private-dummy.m"; sourceTree = ""; }; + F8150BD96CEEBB6A967BE97818294EC6 /* MAMapCustomStyleOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapCustomStyleOptions.h; path = AMapNaviKit.framework/Headers/MAMapCustomStyleOptions.h; sourceTree = ""; }; + F819611A9738F394B8B061A5CB6FF438 /* DDCategory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDCategory.h; path = DDCategoryKit_Private/Classes/DDCategory.h; sourceTree = ""; }; + F82143FE20D3B510205938101A376418 /* BRPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BRPickerView.h; path = BRPickerView/BRPickerView.h; sourceTree = ""; }; + F83BF3B2775AF797F44994385B764802 /* IQKeyboardReturnKeyHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQKeyboardReturnKeyHandler.swift; path = IQKeyboardManagerSwift/IQKeyboardReturnKeyHandler.swift; sourceTree = ""; }; + F851C058CDE7A9B9458BAA5D5A2FC537 /* DDAutoUIKit_Private-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDAutoUIKit_Private-dummy.m"; sourceTree = ""; }; + F87CD582B270498DA448191B454F7B14 /* SectionedViewDataSourceType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SectionedViewDataSourceType.swift; path = RxCocoa/Common/SectionedViewDataSourceType.swift; sourceTree = ""; }; + F921163045E931B469153423DF1B23DD /* ZFFloatView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFFloatView.m; path = DDZFPlayerKit_Private/Classes/Core/ZFFloatView.m; sourceTree = ""; }; + F92315184F69837BBA685B0BE3427A7A /* Disposable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Disposable.swift; path = RxSwift/Disposable.swift; sourceTree = ""; }; + FA258E03BA62E8F40739BD9A32A99295 /* Sink.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Sink.swift; path = RxSwift/Observables/Sink.swift; sourceTree = ""; }; + FA5A3AE782254FA1E0D1E276AD75C737 /* RTLManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RTLManager.h; path = Sources/RLTManager/RTLManager.h; sourceTree = ""; }; + FB577DC5018ED615838E46F579125DDE /* MAGeodesicPolyline.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGeodesicPolyline.h; path = AMapNaviKit.framework/Headers/MAGeodesicPolyline.h; sourceTree = ""; }; + FB665F5DCCD07FF7CC73658A9DFFBCD1 /* SkipUntil.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SkipUntil.swift; path = RxSwift/Observables/SkipUntil.swift; sourceTree = ""; }; + FB7C0A50D8DCB60DBF62F4005AB5E372 /* DDProgressHUDKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDProgressHUDKit_Private-prefix.pch"; 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; }; - 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 = ""; }; + FB944575C386B1DC0473F6C3B15E2FD9 /* Debug.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debug.swift; path = RxSwift/Observables/Debug.swift; sourceTree = ""; }; + FBD453BEE0C686CA6562C76B9456F328 /* MJRefreshNormalTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.m; sourceTree = ""; }; + FBDE697F9795769E18B4581F176558C0 /* 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 = ""; }; + FBF0C446F4AD671B951E117B047D58E7 /* ZFReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ZFReachabilityManager.m; path = DDZFPlayerKit_Private/Classes/Core/ZFReachabilityManager.m; sourceTree = ""; }; + FBFC963F935FDE16ACF08B32F7C05419 /* Buffer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Buffer.swift; path = RxSwift/Observables/Buffer.swift; sourceTree = ""; }; + FC37965B09CCF834B5FA66CF7B0133D0 /* JXCategoryIndicatorImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorImageView.h; path = Sources/Indicator/IndicatorViews/JXCategoryIndicatorImageView.h; sourceTree = ""; }; + FC525EA2503D26BE1EB7223B4E059630 /* SchedulerServices+Emulation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SchedulerServices+Emulation.swift"; path = "RxSwift/Schedulers/SchedulerServices+Emulation.swift"; sourceTree = ""; }; + FC7451C4E086CC15DEF77C9DF1B03D17 /* JXCategoryNumberCellModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberCellModel.m; path = Sources/Number/JXCategoryNumberCellModel.m; sourceTree = ""; }; + FC7E7B55E367A169E38DCFBDBEACD7D6 /* MAGltfOverlay.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAGltfOverlay.h; path = AMapNaviKit.framework/Headers/MAGltfOverlay.h; sourceTree = ""; }; + FCE5F3359795423CB6F03A90926A420D /* IQPreviousNextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IQPreviousNextView.swift; path = IQKeyboardManagerSwift/IQToolbar/IQPreviousNextView.swift; sourceTree = ""; }; + FD04B0396B832393BDE001F63399C66D /* RxCocoa.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RxCocoa.debug.xcconfig; sourceTree = ""; }; + FD2E6735A74591F3855974973FC5689E /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = ""; }; + FD34685F95073E4F2CEF63EABFFA0452 /* UICollectionView+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UICollectionView+Rx.swift"; path = "RxCocoa/iOS/UICollectionView+Rx.swift"; sourceTree = ""; }; + FD422C83BC57172173F0F98093036145 /* KVORepresentable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KVORepresentable.swift; path = RxCocoa/Foundation/KVORepresentable.swift; sourceTree = ""; }; + FD687D223885424075A2E4EDD22B9C3A /* Queue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Queue.swift; path = Platform/DataStructures/Queue.swift; sourceTree = ""; }; + FDA6B5599AB2BE581DC91538DD516EAB /* CPListItem+Kingfisher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CPListItem+Kingfisher.swift"; path = "Sources/Extensions/CPListItem+Kingfisher.swift"; sourceTree = ""; }; + FDE582DCCB92CD0A144E25D1D8732E7B /* InvocableScheduledItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvocableScheduledItem.swift; path = RxSwift/Schedulers/Internal/InvocableScheduledItem.swift; sourceTree = ""; }; + FDEB3B847B55ED766DA3517ED93D6160 /* NSButton+Rx.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSButton+Rx.swift"; path = "RxCocoa/macOS/NSButton+Rx.swift"; sourceTree = ""; }; + FE13E26D345C7E810A262C84C2E02F84 /* ZLPhotoPreviewAnimatedTransition.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLPhotoPreviewAnimatedTransition.swift; path = Sources/Animation/ZLPhotoPreviewAnimatedTransition.swift; sourceTree = ""; }; + FE25602EA493B11A1957661FCE674D16 /* ImageFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageFormat.swift; path = Sources/Image/ImageFormat.swift; sourceTree = ""; }; + FE4B0DCFE0808BFC11475CEC0109B703 /* ConstraintConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConfig.swift; path = Sources/ConstraintConfig.swift; sourceTree = ""; }; + FE5A63F96559B2E90D35C07D7B379DA9 /* DDBasicControlsKit_Private-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDBasicControlsKit_Private-prefix.pch"; sourceTree = ""; }; + FE5C0C1AAE53A2102584FF8E43D5F9E6 /* SnapKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.debug.xcconfig; sourceTree = ""; }; + FE6CC7EB81C2990554D85AF29F2C0DC6 /* JXCategoryIndicatorProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JXCategoryIndicatorProtocol.h; path = Sources/Common/JXCategoryIndicatorProtocol.h; sourceTree = ""; }; + FE915BDC07951BED22167C3EB7D0B52C /* JPushExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = JPushExtension.debug.xcconfig; sourceTree = ""; }; + FEA979776C4541E2048D0D5057480ACD /* AMapLocationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapLocationManager.h; path = AMapLocationKit.framework/Headers/AMapLocationManager.h; sourceTree = ""; }; + FEB0151009BEFAB52EBD2964A7F66675 /* Session.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Session.swift; path = Source/Session.swift; sourceTree = ""; }; + FEB84B129D49221DEB9A2911D61BCB50 /* AMapNaviWalkManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AMapNaviWalkManager.h; path = AMapNaviKit.framework/Headers/AMapNaviWalkManager.h; sourceTree = ""; }; + FEE6C2A27AE60D16AC0E2456CDB32915 /* DDDateKit_Private-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDDateKit_Private-umbrella.h"; sourceTree = ""; }; + FEE9A951565F7F1CA336E443C8E6838B /* JXCategoryNumberView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = JXCategoryNumberView.m; path = Sources/Number/JXCategoryNumberView.m; sourceTree = ""; }; + FEEBE5B40CE58CE493FE5C5D9213D6F8 /* ZLProgressHUD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ZLProgressHUD.swift; path = Sources/General/ZLProgressHUD.swift; sourceTree = ""; }; + FF0CA2D49697DC423AEF6657A5E01489 /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+MJRefresh.m"; path = "MJRefresh/NSBundle+MJRefresh.m"; sourceTree = ""; }; + FF392CDD230947518F93FDA3A3921DD1 /* BRPickerView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BRPickerView-umbrella.h"; sourceTree = ""; }; + FF57E187856C93BF39C4C5F9C8890CDE /* MAMapView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MAMapView.h; path = AMapNaviKit.framework/Headers/MAMapView.h; sourceTree = ""; }; + FF891ED240B6348B88DC810A911F8F6A /* SwiftyRSA-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwiftyRSA-umbrella.h"; sourceTree = ""; }; FF8B264DFE802855D5D67E7CDDABFC3C /* RxRelay */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RxRelay; path = libRxRelay.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 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 = ""; }; + FFB9C7EE34B4C65027FF911301143D82 /* 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 = ""; }; + FFCC15F5CC62820A85821DC00CF32079 /* 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 = ""; }; + FFD5E8663F0D9747A37855DB5D1002D6 /* DDMASearch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DDMASearch.h; path = DDMAMapKit_Private/Classes/DDMASearch/DDMASearch.h; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 05779621E771C965CDA89A3162AF9CF8 /* Frameworks */ = { + 046CBA2A398CD183ADE01C76C5C2AE9E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3340,7 +3337,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 119F8BA009CC14D24A977E51F04A2768 /* Frameworks */ = { + 0F5228A2B0F5830C4739B75F14DDA217 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3382,13 +3379,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 310D89F44AF406825938E446D4D20FE4 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 492F3958EE7157547DC199F58D38F7D9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3396,14 +3386,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4DB5B05385A51FFB6CD9FA9D9D8E3C4D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 52322972281C74B9623D3B4D2AF8CFFF /* Frameworks */ = { + 5454C01D08BFE12389995A3AF191DA4B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3424,13 +3407,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 613DA62256A2BF27132304CFAE239D31 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 61C4C73E476D1535B2604229BAA1DE06 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3494,6 +3470,20 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 93BB066C3C3E0676D209240F0A3BCECA /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 968CCC89618CA00ADDB5DBE8F85DC9C1 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 9F55DEE06F31302485599F36FF5B115D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3508,6 +3498,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + A0C3B490B0BBB576A5A389A6E1CBE889 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; A6586DAF8F0CF8CE0853304C027BAAAB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -3515,7 +3512,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - B0CA2911E608817E4C030D2C329EF659 /* Frameworks */ = { + B0D3F9C5F1FCE8349AAADFB52098D8FC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -3588,765 +3585,730 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 00BC6D491191AB503276877DB8BCDDEF /* UICollectionView+DDCategory */ = { + 010686C2C11B4F9A64D4C64BB7C368A7 /* DDAttributedString */ = { isa = PBXGroup; children = ( - 172C51BE1DD73A6B9E6FBCDF85F07222 /* UICollectionView+DDCategory.h */, - C6370465DE051DC741FEEC5C865F2540 /* UICollectionView+DDCategory.m */, + 19EFD61DDF0AC19F722B561503939DBA /* DDAttributedString.swift */, + 6D9D869EB97B18CEBE0E38D5942BC7E6 /* DDMutableAttributedString.swift */, ); - name = "UICollectionView+DDCategory"; + name = DDAttributedString; sourceTree = ""; }; - 01AC19621C479575C896ABEC5BCA9F87 /* DDToastKit_Private */ = { + 01D231CEF439560609CAA82565C143E8 /* Support Files */ = { isa = PBXGroup; children = ( - 99F16FAC67F968BECFBC0427D7ADC2D6 /* SwiftToast.swift */, - 80F6990D25520C9527311757E4DFE886 /* Toast.swift */, - 8CD0303A9784EE502B75A1357BD6DD6A /* Support Files */, - ); - name = DDToastKit_Private; - path = DDToastKit_Private; - sourceTree = ""; - }; - 029407C736CC65F51F7533479228E894 /* Support Files */ = { - isa = PBXGroup; - children = ( - 0A55B4C27BC6F39FDDC74AD8A0E87382 /* AMapSearch-NO-IDFA.debug.xcconfig */, - 60C12B20AA097F6B962ECE262990F404 /* AMapSearch-NO-IDFA.release.xcconfig */, + F43A4CBFB5E07FCA64CAFD3333168F38 /* DDUIGestureRecognizer.modulemap */, + 97AF1EBBCC9C27F141B9E1D6FC7C32AF /* DDUIGestureRecognizer-dummy.m */, + 1935B650026341A61BB7FAB0C081AD16 /* DDUIGestureRecognizer-prefix.pch */, + 83880583FCE2648A59907391AE06CCE0 /* DDUIGestureRecognizer-umbrella.h */, + 1D084B2827EF44C0459A1108CFBE9757 /* DDUIGestureRecognizer.debug.xcconfig */, + 1844D35CAD9AEF2B74F6FF5A52210DE9 /* DDUIGestureRecognizer.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/AMapSearch-NO-IDFA"; + path = "../Target Support Files/DDUIGestureRecognizer"; sourceTree = ""; }; - 02C8F2881AE4733C5C3B90484111DA1D /* Support Files */ = { + 037745BE3EDB2556E06E65799AAEF246 /* StringPickerView */ = { isa = PBXGroup; children = ( - 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 = ""; - }; - 03B94AF85725BB6A0060941703112BDF /* DDLabel */ = { - isa = PBXGroup; - children = ( - 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/RxCocoa"; - sourceTree = ""; - }; - 04B681A05575B19A6B1594DC3F286772 /* DDBaseScrollView */ = { - isa = PBXGroup; - children = ( - 1D3FDEBB3AEBC446882DCBE9DA2B10A3 /* DDBaseScrollView.h */, - F12FC247A6868A9906DB8E68E99A0CD9 /* DDBaseScrollView.m */, - ); - name = DDBaseScrollView; - sourceTree = ""; - }; - 050A5F93F7590C46ED98EF9583E134A6 /* DDMANaviManager */ = { - isa = PBXGroup; - children = ( - B4579EEEE8A2EC43D53BC2BF8C1FF0F9 /* DDMANaviManager.h */, - 8134BB2AA5305F578302AA8091E2FA82 /* DDMANaviManager.m */, - ); - name = DDMANaviManager; - sourceTree = ""; - }; - 0708B793A2267D813D1E6D415F492D4F /* Support Files */ = { - isa = PBXGroup; - children = ( - 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 = "Support Files"; - path = "../Target Support Files/DDLogKit_Private"; - sourceTree = ""; - }; - 0838BDA2D420D0467F50163FFC8DD2A9 /* JPush */ = { - isa = PBXGroup; - children = ( - 4DDF4A8AC24BC2AB4F21F0B8C0E99C2E /* Frameworks */, - F4484797CF04107EF44BC59E034E402A /* Support Files */, - ); - name = JPush; - path = JPush; - sourceTree = ""; - }; - 084313FD3E896B9030531908D44D8CD4 /* Support Files */ = { - isa = PBXGroup; - children = ( - 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 = "Support Files"; - path = "../Target Support Files/DDFontKit_Private"; - sourceTree = ""; - }; - 0847E2A82F32DE2D60E9924E90D5B592 /* DDBaseAttributedString */ = { - isa = PBXGroup; - children = ( - A2611215DA2487C56F63E5ECC7F5E761 /* DDBaseAttributedString.h */, - 5501A87BC8511F2B9E203B0E5146C52D /* DDBaseAttributedString.m */, - 6BC0D31C149E12F94631266A6C7FB16A /* DDBaseMutableAttributedString.h */, - 8F659E622FF5611F55167C9B569ABE18 /* DDBaseMutableAttributedString.m */, - ); - name = DDBaseAttributedString; - sourceTree = ""; - }; - 0947097DB036F200446803A32647BB58 /* DDProgressHUDKit_Private */ = { - isa = PBXGroup; - children = ( - 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 */, + 2C9A84455ABE4629AB73B15B698AD049 /* BRResultModel.h */, + 14B89CDF3DDB78BF755C4BE289D591B6 /* BRResultModel.m */, + A8F2768B53DF2C464A975A8DBA8B995D /* BRStringPickerView.h */, + 10C044128191F34B3D17925788C18525 /* BRStringPickerView.m */, ); name = StringPickerView; sourceTree = ""; }; - 0F25017F0D3981808CBB44578FAEA82F /* DDMALocation */ = { + 0441063FE6B521B154BAF6FC917EE09E /* DDNavigationController */ = { isa = PBXGroup; children = ( - 729ABB23BD1AA8F9CA4D81E5FAEF8E05 /* DDMALocationManager.h */, - 727A6C8BEB00BD2EACEC9F18CC10B9A1 /* DDMALocationManager.m */, + 4DA096E0DD8E7FD2BDAAC89129A2824A /* DDNavigationController.swift */, ); - name = DDMALocation; + name = DDNavigationController; sourceTree = ""; }; - 11BB95FC18B21EF5AED1F98E10756776 /* Support Files */ = { + 045A25DED361681A0217635512ABF51D /* DDTableViewCell */ = { 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 */, + E35A634B22BAC8E75370F090651C0C47 /* DDTableViewCell.swift */, ); - name = "Support Files"; - path = "../Target Support Files/DDWebImageKit_Private"; + name = DDTableViewCell; sourceTree = ""; }; - 12588927513404BE3F2B9470774DBBB2 /* UITableView+DDCategory */ = { + 051238DAA44DFD96414D640722555FE6 /* RxRelay */ = { 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 */, + A0230679B106F8DB70B542FBB92921FF /* BehaviorRelay.swift */, + E98475F508A2F9237422D7C1BDF72D0C /* Observable+Bind.swift */, + 0B14E3D0EC43ACAEC29EBACE29E447DD /* PublishRelay.swift */, + 8B316DE6AC16129F3192DA1435AD9437 /* ReplayRelay.swift */, + 84D2B83AA07FA4EE846C5ED2A2BDB6A2 /* Utils.swift */, + D8A616AC76DF1DFDC5AC4268ABAADEF2 /* Support Files */, ); name = RxRelay; path = RxRelay; sourceTree = ""; }; - 13E294D05F4F6878624AD14386D1B233 /* DDAttributedString */ = { + 05608B7AA12699BEA169257C8229A79E /* UIScreen+DDCategory */ = { isa = PBXGroup; children = ( - DC7563FB49B3B7F0E4710216BC923FE3 /* DDAttributedString.swift */, - 45599187E0E306D492961BB44A1110D3 /* DDMutableAttributedString.swift */, + 2B5E1308D0498DDA1BAE3780B738588E /* UIScreen+DDCategory.h */, + A624119E6D69EB3DCED1B6A872C9C67C /* UIScreen+DDCategory.m */, ); - name = DDAttributedString; + name = "UIScreen+DDCategory"; sourceTree = ""; }; - 143655BA548569B19B37D05498D1D559 /* DDColorKit_Private */ = { + 0864A82D8901E7784028CB9365C22353 /* DDBaseButton */ = { isa = PBXGroup; children = ( - 2387FD481EB9A586057BBA4A9B5CD802 /* ColorUtil.swift */, - BE65C9E6950662503F0751D9A21A4A82 /* UIColor+Hue.swift */, - CF29F7476FF5E386DDCB4875CCEFB453 /* Support Files */, + 12C2DCF0F1B288634DD5D38942FD25D6 /* DDBaseButton.h */, + 66BDB5B6BE44519D1B66F53F19E4EB7D /* DDBaseButton.m */, + ); + name = DDBaseButton; + sourceTree = ""; + }; + 0BAD2BD8181DC3F640E65E3FCAC57AC4 /* AMapNavi-NO-IDFA */ = { + isa = PBXGroup; + children = ( + 330E865281109556CAE4DB7A35DB1195 /* AMapNaviBaseManager.h */, + 8EF172681C3D046E236093513974A8E0 /* AMapNaviCommonObj.h */, + 6AF21E6DA64A11CFAF22382B1BB1D0E1 /* AMapNaviCompositeAnnotation.h */, + DE8420EC087CF39329EFA289A9176837 /* AMapNaviCompositeManager.h */, + EB1EF58099893B0688111E0EE545B63F /* AMapNaviCompositeUserConfig.h */, + CDBF6303D0488850ED38555E8F66471F /* AMapNaviDriveDataRepresentable.h */, + 466D342F86962BABCF052FC27E610112 /* AMapNaviDriveManager.h */, + 602476F2F00A5ED1002DBBCB943885DE /* AMapNaviDriveView.h */, + 98F4B1625EBFDD8E711389967205AB12 /* AMapNaviEleBikeDataRepresentable.h */, + 51B41D89B28E2CE1DFDAED063E6F9B01 /* AMapNaviEleBikeManager.h */, + 580A1A772DE9485E7AEEF52A545CF646 /* AMapNaviHeaderHandler.h */, + 9F6A3BA6FC7A481028E34213AA721CDB /* AMapNaviHUDView.h */, + 42BD2AC49E322F1475EEB28FB0F7EBFE /* AMapNaviInfo.h */, + BBE669B2E827F90144C6B2FBD0144F93 /* AMapNaviKit.h */, + 0A140989C36BC0158AF039D2615DDACD /* AMapNaviLocation.h */, + A9C633FBF3167CFCF2C9EE23F56E6B4E /* AMapNaviManagerConfig.h */, + E16CDB402BC9AC1850C54BA3E5798696 /* AMapNaviRideDataRepresentable.h */, + CD1B676691A6676A99F10B50F9274E3D /* AMapNaviRideManager.h */, + 6D474F71D2BC276B35AFA8CB970F14DD /* AMapNaviRideView.h */, + 89855B37A9AF81D184B758259193D5CB /* AMapNaviRoute.h */, + 4126420073094E3D763BB7A0E5D7CA54 /* AMapNaviStatisticsInfo.h */, + 056072408017E174401477DDF6D9A576 /* AMapNaviTrafficBarView.h */, + E1B25A730D7D4074AE33292A32686910 /* AMapNaviTravelManager.h */, + E68BBDD645EE655FAE41901E0EAD7C6F /* AMapNaviVersion.h */, + A0224311F849B855B09C4309182443EE /* AMapNaviWalkDataRepresentable.h */, + FEB84B129D49221DEB9A2911D61BCB50 /* AMapNaviWalkManager.h */, + DE607DDBC3ED426CA3A37574F0D58EA4 /* AMapNaviWalkView.h */, + 4299D246DB3C42A023E4F347FA8817E4 /* MAAnimatedAnnotation.h */, + D2CC9822BD0CF962919742DE1A047C95 /* MAAnnotation.h */, + 8DB20E77BB607B95B7D63B6B53B272CC /* MAAnnotationMoveAnimation.h */, + A015F53EF5B639A36B05E4DB501BE7A0 /* MAAnnotationView.h */, + CA7B59B6D4C3F98DE7E7387043709C95 /* MAArc.h */, + 5050C9FBEC6E5371EDEBD880066E3D88 /* MAArcRenderer.h */, + 66563585F722BA8D6C290A6DCFFA26FF /* MABaseOverlay.h */, + 47848C71E5674983C399A3B98DD02638 /* MACircle.h */, + 309A702838F2115A0BE51A6F1FB73B0A /* MACircleRenderer.h */, + CCA09405C4F4C6073A08B204B084AF08 /* MAConfig.h */, + B79743990CE5027E957622AD540BBE93 /* MACustomBuildingOverlay.h */, + 5B1A5732077260FE0BA3878CA6D26607 /* MACustomBuildingOverlayRenderer.h */, + 009F0D2F06A7FE7E0B388838500D34DE /* MACustomCalloutView.h */, + FB577DC5018ED615838E46F579125DDE /* MAGeodesicPolyline.h */, + A2AB0BDA4E5ED895F4E62E2383C2EED2 /* MAGeometry.h */, + FC7E7B55E367A169E38DCFBDBEACD7D6 /* MAGltfOverlay.h */, + C8383EAF81E73AF942440A7F3AE81034 /* MAGltfOverlayRenderer.h */, + 127B58307FC2834413785A101EFC1DA5 /* MAGroundOverlay.h */, + BF274C55E17FFADE148C0BCF3D41669E /* MAGroundOverlayRenderer.h */, + 6B360C83A5F864A133C07AF4DE854F41 /* MAHeatMapTileOverlay.h */, + 0C29DED5FE8759F25877E12A9CB9AF32 /* MAHeatMapVectorGridOverlay.h */, + 061AF062963E8F80C0C2E32F079AA219 /* MAHeatMapVectorGridOverlayRenderer.h */, + CFDAA1D450795E3E9ACB2041DE578354 /* MAHeatMapVectorOverlay.h */, + E7865F5ED803D5C8AFD9BFC731C70704 /* MAHeatMapVectorOverlayRender.h */, + 8349443035B263497EE374791EC640D7 /* MAIndoorInfo.h */, + 065B07B536B2634C09D050D38E2BC490 /* MALineDrawType.h */, + D119D5BF1256318F7627F469C54B1E00 /* MAMapAccessibilityIdentifier.h */, + F8150BD96CEEBB6A967BE97818294EC6 /* MAMapCustomStyleOptions.h */, + 0D042B962D500E257F0C9AF3EE0A59E0 /* MAMapKit.h */, + 92B4437446B052AC96771C0B935B5F99 /* MAMapStatus.h */, + 4282CE5957809B946B809F2EA789AF4B /* MAMapVersion.h */, + FF57E187856C93BF39C4C5F9C8890CDE /* MAMapView.h */, + EE5C868B9BE17F8233C694E5B5F35320 /* MAMultiColoredPolylineRenderer.h */, + 4614408AC4B0C896A3737952C0F41DD9 /* MAMultiPoint.h */, + 231EC6C4E55AAEADFF22D1198C1940BD /* MAMultiPointOverlay.h */, + D71A38738982F4841019F6DF3A9EDA7D /* MAMultiPointOverlayRenderer.h */, + F72CB0EBED9E62EA70F8054BA0D029FF /* MAMultiPolyline.h */, + EA2E3998763C20D7983E3DCE5B47A982 /* MAMultiTexturePolylineRenderer.h */, + 7B7BA8085362FCCEA3DFB815E71C527A /* MAMVTTileOverlay.h */, + 0B2D703D62B0D0E8DBE842156C97A783 /* MAMVTTileOverlayRenderer.h */, + DA7B060AE4F21484A3A709123F6FA638 /* MAOfflineCity.h */, + A1B023569047890BBE13E437A530B0C6 /* MAOfflineItem.h */, + B51DE7FD25136051DCE40F732F37A1CD /* MAOfflineItemCommonCity.h */, + 08DDCAB2029E71B7CC9BBD121FB4DDD1 /* MAOfflineItemMunicipality.h */, + D73757E22C06EA43942964B1C929EAC0 /* MAOfflineItemNationWide.h */, + 92B099E85406B753F9F78F25216D12A0 /* MAOfflineMap.h */, + C9772A9C23F3A4B16F654D5753153188 /* MAOfflineMapViewController.h */, + 93EAF951D8DBBE3540E424BBEEA2C115 /* MAOfflineProvince.h */, + 8BA8B4C96B8947CB8EFF49072E232A2F /* MAOverlay.h */, + 984D60C7B9D68D6B051E06504ECC6279 /* MAOverlayPathRenderer.h */, + B3E9BC9892B35BE0029DF8D8710A6248 /* MAOverlayRenderer.h */, + B9415CE4AFE58DC2E4B3B2E896E5522A /* MAParticleOverlay.h */, + 639CEDEB018F6B4FB0CF7049E16D51C8 /* MAParticleOverlayOptions.h */, + A50FB1EC68CC22C57F86E8BBDF04F501 /* MAParticleOverlayRenderer.h */, + 38B271677BCF17F8B3AA393BAB770E03 /* MAPathShowRange.h */, + C1B11A8713F102FD63E3A3AB1EA76550 /* MAPinAnnotationView.h */, + BB8E254BBB0FB0B0A608F2096EF5C3F6 /* MAPointAnnotation.h */, + E8F8CF3F3FF2CEE632D149FC7358578E /* MAPolygon.h */, + 3F52C2B3D6B43F54728BEFA7C8D453DD /* MAPolygonRenderer.h */, + 3C2CDFC311ADE48F355DF75F7B557AA2 /* MAPolyline.h */, + 81D4D09C726A31A0D1CAEBDFDFD02DBC /* MAPolylineRenderer.h */, + BCD7ADC2188333E663932BD3559DD670 /* MAShape.h */, + 68E0C5AAFE3CAA5CCD5EB8441ED139E6 /* MATileOverlay.h */, + D37C3F62C9EBE5B64F2311A8472348C2 /* MATileOverlayRenderer.h */, + 69B4F1F5F2AB3F36200060050B9E4B9D /* MATouchPoi.h */, + 217FC27D2C936C10FE219350E061647F /* MATraceLocation.h */, + ADCEE716CA632C08529542E2FC4983F7 /* MATraceManager.h */, + 0719CA59AD6E25C8ACFF138ABBDB1F7A /* MAUserLocation.h */, + F13E6A4EF9635F2D18F75333DCB95DC2 /* MAUserLocationRepresentation.h */, + 5C4A6C33C8017A97B7FDC414152009BA /* Frameworks */, + 97A4C655C2F20858B0A50259ED39D537 /* Resources */, + F58459BD25A9AED8EB16DE906C4E7B96 /* Support Files */, + ); + name = "AMapNavi-NO-IDFA"; + path = "AMapNavi-NO-IDFA"; + sourceTree = ""; + }; + 0CA4E13A177B5FDACAD65045A5720C52 /* DDColorKit_Private */ = { + isa = PBXGroup; + children = ( + D6FE25C4D36212884AF611DCC2F0CEC5 /* ColorUtil.swift */, + 1BC6C6E91ED727D59BA74D2DED7F652D /* UIColor+Hue.swift */, + 2327F98F52660DDE8D5B2D716677A4C7 /* Support Files */, ); name = DDColorKit_Private; path = DDColorKit_Private; sourceTree = ""; }; - 1477FD7666025C236073B784C68E2E20 /* Frameworks */ = { + 0CCBDDAB42963DABAD971294CCB61FB3 /* DDTimerSwiftKit_Private */ = { isa = PBXGroup; children = ( - 79EAD67EEA5838C829D0C8A482F71F1B /* AMapSearchKit.framework */, + 83B889CEACA11362D80DA70D19EEDB98 /* GCDTimer.swift */, + 618B0BFBDD53622BBB5283391411FACE /* Support Files */, + ); + name = DDTimerSwiftKit_Private; + path = DDTimerSwiftKit_Private; + sourceTree = ""; + }; + 0DF3490F89C9FF4A7981B71A3B2B7266 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 0DD84E61973C357165DF6B0FC6CEE294 /* AMapTrackKit.framework */, ); name = Frameworks; sourceTree = ""; }; - 16C90B456D9BCB53DCB8C6D2075C8976 /* DDBaseView */ = { + 0DF7214B62938C1B1855C8523AE92C6A /* Resources */ = { isa = PBXGroup; children = ( - 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 = ""; - }; - 17A1B65A11E2CD1BEFA32F0DA63A7260 /* Support Files */ = { - isa = PBXGroup; - children = ( - 9D71D9262E67B386B611667DA9B27BBC /* DDUIGestureRecognizer.modulemap */, - 7499ECC312F3D57D5BBED2E7E1455F0D /* DDUIGestureRecognizer-dummy.m */, - E72239874C4BBEB2C5D9198BC87952FC /* DDUIGestureRecognizer-prefix.pch */, - F2337F8EE8158B2BA5BE73880E080EBE /* DDUIGestureRecognizer-umbrella.h */, - 4C43BD69FD9C6CD32883C828F36FC9E5 /* DDUIGestureRecognizer.debug.xcconfig */, - AF572D9E966A6ADEAA1AE261F1B91D21 /* DDUIGestureRecognizer.release.xcconfig */, - ); - name = "Support Files"; - path = "../../中道救援/OrderScheduling/Pods/Target Support Files/DDUIGestureRecognizer"; - sourceTree = ""; - }; - 1908B173CD4F5C7F67578BDD87BD7758 /* Resources */ = { - isa = PBXGroup; - children = ( - 0A23019F4D09D5FFAA156BED696736AD /* car_xingshi.png */, - D7C2BE8DD9A4D6611E11462A2C06C07C /* car_xingshi@2x.png */, - CD0A4601DCEDE01FE45C61E92804430D /* car_xingshi@3x.png */, + 8D2D801B067049DF8C69534FEEBD40D3 /* BRPickerView.bundle */, ); name = Resources; sourceTree = ""; }; - 197E7E1D6355F8F64E947C000C523F17 /* Support Files */ = { + 0F194E80077E5C12B1744E617A93D58D /* UrlLinks */ = { 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 */, + 96884774F057717C996491A9F223C411 /* UrlLinks.swift */, ); - name = "Support Files"; - path = "../Target Support Files/DDZFPlayerKit_Private"; + name = UrlLinks; sourceTree = ""; }; - 1980C9F0AA182F49F1E2B46D1AE56425 /* Frameworks */ = { + 1209AA35427699C5413FE4B1395F5886 /* DDScrollView */ = { isa = PBXGroup; children = ( - 9DAF90C1775CBBE41F0E654E0DE73D6B /* AMapTrackKit.framework */, + 82C98E5ED6C3EB19D7E7A32FC304932E /* DDScrollView.swift */, ); - name = Frameworks; + name = DDScrollView; sourceTree = ""; }; - 1A7640C9354BEFFF72193B6F6A72AF5D /* DDSwitch */ = { + 155F89C8645AD5442995B6F73C13E835 /* ZLPhotoBrowser */ = { isa = PBXGroup; children = ( - 1D0FC67721BD9964D43BF569D58461A2 /* DDSwitch.swift */, + B3631591EC1C58BCB639A1ADB12017C9 /* Core */, + C6A7ED4D1E164D051485166926861E93 /* Resources */, + 5E1060B898DF14F0972A9C7AA8734523 /* Support Files */, ); - name = DDSwitch; + name = ZLPhotoBrowser; + path = ZLPhotoBrowser; sourceTree = ""; }; - 1AB118D6FBC75D998FB46787F92146B3 /* UICollectionViewCell+DDCategory */ = { + 157E31F563EC7C03322276563602DF2E /* UIView+DDCategory */ = { isa = PBXGroup; children = ( - 431E1D05FC37D52831B2B63F11611B8C /* UICollectionViewCell+DDCategory.h */, - ABE7E82F6A637D933B9A7E37477281B7 /* UICollectionViewCell+DDCategory.m */, + 304ED5CCB3C625B2C0E4B4433AD73814 /* UIView+DDCategory.h */, + 9F4AAB2F90DD1E2F4B29A34CE29B042F /* UIView+DDCategory.m */, ); - name = "UICollectionViewCell+DDCategory"; + name = "UIView+DDCategory"; sourceTree = ""; }; - 1B9CD14CDCDB410C594B9FA50994F3FA /* CALayer+DDCategory */ = { + 15F455D400B34163EBF2F890821EC67B /* ObjC */ = { 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 */, + 2790E6FB8D6725649EC7DD0E59B9679F /* SwiftyRSA+ObjC.swift */, ); name = ObjC; sourceTree = ""; }; - 29D12AB3CCB7B68112D4C37BF25E7FBD /* Support Files */ = { + 174C03FC909B1B474BE70A1ED4662847 /* DDTextField */ = { isa = PBXGroup; children = ( - C6ECB131B239110E605B70CEA74056DC /* Alamofire.modulemap */, - FD011CA76BBA19162FB843AD9DD94A45 /* Alamofire-dummy.m */, - 81780C956D086766F6C3125DB1A37A50 /* Alamofire-prefix.pch */, - 04A51F1AAC8D966A3CF17F3552628174 /* Alamofire-umbrella.h */, - D43F9DFE294B601576D924D8D14689E0 /* Alamofire.debug.xcconfig */, - 1EA80EA9DCB270302DAC7F65AFE579B0 /* Alamofire.release.xcconfig */, + B52DFFF71243EB8C7251CB1564835CD0 /* DDTextField.swift */, ); - name = "Support Files"; - path = "../Target Support Files/Alamofire"; + name = DDTextField; sourceTree = ""; }; - 2A594B4C7B963FD332AA1956A8C4FB29 /* Support Files */ = { + 1A8D62B10C5AF3502FFACE9916741232 /* DDFontKit_Private */ = { isa = PBXGroup; children = ( - 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/DDPersistenceKit_Private"; - sourceTree = ""; - }; - 2A89B1850EA0D24F88E40C6D39AD4956 /* NSThread+DDCategory */ = { - isa = PBXGroup; - children = ( - 4ECBE6D55B860A623894EE89ECA6D497 /* NSThread+DDCategory.h */, - C9589DB5D2D94EE3C30777E55FE0137D /* NSThread+DDCategory.m */, - ); - name = "NSThread+DDCategory"; - sourceTree = ""; - }; - 2A916BE1BB800047F0978F756DE15F57 /* DDWebImage */ = { - isa = PBXGroup; - children = ( - 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/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 */, + 07FAC442BD8DA7E807FEE112E2976373 /* FontUtil.swift */, + 8A60BA43A5EF9ACDC3286BF6168E2558 /* Support Files */, ); name = DDFontKit_Private; path = DDFontKit_Private; sourceTree = ""; }; - 34B78B29C53CA6C3626F4E1D7564F248 /* Support Files */ = { + 1A9074EE5EAC8F5CF1B8E0EC326E6965 /* NSAttributedString+DDCategory */ = { 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 */, + 8F3659E30F0D0A3150789145CFDCDA2D /* NSAttributedString+DDCategory.h */, + 663EA6C939676AEBAB3CDA24223F27DF /* NSAttributedString+DDCategory.m */, + 51C15303EE04DC081B316BC1D21CF4C1 /* NSMutableAttributedString+DDCategory.h */, + 07154D91CF0F369BF9976F9AFC21C82B /* NSMutableAttributedString+DDCategory.m */, + 63384AFBC552DE6802E90CEF8F8899C6 /* NSMutableParagraphStyle+DDCategory.h */, + 431782679AB85CC792CD54FC66A6F865 /* NSMutableParagraphStyle+DDCategory.m */, + ); + name = "NSAttributedString+DDCategory"; + sourceTree = ""; + }; + 1AC6BCFFDFE47D5699F97426BFA253D2 /* Support Files */ = { + isa = PBXGroup; + children = ( + B62B78079CEC2823B15BF35349176539 /* DDZFPlayerKit_Private.modulemap */, + F2030E904BD543CC02C9C1168BCF0EA5 /* DDZFPlayerKit_Private-dummy.m */, + A5EA2586E3EAEEC2194F17B9F253F654 /* DDZFPlayerKit_Private-prefix.pch */, + 2B9552FCBFE21A3BC81FE557772B549D /* DDZFPlayerKit_Private-umbrella.h */, + 766AB4A861BED0C8C4E0AB8EAE8AD563 /* DDZFPlayerKit_Private.debug.xcconfig */, + 7D213FD2F8DA516EF5C22E5B330B6756 /* DDZFPlayerKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDZFPlayerKit_Private"; + sourceTree = ""; + }; + 1C7ED58A0EC6D5B4419804AC3DA647F5 /* DDBaseTextField */ = { + isa = PBXGroup; + children = ( + 0E7F97EB592B989FE0CF4BC7EFAFFAE9 /* DDBaseTextField.h */, + A3AA6DD0FF21EC10EA126324BE0C6EA1 /* DDBaseTextField.m */, + ); + name = DDBaseTextField; + sourceTree = ""; + }; + 1D6D9C6ED2B5A50A6B55E02B99988FE8 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5EF641048381CD640F1D004A7B295629 /* DDDateKit_Private.modulemap */, + 05985D471561D3CC0EB9CAB71C30BCB5 /* DDDateKit_Private-dummy.m */, + 0F15CEB94701CD2D7E272DDB8A631DC8 /* DDDateKit_Private-prefix.pch */, + FEE6C2A27AE60D16AC0E2456CDB32915 /* DDDateKit_Private-umbrella.h */, + DCE1FBA2658CEF1279E07E4C878BEEA8 /* DDDateKit_Private.debug.xcconfig */, + B88231265E76ADE26235DC161FCDDE58 /* DDDateKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDDateKit_Private"; + sourceTree = ""; + }; + 1D97C49343AA5D2F683F60CB39519518 /* DDBaseNavigationController */ = { + isa = PBXGroup; + children = ( + CE81313328137EC08B4DF48C49E15834 /* DDBaseNavigationController.h */, + D6F65073F0DCD250E60942545C47750A /* DDBaseNavigationController.m */, + 6F288A0F3BBE89DEAB560F1358EE6383 /* DDNavigationControllerDelegateReceiver.h */, + 77AB66EBFFB2BBC4ADD123C3E59838A1 /* DDNavigationControllerDelegateReceiver.m */, + ); + name = DDBaseNavigationController; + sourceTree = ""; + }; + 20EF80455E6EF0EC42C4B5EF55FEAAAB /* DDBaseView */ = { + isa = PBXGroup; + children = ( + 408A95249D2949BFB8A25794EAB53F2F /* DDBaseView.h */, + C4AE11246EECD0B976F9CF8B81E2297F /* DDBaseView.m */, + ); + name = DDBaseView; + sourceTree = ""; + }; + 2327F98F52660DDE8D5B2D716677A4C7 /* Support Files */ = { + isa = PBXGroup; + children = ( + 72F7021212165D16FF0E4ED522328F19 /* DDColorKit_Private.modulemap */, + 6B91E55916F03FB5A884E37F37DA426F /* DDColorKit_Private-dummy.m */, + 2D54239F5B771C2A283FFB230410DA5A /* DDColorKit_Private-prefix.pch */, + B27CC71B07E04E4A3DE495BD283CFDC8 /* DDColorKit_Private-umbrella.h */, + 75DAFA1AC695B509C2780FE8EC418CD1 /* DDColorKit_Private.debug.xcconfig */, + CB2EFF782B3FB411DB2AF290FA7CE49F /* DDColorKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDColorKit_Private"; + sourceTree = ""; + }; + 23C2978BE33E1D1566CDA79BACA5CC8C /* UIViewController+DDCategory */ = { + isa = PBXGroup; + children = ( + CB56ED74DC39CC68AF7A99660929E18C /* UIViewController+DDCategory.h */, + CF22AA1DB2CE9C90A37E1F17D80DF614 /* UIViewController+DDCategory.m */, + ); + name = "UIViewController+DDCategory"; + sourceTree = ""; + }; + 25A9B0E2B11C4B1CC827143ABA31B6EE /* Support Files */ = { + isa = PBXGroup; + children = ( + F0B6D885C16486F946D3EABB31EAB131 /* DDUtilsSwiftKit_Private.modulemap */, + BFB0B638678F6BFCA7FA5729464D317E /* DDUtilsSwiftKit_Private-dummy.m */, + F58B97362FF3F465FAA3FB637B756A1A /* DDUtilsSwiftKit_Private-prefix.pch */, + E25E5922102E676BF98BCB18FC0D741B /* DDUtilsSwiftKit_Private-umbrella.h */, + B25E04F3EA30D0D933886EE487BD4555 /* DDUtilsSwiftKit_Private.debug.xcconfig */, + 72BE789EE4CA52ED5A35DFDB909613BE /* DDUtilsSwiftKit_Private.release.xcconfig */, ); name = "Support Files"; path = "../Target Support Files/DDUtilsSwiftKit_Private"; sourceTree = ""; }; - 34F1023A605786425EE9F54F7F221BFB /* Development Pods */ = { + 27402CBCC89DD6EAB4FD8E4CA4004620 /* UINavigationController+DDCategory */ = { isa = PBXGroup; children = ( - D9B00C0698CC49859785AD062FD05DCE /* DDUIGestureRecognizer */, + 78AA2EE182FFF0E6070E53AB44E25754 /* UINavigationController+DDCategory.h */, + 08327C82F0A0391E9140121D7FDFE40C /* UINavigationController+DDCategory.m */, ); - name = "Development Pods"; + name = "UINavigationController+DDCategory"; sourceTree = ""; }; - 3645F1D20E3345A49525AF967A2B096F /* Sources */ = { + 28017A9F95CC246CD9F0D6CA2B32065C /* UICollectionView+DDCategory */ = { isa = PBXGroup; children = ( - 1908B173CD4F5C7F67578BDD87BD7758 /* Resources */, + 1D0B85E700D10B3D96D321CD150B9585 /* UICollectionView+DDCategory.h */, + 21DF8C1CDD93BE8C608B10C7A99FF308 /* UICollectionView+DDCategory.m */, ); - name = Sources; + name = "UICollectionView+DDCategory"; sourceTree = ""; }; - 36DA8BC40F0E15557BA0A8B13228A0C3 /* UITextView+DDCategory */ = { + 28F03B0068D5D7936BD4A87C986341D4 /* JXCategoryView */ = { isa = PBXGroup; children = ( - DCB224F266E399DCEDEDC6891CABD5F2 /* UITextView+DDCategory.h */, - B97764B5C39055E3EC18E9F7FFB4EA4E /* UITextView+DDCategory.m */, + 1F7850CC6AF396911DBC37C096122FC3 /* JXCategoryBaseCell.h */, + BB981F0C9DA54389C6DDD68879E22750 /* JXCategoryBaseCell.m */, + 9DCD356CC83A2E80E3DE4C6A559808A7 /* JXCategoryBaseCellModel.h */, + 80A649CE3F93375783D7116EF430B256 /* JXCategoryBaseCellModel.m */, + 8CB3754C4B17E0A81AF818425D2D8AC8 /* JXCategoryBaseView.h */, + A32BB7C1A9A47FDDEC109EB78EEF30E8 /* JXCategoryBaseView.m */, + D90F21EEE1973C55BEDCF3B1F0635C53 /* JXCategoryCollectionView.h */, + 56B3B7BAD0B37E1BF1AAEBD2594EA662 /* JXCategoryCollectionView.m */, + 7A08E155C84481CC37D8F173D3BD1B67 /* JXCategoryDotCell.h */, + B334D67E5E5903730B1973E16286BF27 /* JXCategoryDotCell.m */, + 4AB87EA43F2DBA3EB4E0AEA06B6C413B /* JXCategoryDotCellModel.h */, + E3F8266CE317D8E0975411F90D27C290 /* JXCategoryDotCellModel.m */, + 7C944D55A4EB5AF3B90AA9217FF75E93 /* JXCategoryDotView.h */, + 9D98CB88D6B58CF42397FB2EB934B487 /* JXCategoryDotView.m */, + B78F93A260C4C4D84185389BDED0CB5C /* JXCategoryFactory.h */, + 1A59DAC80F4D57F85549837E03B6252D /* JXCategoryFactory.m */, + 4EA6F369CBB3FB4CC48C9D8F5DEB8C92 /* JXCategoryImageCell.h */, + 198924C29838CDB965722E2D7481E605 /* JXCategoryImageCell.m */, + BD08CA20CB5FA13ACA16424C2F36B7B9 /* JXCategoryImageCellModel.h */, + 84139A709116A6DE8AA5ECFC893A1675 /* JXCategoryImageCellModel.m */, + 2FA31007B6D93602F27D3323C15FC96A /* JXCategoryImageView.h */, + 7DD94D73905EA42D1EA845719E4B4606 /* JXCategoryImageView.m */, + 8718096511BDE69ECB5BDDCB166B1804 /* JXCategoryIndicatorBackgroundView.h */, + 5169308318F183E8145E35DFF3BBD5F0 /* JXCategoryIndicatorBackgroundView.m */, + 92FA5A924736ECDB427DB40FFCE1362C /* JXCategoryIndicatorBallView.h */, + E186D97614A6808EAACBEB5CDDDE530C /* JXCategoryIndicatorBallView.m */, + 7A636F211352C3DE6116917AE7EC06E9 /* JXCategoryIndicatorCell.h */, + 7358878FDC99B15E1FD4CF7BE510793C /* JXCategoryIndicatorCell.m */, + 6F481836E9BE562C8F412BBB3F237D04 /* JXCategoryIndicatorCellModel.h */, + 664FAFD6CBAE186D22E2AC8D4CF236CA /* JXCategoryIndicatorCellModel.m */, + 277FF58F134845011CF6F9EDF6779546 /* JXCategoryIndicatorComponentView.h */, + DE85F40402691E08F01780481F9605A4 /* JXCategoryIndicatorComponentView.m */, + A5CC4AC3062FAE8434E67C4666BDD667 /* JXCategoryIndicatorDotLineView.h */, + D99B4A3B342E1BEC9FBD4999B99CACDB /* JXCategoryIndicatorDotLineView.m */, + FC37965B09CCF834B5FA66CF7B0133D0 /* JXCategoryIndicatorImageView.h */, + 2FC99AEF9325DC652C27BD7D2F617307 /* JXCategoryIndicatorImageView.m */, + F68FD20B222A0BFDB5623996F6B90B40 /* JXCategoryIndicatorLineView.h */, + D66D24BA0314D69D80A4725766A65B41 /* JXCategoryIndicatorLineView.m */, + 31ADC7D2323622EC9BA4BFEB35C6C818 /* JXCategoryIndicatorParamsModel.h */, + 19D80402B8EF2D87BD76DF3ABB909097 /* JXCategoryIndicatorParamsModel.m */, + FE6CC7EB81C2990554D85AF29F2C0DC6 /* JXCategoryIndicatorProtocol.h */, + B312BE4F74F13C76CFFF69A3872936B4 /* JXCategoryIndicatorRainbowLineView.h */, + 0FDBA6D4FF65571F1B96D58FD9AE5377 /* JXCategoryIndicatorRainbowLineView.m */, + 5686CE5152ABB005BE226C850D579F38 /* JXCategoryIndicatorTriangleView.h */, + DEA89CCAE3A256282C9F94981D3768C7 /* JXCategoryIndicatorTriangleView.m */, + EDB9F61004F057A6AFBA2D181643B827 /* JXCategoryIndicatorView.h */, + 8ECAB07FCFE0072D948CF75E934427E1 /* JXCategoryIndicatorView.m */, + A8EE0732B24D9380A9D10F82F68C17E2 /* JXCategoryListContainerRTLCell.h */, + 5D3CEE42B0CF04A30F8A7C5D0CE4A67B /* JXCategoryListContainerRTLCell.m */, + 890DE64D33931D869ED7D6B93B339AD2 /* JXCategoryListContainerView.h */, + A08401120D6B9CF22F102CB12AA300C0 /* JXCategoryListContainerView.m */, + E881C79A457FA3C852B9D5199547AE30 /* JXCategoryNumberCell.h */, + 8C0500AFE12BEA911C665C57FA898C4B /* JXCategoryNumberCell.m */, + 24CA29109E20F9275E38F8FBFFAD09F8 /* JXCategoryNumberCellModel.h */, + FC7451C4E086CC15DEF77C9DF1B03D17 /* JXCategoryNumberCellModel.m */, + 72AE2733B31FE4DADA0345F29D71C093 /* JXCategoryNumberView.h */, + FEE9A951565F7F1CA336E443C8E6838B /* JXCategoryNumberView.m */, + A539BA6B3B78E4DAC06E1E5107D57351 /* JXCategoryTitleCell.h */, + 10A8C3071A8476EE39EA7D86D0AEFF30 /* JXCategoryTitleCell.m */, + 33752FE261B0C078F848B58A07AA481B /* JXCategoryTitleCellModel.h */, + AF470B49F52DD3204C90082CED57987B /* JXCategoryTitleCellModel.m */, + 763C41B62183DDB92CDC296FD00E1E5C /* JXCategoryTitleImageCell.h */, + A64141A13774D957159C396B00EA1FA0 /* JXCategoryTitleImageCell.m */, + 3A9739EFBFBD04AE760EC4819117A4E5 /* JXCategoryTitleImageCellModel.h */, + E362E937635497943E6DE508A30872C0 /* JXCategoryTitleImageCellModel.m */, + 4C7A17640384B33065DE03CDEF045AB7 /* JXCategoryTitleImageView.h */, + AACA4276A4DD2A181A29CB5A6D4F987F /* JXCategoryTitleImageView.m */, + 89D5FE44EE1480C618C6C905D9B62AA7 /* JXCategoryTitleVerticalZoomCell.h */, + D6FBC98227692E2EDA7BA0158B148EE0 /* JXCategoryTitleVerticalZoomCell.m */, + 0161B0C88CEDF24D81D909CA07FD8B59 /* JXCategoryTitleVerticalZoomCellModel.h */, + B7358F3BC873542366011A08ECF48E85 /* JXCategoryTitleVerticalZoomCellModel.m */, + 361CF9ACE31045529002F6F3209B3D80 /* JXCategoryTitleVerticalZoomView.h */, + D8CA2A33931DC2579FC0ECC78A3F32F5 /* JXCategoryTitleVerticalZoomView.m */, + 01416891F274081B2D37C2AA6BFD09C3 /* JXCategoryTitleView.h */, + 2E7572BCA0726F4BBDAC725F8D72D30E /* JXCategoryTitleView.m */, + D04F4025DAA6AE1607CA0C6A613E77D2 /* JXCategoryView.h */, + E6849A44E28F80902A3A32765DB0396A /* JXCategoryViewAnimator.h */, + AA527DB264FA6745EADFF0A0CE995A64 /* JXCategoryViewAnimator.m */, + C6529C9411134215EF4AFE57EA35EE07 /* JXCategoryViewDefines.h */, + FA5A3AE782254FA1E0D1E276AD75C737 /* RTLManager.h */, + 3C44F62C22DF3008C7CC0519407F5187 /* RTLManager.m */, + 7E7900EE3DEAEC68257F18737BACB0E2 /* UIColor+JXAdd.h */, + 09F7B2E1419480FFE07D7AC38CDF6DDA /* UIColor+JXAdd.m */, + 9198C8BB272E68E46EA29871024C67A0 /* Support Files */, + ); + name = JXCategoryView; + path = JXCategoryView; + sourceTree = ""; + }; + 2A051FA6137F72254E5FA5C196522DD5 /* ESTabBarController-swift */ = { + isa = PBXGroup; + children = ( + 738E4B79AC68A6F43F3E49E0F2EACD34 /* ESTabBar.swift */, + F2DAD6CBF3EE2D2C18547B8FB92B67D5 /* ESTabBarController.swift */, + DF8C9ABBCCBC2EE3A31AB56FAC7FEF57 /* ESTabBarItem.swift */, + 9D7117CE9F126D8AFB2EF3E21C5275DC /* ESTabBarItemBadgeView.swift */, + 76B0B0393DB4BA68A89B300349BE4897 /* ESTabBarItemContainer.swift */, + 6C38F44EE363718812226442A59C3B00 /* ESTabBarItemContentView.swift */, + C9B22AEFF5E21204956A6F923438DA68 /* ESTabBarItemMoreContentView.swift */, + 6BF44152B846B8FD95770C5F5448B1F1 /* Resources */, + DE3FA9C3D1178B14AC88CC36FB8D631E /* Support Files */, + ); + name = "ESTabBarController-swift"; + path = "ESTabBarController-swift"; + sourceTree = ""; + }; + 2A65A0F02F86D7896CA1EA9A8976C89A /* UIButton+DDCategory */ = { + isa = PBXGroup; + children = ( + 414DEEA9CD0A32CBD5AD1D286EB2228F /* UIButton+DDCategory.h */, + D8FCED600A05B1C2B846D30CC3AAD57B /* UIButton+DDCategory.m */, + ); + name = "UIButton+DDCategory"; + sourceTree = ""; + }; + 2ABFCC13E8D40EADA561BA4F63E47765 /* UIImage+DDCategory */ = { + isa = PBXGroup; + children = ( + 27935E6A76148C4CC3A43A08E5BB374A /* UIImage+DDCategory.h */, + 95BC051C3B8A110581BAB84448C26CF2 /* UIImage+DDCategory.m */, + ); + name = "UIImage+DDCategory"; + sourceTree = ""; + }; + 2B25B145161EC74DD7678FCA74302425 /* AnnotationView */ = { + isa = PBXGroup; + children = ( + D3FB6F056F8A12D444682DBA0CE25994 /* DriveRouteCustomAnnotationView.h */, + 1BC172D80DCC9AAA3282F72EFA8003F7 /* DriveRouteCustomAnnotationView.m */, + ); + name = AnnotationView; + sourceTree = ""; + }; + 2B5270A00DD5517501F3D23340FFAAE7 /* DDUIGestureRecognizer */ = { + isa = PBXGroup; + children = ( + 3598C6875A4FA5B9ED27EB418BF5D42E /* DDUIPanGestureRecognizer */, + 01D231CEF439560609CAA82565C143E8 /* Support Files */, + ); + name = DDUIGestureRecognizer; + path = DDUIGestureRecognizer; + sourceTree = ""; + }; + 2B9C2FDE06B7A747EA23019BE3945913 /* Support Files */ = { + isa = PBXGroup; + children = ( + C3E61D6594AA51838DD5DE8F83F24637 /* DDProgressHUDKit_Private.modulemap */, + F7FC77C5CB76B974D27342C88D20240A /* DDProgressHUDKit_Private-dummy.m */, + FB7C0A50D8DCB60DBF62F4005AB5E372 /* DDProgressHUDKit_Private-prefix.pch */, + 94482E4EC568435E64B22D007C4410AC /* DDProgressHUDKit_Private-umbrella.h */, + CE6F56AA2541B1C73D20227D285533B9 /* DDProgressHUDKit_Private.debug.xcconfig */, + 626CC9F402C18E629AE5DA9C4479016E /* DDProgressHUDKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDProgressHUDKit_Private"; + sourceTree = ""; + }; + 2D2E788F4FFFC1991A9575E368FFD5A6 /* MapKit */ = { + isa = PBXGroup; + children = ( + A64CFB78A7B2A705F540A2AA34AA4623 /* MKAnnotationView+WebCache.h */, + 861CFAA2C8340AA35A40C6170A65B656 /* MKAnnotationView+WebCache.m */, + 25620580657139A91501761C0E2C0EE8 /* SDWebImageMapKit.h */, + ); + name = MapKit; + sourceTree = ""; + }; + 2D3B1C7BD93273C134D8742623677734 /* DDBaseAttributedString */ = { + isa = PBXGroup; + children = ( + 2BFA0489989445DD2B4962E11806481B /* DDBaseAttributedString.h */, + 42ED0C8493576B3B2DAC8BB706A3C67E /* DDBaseAttributedString.m */, + 52F45FFF8D38F14F6DDB947E2069BCE5 /* DDBaseMutableAttributedString.h */, + 58A8DE468DA39A7F80D4952AD4AB5A4E /* DDBaseMutableAttributedString.m */, + ); + name = DDBaseAttributedString; + sourceTree = ""; + }; + 2D544A47FCBA754F64635F9D77C5E21D /* DDBaseViewModel */ = { + isa = PBXGroup; + children = ( + 4DC4906ADAF959FE5B7AFE7AC5DA0FA5 /* DDBaseViewModel.h */, + 0F57234F64543394A2509EF7252DAE75 /* DDBaseViewModel.m */, + ); + name = DDBaseViewModel; + sourceTree = ""; + }; + 2DB663BD94AAB886D09256DB595F712C /* DDMASearch */ = { + isa = PBXGroup; + children = ( + FFD5E8663F0D9747A37855DB5D1002D6 /* DDMASearch.h */, + 4C1F185253DC51F255BA776064117957 /* DDMASearch.m */, + ); + name = DDMASearch; + sourceTree = ""; + }; + 315A377F76ABA2FCE5B34DE84AFFE85A /* AMapFoundation-NO-IDFA */ = { + isa = PBXGroup; + children = ( + E8FEBDA1629197AB418FD839CF3756CC /* AMapFoundationConst.h */, + 2FBBBB12EDBFB983B3BA4BAF8C5FB23A /* AMapFoundationKit.h */, + C16F5B45DAD34102901002D0B8DFDD05 /* AMapFoundationVersion.h */, + 671A98BD87F85117435CD71F6152C133 /* AMapServices.h */, + E01451983FA9158DDDCBA2445BDAF24A /* AMapURLSearch.h */, + 7019A59A9AAAC01BBD3C83E3D79799E7 /* AMapURLSearchConfig.h */, + BF645566D918E351D340FB1DC3DB6C8A /* AMapURLSearchType.h */, + B1B766F76E93131F217E79645FD69E92 /* AMapUtility.h */, + C6E5FBC5B3455BBA3D944049BB306226 /* Frameworks */, + 4DFD2BE30D5FB5ECBEC891EF027E36CD /* Support Files */, + ); + name = "AMapFoundation-NO-IDFA"; + path = "AMapFoundation-NO-IDFA"; + sourceTree = ""; + }; + 316E2E693E9A80A73750711CBB0D5DC3 /* UITextView+DDCategory */ = { + isa = PBXGroup; + children = ( + 5B73C4F5B228339805AA81EBE2AC0D73 /* UITextView+DDCategory.h */, + 7F5F9E4CA39D50C9170C7E6ABB327C21 /* UITextView+DDCategory.m */, ); name = "UITextView+DDCategory"; sourceTree = ""; }; - 374149E961192372CF7EA5A93377DB10 /* DDBaseTableView */ = { + 31D76799BF96DEDF050CB4309DC475C2 /* UICollectionViewCell+DDCategory */ = { isa = PBXGroup; children = ( - 9828823C2BF2418D550CDBB193C104EA /* DDBaseTableView.h */, - 5B774242E6BB5C48ACAA705B03F995A7 /* DDBaseTableView.m */, + 2E2F004D13B5E083B12131387642B38A /* UICollectionViewCell+DDCategory.h */, + 67F64BA9EE0D9424B4480B7FF285F525 /* UICollectionViewCell+DDCategory.m */, ); - name = DDBaseTableView; + name = "UICollectionViewCell+DDCategory"; sourceTree = ""; }; - 399BB633B7383834D10E19FF3D4A2756 /* AMapTrack-NO-IDFA */ = { + 33C40BBFA96335AA690A0CAE969DDBD7 /* Support Files */ = { 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 */, + 78D64DA9B9CFB4513675F6B8ADB17C75 /* Kingfisher.modulemap */, + 406F7E3229F593F84AD83A7E85A7761B /* Kingfisher-dummy.m */, + 7A713C3F36FCC3976BAE0F9B1AE66D6F /* Kingfisher-prefix.pch */, + DE4652CD4273BE4BB3440653574A55FF /* Kingfisher-umbrella.h */, + 4D43DE9089919C5D1CDF9BC60423966D /* Kingfisher.debug.xcconfig */, + BE58D564083F547D167C46DE94437866 /* Kingfisher.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/Kingfisher"; + sourceTree = ""; + }; + 3598C6875A4FA5B9ED27EB418BF5D42E /* DDUIPanGestureRecognizer */ = { + isa = PBXGroup; + children = ( + CD9622D78B67EBBB9F0CC68E96C76460 /* DDUIPanGestureRecognizer.swift */, + ); + name = DDUIPanGestureRecognizer; + sourceTree = ""; + }; + 35C57DC6D676459C5E65D23D5D79D829 /* DDTransitionAnimation */ = { + isa = PBXGroup; + children = ( + 635AE42BDFD151FFE2EAA9B7790FA772 /* DDViewControllerAnimatedTransition.h */, + A9B09E808EE321878677C790C1F30DB3 /* DDViewControllerAnimatedTransition.m */, + ); + name = DDTransitionAnimation; + sourceTree = ""; + }; + 39210B51AA08B3682AC65CE6B80B26BB /* DDWebImageKit_Private */ = { + isa = PBXGroup; + children = ( + 47EB040D861F0E7815833EEA596B81C2 /* DDWebImage */, + 776F208B9E4346014CD19AC9328D0D95 /* SDWebImage */, + A56973481153C7AFD69436AF0E3C1FAF /* Support Files */, + ); + name = DDWebImageKit_Private; + path = DDWebImageKit_Private; + sourceTree = ""; + }; + 3B55AF39F8ABB7C82B5F32E66B397B6C /* FileManager */ = { + isa = PBXGroup; + children = ( + BC7E7B1E71A60B4E7A6626233CCAB18D /* DDFileManager.swift */, + ); + name = FileManager; + sourceTree = ""; + }; + 3CC4FB549A4BAAE4384562048F5BF236 /* AMapTrack-NO-IDFA */ = { + isa = PBXGroup; + children = ( + 6FE8F4E8B0EF75209256C6CBC27829FD /* AMapTrackCommonObj.h */, + D47EF339C33166FAC958557B9D4FE001 /* AMapTrackError.h */, + EE9A4B02158C8AFE56BBA3B993AA2246 /* AMapTrackHistoryObj.h */, + 58D937F896EB7A25A19964F1CD0A2814 /* AMapTrackKit.h */, + 9243FE92DBB5E378D53169FC35B5253F /* AMapTrackManager.h */, + 87B725288365D714C1C3DD2C54E3B315 /* AMapTrackManagerOptions.h */, + 3081305964160CF2FE04DBFF7C825C9F /* AMapTrackTerminalObj.h */, + 13E714FDC9ED7862DA46E82D64F377DD /* AMapTrackTrackObj.h */, + 4626EE8B0CB5D9327B7343BD6DDC1071 /* AMapTrackVersion.h */, + 0DF3490F89C9FF4A7981B71A3B2B7266 /* Frameworks */, + BA6A921EE08990CA86EA3A40220FD491 /* Support Files */, ); name = "AMapTrack-NO-IDFA"; path = "AMapTrack-NO-IDFA"; sourceTree = ""; }; - 3A3618731A5D1C6F986DB3BABFF93C60 /* Support Files */ = { + 3E1E9494647A60BA2EB950F8BCE3A9A3 /* UINavigationBar+DDCategory */ = { 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 */, + E16096F57A2ABE72DA71031E8C7657A6 /* UINavigationBar+DDCategory.h */, + 101C9488C6B56B8AE42CC2DEB14858D7 /* UINavigationBar+DDCategory.m */, ); - 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; + name = "UINavigationBar+DDCategory"; sourceTree = ""; }; 40F107534C937BC69E9FBEA4420D7509 /* Pods-OrderScheduling */ = { @@ -4366,1753 +4328,2076 @@ path = "Target Support Files/Pods-OrderScheduling"; sourceTree = ""; }; - 43F133695D7273DDC875DF181F5768DA /* SnapKit */ = { - isa = PBXGroup; - children = ( - 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 = SnapKit; - path = SnapKit; - sourceTree = ""; - }; - 4438D769CA2EE9D86C0FB5FA7B8CD640 /* Support Files */ = { - isa = PBXGroup; - children = ( - 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/ESTabBarController-swift"; - sourceTree = ""; - }; - 46AF96947BE9C91BAF049BCD2A7AD31B /* DDUtilsSwiftKit_Private */ = { - isa = PBXGroup; - children = ( - CFCE8D4F13BCA42091BE611EC11C4F03 /* ApplicationInfo */, - 62279BF8C25723C9B1B17CA91B64847E /* DeviceInfo */, - B10B01FBF5C15CF6E889A332C4E034D5 /* FileManager */, - 34B78B29C53CA6C3626F4E1D7564F248 /* Support Files */, - 4D4C45084E9664856C2301405EFDDDCA /* UrlLinks */, - ); - name = DDUtilsSwiftKit_Private; - path = DDUtilsSwiftKit_Private; - sourceTree = ""; - }; - 485DB07EEED3DC287FB821CFEE39F4D0 /* MapKit */ = { - isa = PBXGroup; - children = ( - BD8C0BEA44A3F19AB254339CA52001DC /* MKAnnotationView+WebCache.h */, - 45BCDD8B42F08E3EA61EFB04D6E071A9 /* MKAnnotationView+WebCache.m */, - DDA69305344998ECA41F4A63617370D5 /* SDWebImageMapKit.h */, - ); - name = MapKit; - sourceTree = ""; - }; - 4AB74D237C6907FCDB95F638E6C388C7 /* MJRefresh */ = { - isa = PBXGroup; - children = ( - 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 = ""; - }; - 4D4C45084E9664856C2301405EFDDDCA /* UrlLinks */ = { - isa = PBXGroup; - children = ( - D8F5ADB034A04A654B5D34FABDC5761E /* UrlLinks.swift */, - ); - name = UrlLinks; - sourceTree = ""; - }; - 4DDF4A8AC24BC2AB4F21F0B8C0E99C2E /* Frameworks */ = { - isa = PBXGroup; - children = ( - 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/AMapNavi-NO-IDFA"; - sourceTree = ""; - }; - 505A81956C06ACE994A9D88B36F90849 /* DDBasicControlsKit_Private */ = { - isa = PBXGroup; - children = ( - 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/AMapTrack-NO-IDFA"; - sourceTree = ""; - }; - 55A0446D534BCC841E12FA469D30E86A /* NSObject+DDCategory */ = { - isa = PBXGroup; - children = ( - C4A993DBC2B198CC671EA3E4BE861FD4 /* NSObject+DDCategory.h */, - 3E80CF754935616F3D07EC39D0154570 /* NSObject+DDCategory.m */, - ); - name = "NSObject+DDCategory"; - sourceTree = ""; - }; - 5849CAEF87217C7E5C9B841545E187F9 /* Support Files */ = { - isa = PBXGroup; - children = ( - 000C79CC6867D594F7FD77C78DE94F8D /* JPushExtension-xcframeworks.sh */, - 664B80C9E1E223C3A5E06D7CE84141D8 /* JPushExtension.debug.xcconfig */, - 5E403B9EEAD13AFBAB2871831C453524 /* JPushExtension.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/JPushExtension"; - sourceTree = ""; - }; - 59F46248596550E8935CF668F791C291 /* DDBaseButton */ = { - isa = PBXGroup; - children = ( - 5AD026EC53A99795D22A2F4D9151029B /* DDBaseButton.h */, - DDA33FAEAD96DC6BD523DAE59DEA6E00 /* DDBaseButton.m */, - ); - name = DDBaseButton; - sourceTree = ""; - }; - 5AE99018DA71FC74CF693CB525BE2DAD /* JXCategoryView */ = { - isa = PBXGroup; - children = ( - 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 = JXCategoryView; - path = JXCategoryView; - sourceTree = ""; - }; - 5B2133DE4AB1115D1E54BF643C5C6299 /* AnnotationView */ = { - isa = PBXGroup; - children = ( - E991797B63F375369191C4F81C359A0D /* DriveRouteCustomAnnotationView.h */, - E47445009D064B225F8156AF7F347247 /* DriveRouteCustomAnnotationView.m */, - ); - name = AnnotationView; - sourceTree = ""; - }; - 5BCF511EA483ACA131DBD6DB254E95A7 /* DDMAMap */ = { - isa = PBXGroup; - children = ( - 2D81C357744E13F25EF03B53A7BEABEA /* Annotation */, - 5B2133DE4AB1115D1E54BF643C5C6299 /* AnnotationView */, - DBDF6EFEB7E2EF700D00C13766849896 /* MapView */, - BF3DB338D40A3D4E395F642471F1CBFC /* Overlay */, - 3645F1D20E3345A49525AF967A2B096F /* 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/Bugly"; - sourceTree = ""; - }; - 5E8E755390FF5EDAC5BBE9E19FC6AEA5 /* SwiftLog */ = { - isa = PBXGroup; - children = ( - 40C03F1C09C42BDD9F51B5EC1218B9C1 /* DDSwiftLog.swift */, - ); - name = SwiftLog; - sourceTree = ""; - }; - 5FB9CAA7C24FA964ABA0CFB04479CB86 /* DDBaseTableViewCell */ = { - isa = PBXGroup; - children = ( - 07328B577DB8D183B9FE834B1E4D5F8B /* DDBaseTableViewCell.h */, - 164CCF231070D9275F9846118DED7BF7 /* DDBaseTableViewCell.m */, - ); - name = DDBaseTableViewCell; - sourceTree = ""; - }; - 61F4B6C161769672B8E16D6D6F7B61F9 /* DDTextField */ = { - isa = PBXGroup; - children = ( - B68D04C1C21C4D6BE48F329D78E42FA5 /* DDTextField.swift */, - ); - name = DDTextField; - sourceTree = ""; - }; - 62279BF8C25723C9B1B17CA91B64847E /* DeviceInfo */ = { - isa = PBXGroup; - children = ( - AE7AB58F3BAED9A18850DC937778E4FE /* DeviceInfo.swift */, - ); - name = DeviceInfo; - sourceTree = ""; - }; - 62AA07FCE520802478748E03B492206A /* Resources */ = { - isa = PBXGroup; - children = ( - 6C6B6319757C56C6491867CB296B6C76 /* DDBaseViewController.xcassets */, - ); - name = Resources; - sourceTree = ""; - }; - 62B685DC0F138CC027C1F3B33B825AAC /* NSAttributedString+DDCategory */ = { - isa = PBXGroup; - children = ( - 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 = "NSAttributedString+DDCategory"; - sourceTree = ""; - }; - 63FAFD376A56A3726F5B04AA59C31A11 /* NSURL+DDCategory */ = { - isa = PBXGroup; - children = ( - 5D3AD7C118DCCD7B7B303F30C66BA970 /* NSURL+DDCategory.h */, - A319958E73C98ACF9F54AC059009CC1B /* NSURL+DDCategory.m */, - ); - name = "NSURL+DDCategory"; - sourceTree = ""; - }; - 64B642F205AE7D5D04E655615299FC42 /* UITabBarController+DDCategory */ = { - isa = PBXGroup; - children = ( - 62AD7A36A987E5118EC1E481B7C276BD /* UITabBarController+DDCategory.h */, - D9E7D9EE698F5F05F581FDF728B6836A /* UITabBarController+DDCategory.m */, - ); - name = "UITabBarController+DDCategory"; - sourceTree = ""; - }; - 64FF446DFF261878536CAB8398BDBE40 /* SwiftyRSA */ = { - isa = PBXGroup; - children = ( - 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 = ""; - }; - 65D0C89DDC40154B9F6440ADB3C98898 /* UIScreen+DDCategory */ = { - isa = PBXGroup; - children = ( - D34026654A2BB5E123BB5CEAC708A17E /* UIScreen+DDCategory.h */, - D92A8FE3E1B511EFFF6060691EAE164A /* UIScreen+DDCategory.m */, - ); - name = "UIScreen+DDCategory"; - sourceTree = ""; - }; - 66A03FED0010D20C609E327D146BAEDD /* DDTimerSwiftKit_Private */ = { - isa = PBXGroup; - children = ( - 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 = ""; - }; - 6F46E12705265AF1495B6ABFD0C6F07C /* DDBaseModel */ = { - isa = PBXGroup; - children = ( - 621849EEF1C1322DA52276BEC1403F0D /* DDBaseModel.h */, - 7E73E2323A80B4111342503B24A16CCB /* DDBaseModel.m */, - ); - name = DDBaseModel; - sourceTree = ""; - }; - 6F91F753137E777970E3F3E716B5B9FB /* DDBaseTextField */ = { - isa = PBXGroup; - children = ( - 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 = ""; - }; - 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 = ""; - }; - 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 */, + 41CAE9A3311FB5AC8DBCFA812D0B0825 /* DDMANaviManager */ = { + isa = PBXGroup; + children = ( + 1CF7C4DAFD7BA02F288F6F59C8906BED /* DDMANaviManager.h */, + 0259A6312EF907AF2D060BD0242AAE8A /* DDMANaviManager.m */, + ); + name = DDMANaviManager; + sourceTree = ""; + }; + 430A45A5689723437D4186EDCB8FACDD /* Kingfisher */ = { + isa = PBXGroup; + children = ( + 73FFE0918E3264C28FE559685B7134DF /* AnimatedImageView.swift */, + D3E1209A1DDFD5B21D43A2F9842654B8 /* AuthenticationChallengeResponsable.swift */, + 007C5043C49FD0FF7EE18EBD17C9CC1F /* AVAssetImageDataProvider.swift */, + 6C44A92ECE8EC09F38A1D3E80C511418 /* Box.swift */, + 1FDC054B08B8EE649AA446C68E377138 /* CacheSerializer.swift */, + A90EFFF829D8B6C031175B3F16DBB192 /* CallbackQueue.swift */, + FDA6B5599AB2BE581DC91538DD516EAB /* CPListItem+Kingfisher.swift */, + 85CEDE84D564EF34245B33AFD27ABD70 /* Delegate.swift */, + 32AE1FE472FCB6CC7C6905B414F597BF /* DiskStorage.swift */, + 3D5E4C805A263C00F598441E53FFA2A0 /* ExtensionHelpers.swift */, + 77C5DD767DC3FF4E2DDD42B2D01D1EE0 /* Filter.swift */, + DE89E057EB4CA2D4CCD39793E73A103D /* FormatIndicatedCacheSerializer.swift */, + C0CBB0E3F0A61ACC8CEF2A45411A5AB0 /* GIFAnimatedImage.swift */, + F02E9496E31834EA30D63093FB024F8E /* GraphicsContext.swift */, + 54D04CC609BE536D46BF57DFFADB31EB /* Image.swift */, + C987838EA618BD73F6A28ACD07188BC7 /* ImageBinder.swift */, + 05602809C43207445EBFF4B478A81D7B /* ImageCache.swift */, + 85B9198B32A14C16CAD74E5A03D08110 /* ImageContext.swift */, + 7C86605B5DB4A207C18DF0BAB0B51C4C /* ImageDataProcessor.swift */, + 6988BF2C6DA9CCFB885A9A2177E8BAA2 /* ImageDataProvider.swift */, + 6BAC18947B909747487F87ECB9FDEFCB /* ImageDownloader.swift */, + B96CCE9B8D2B228DE0B0775EC50E4FAF /* ImageDownloaderDelegate.swift */, + 21E6071B51761D1B0624904B2F6FD1F2 /* ImageDrawing.swift */, + FE25602EA493B11A1957661FCE674D16 /* ImageFormat.swift */, + 147D7323EE7670D6346C1D39FA0143D7 /* ImageModifier.swift */, + D3756881A50A8A89FC1A80F48932308B /* ImagePrefetcher.swift */, + CC18668459F280A60B4618599D0BD16A /* ImageProcessor.swift */, + 1F63DE719625B11D8C655A86675C5F52 /* ImageProgressive.swift */, + 76F379F05F1624C746C7F5F98C40D9C9 /* ImageTransition.swift */, + 715F07D106B63A04EA7B7A5AE0DB3E3A /* ImageView+Kingfisher.swift */, + 05F9822BADAAFBFBB5BED13D41072C8C /* Indicator.swift */, + D8ACAF0D76072A8F51B9F0C8833AD97C /* KF.swift */, + 41E8E4C5E9E29C04A7A8A4B585174610 /* KFAnimatedImage.swift */, + 8A329E8FED4A3CFEE60027AE989BABE6 /* KFImage.swift */, + 72AA863275D84B37CD7FF74C792A5CA0 /* KFImageOptions.swift */, + F3F8EB5BFE51ADEB49C2540FB30B2B8A /* KFImageProtocol.swift */, + 1426BD89DE0205308E091F2480E6FFED /* KFImageRenderer.swift */, + E566354F2B1D3F5622D411A141CE93F5 /* KFOptionsSetter.swift */, + D710895E749BAB946654E01B8DD21773 /* Kingfisher.swift */, + 29F2E88129E33053604F01B0A2345386 /* KingfisherError.swift */, + 8B10484601C6C25094EE2083E5EE997F /* KingfisherManager.swift */, + 4D2C743851A09B2A6B3724C89D6EFD0F /* KingfisherOptionsInfo.swift */, + E0F0E39AF0AD69EF53A7AD2FB214B7F1 /* MemoryStorage.swift */, + F30D377333774804832280D4E65091A6 /* NSButton+Kingfisher.swift */, + 5802CF56D312B8E04A2251ED79A91789 /* NSTextAttachment+Kingfisher.swift */, + 63D1E9A0D7E004AD26F2F18F56D56581 /* Placeholder.swift */, + B87E673A0B4439C6149A466E8EEBC135 /* RedirectHandler.swift */, + B90420B4EBF9DCF1A3266D4299E4C90E /* RequestModifier.swift */, + 1ECA38E0662E0E754A47CDBD3E9503DA /* Resource.swift */, + F2436F8A52D8B95050082CCD91AEE312 /* Result.swift */, + 1F1335433A485FE1BE97694DFE344372 /* RetryStrategy.swift */, + 14512F9D2A20420A6E5096EB01EF2155 /* Runtime.swift */, + 83E8A0AD8CDA023AB7591BD8214FE839 /* SessionDataTask.swift */, + 105EC8E1085157934B6EEFC708A5705E /* SessionDelegate.swift */, + 3E872D89E831F2D48C7F15D1B0B98A37 /* SizeExtensions.swift */, + 5FFA609DFFFD0D424ECB7E97724C2CC8 /* Source.swift */, + 8D2390AD1BF0F59E27CF22CA709C6439 /* Storage.swift */, + 62D28F4F2D17540F500472D60E991FC7 /* String+MD5.swift */, + B95C7BFEC1CDF29695328A9DCF746795 /* TVMonogramView+Kingfisher.swift */, + 1C739B3A8EED462322A08F10D243BAE6 /* UIButton+Kingfisher.swift */, + 2BCCBEDCD22DC7F0FE533D49617EB2D5 /* WKInterfaceImage+Kingfisher.swift */, + 33C40BBFA96335AA690A0CAE969DDBD7 /* Support Files */, ); name = Kingfisher; path = Kingfisher; sourceTree = ""; }; - A81D0C9204148385800E9406239ED789 /* UITextField+DDCategory */ = { + 433797EAC882BDCA76CBF83F381BBABD /* DDBaseSwitch */ = { isa = PBXGroup; children = ( - DD3B7CDE1ED4737841DC86337C34CB1A /* UITextField+DDCategory.h */, - 304994798CCDFA55DBD2260E3A7C0B30 /* UITextField+DDCategory.m */, + 011FD654828A5E2CA8BFBE2BB080E15F /* DDBaseSwitch.h */, + 87D5941B2ADFCAB567FA9C59C9702BE0 /* DDBaseSwitch.m */, ); - name = "UITextField+DDCategory"; + name = DDBaseSwitch; sourceTree = ""; }; - A992D37A340E28F148C9CD1B6EF13F41 /* DDBaseCollectionViewCell */ = { + 44F7EB8877467CB34C80B59EB4CB4A1F /* DDBaseScrollView */ = { isa = PBXGroup; children = ( - B110E14993BA628C03E784EC20D250D2 /* DDBaseCollectionViewCell.h */, - 0540B7376A7488B6BB1B632766911E50 /* DDBaseCollectionViewCell.m */, + 4BD16989233DEC0EAF9163AC4121FF46 /* DDBaseScrollView.h */, + 00B86B4238576B0A6C7EA80D078C1B61 /* DDBaseScrollView.m */, ); - name = DDBaseCollectionViewCell; + name = DDBaseScrollView; sourceTree = ""; }; - A9ADCA37D3E112AA3874EF8EB56C3EEE /* ControlView */ = { + 47EB040D861F0E7815833EEA596B81C2 /* DDWebImage */ = { 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 */, + F50A85F23DB3670CBB61983D42325893 /* UIImageView+DDWebCache.h */, + 78AC6660C7FB04EB23F0BF1D0B3EA719 /* UIImageView+DDWebCache.m */, ); - name = ControlView; + name = DDWebImage; sourceTree = ""; }; - AAB0A428F9453F043D4DDBA9915C71EC /* Frameworks */ = { + 490B232AEDEB6B870E312059748184C9 /* OCLog */ = { isa = PBXGroup; children = ( - 943676080B627E6DB9224A27EA838242 /* Bugly.framework */, + 5927B9EC34CF6DA5023F1C46B6B43CD0 /* DDOCLog.h */, + ); + name = OCLog; + sourceTree = ""; + }; + 4B53FA09419FB8F220E6E98F5080DCB1 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 563DF075B1A377F596B58666C02936CC /* jcore-ios-4.2.1.xcframework */, ); name = Frameworks; sourceTree = ""; }; - ADA8C0C1EE33CB56E1582C3399CBED71 /* UIBarButtonItem+DDCategory */ = { + 4BA8E9613291C2CCEA7D7FF7714B5C19 /* DDAutoUIKit_Private */ = { isa = PBXGroup; children = ( - 30D781AC3C405856C160630398633026 /* UIBarButtonItem+DDCategory.h */, - 7118AE0E0A3BCFA850CB5C2126039708 /* UIBarButtonItem+DDCategory.m */, + A5C924DB562B5A9157005183A61F78F2 /* AutoUI.swift */, + DB471C642EB34E6BE8F01C6216FEA467 /* Support Files */, ); - name = "UIBarButtonItem+DDCategory"; + name = DDAutoUIKit_Private; + path = DDAutoUIKit_Private; sourceTree = ""; }; - AE4AE764AE95859A6932C9B4DF768CA7 /* Support Files */ = { + 4C3F5D78A5E344FB4710DF80EC9DE8BC /* Core */ = { 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 = ""; - }; - AFCBE20995F4E11273CEF77A6D8BB3F8 /* UINavigationController+DDCategory */ = { - isa = PBXGroup; - children = ( - 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 = ""; - }; - B766943F85CDDA854E65D09BF0DD0B1A /* Support Files */ = { - isa = PBXGroup; - children = ( - 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/MJRefresh"; - sourceTree = ""; - }; - B7C44A8BD6655A418A2B19F03740AA50 /* Support Files */ = { - isa = PBXGroup; - children = ( - 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 = "Support Files"; - path = "../Target Support Files/DDMAMapKit_Private"; - sourceTree = ""; - }; - B87CC612AC329E2C11E606632F569089 /* Resources */ = { - isa = PBXGroup; - children = ( - 6043CEF0DBE369C4C26DD004F6118A1E /* en.lproj */, - ); - name = Resources; - sourceTree = ""; - }; - B8F824D5E46628C5C3F7071E9E9EB921 /* DDBaseCollectionView */ = { - isa = PBXGroup; - children = ( - A2751AA5A22F3247BC0019FA460876B3 /* DDBaseCollectionView.h */, - 2CC7D35DE0658E1E65BD001B3AFA5702 /* DDBaseCollectionView.m */, - ); - name = DDBaseCollectionView; - sourceTree = ""; - }; - BA968BED8A9226671ED5DE8B49052341 /* DDTextView */ = { - isa = PBXGroup; - children = ( - A19CBEEE4117AAD18E8F494E0ED107BA /* DDTextView.swift */, - ); - name = DDTextView; - sourceTree = ""; - }; - BB3E62E29FF66D3EE48A73727C6DE909 /* UIButton+DDCategory */ = { - isa = PBXGroup; - children = ( - 6237638D1EE25F6E83492D1AD59EC726 /* UIButton+DDCategory.h */, - E547F94527C61B623B7692BFFA58A7A7 /* UIButton+DDCategory.m */, - ); - name = "UIButton+DDCategory"; - sourceTree = ""; - }; - BC6244C5E3A6C26E402B1DD89382DC37 /* DDDateKit_Private */ = { - isa = PBXGroup; - children = ( - 8636C7D8EDC1EB0B5DDB91C8267CD036 /* DDDate.swift */, - 7B04355A3FB38B4D1C46EB203110833E /* Support Files */, - ); - name = DDDateKit_Private; - path = DDDateKit_Private; - sourceTree = ""; - }; - BD1B1B05A356FD1A97F21350946965D6 /* Base */ = { - isa = PBXGroup; - children = ( - 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 = Base; - sourceTree = ""; - }; - BEF1CA10A4093181D3F7CA841BF0E472 /* DDView */ = { - isa = PBXGroup; - children = ( - B9ECEDC5B8D579BEB835DFDEB9046C52 /* DDView.swift */, - ); - name = DDView; - sourceTree = ""; - }; - BF3DB338D40A3D4E395F642471F1CBFC /* Overlay */ = { - isa = PBXGroup; - children = ( - E06781D7B5DE80C2713CA0D5AE9B60DF /* MABaseOverlay+DDCategory.h */, - C3EB24F4485698DF0313E5B14C03D447 /* MABaseOverlay+DDCategory.m */, - ); - name = Overlay; - sourceTree = ""; - }; - BFAAE6BCAE55FD78F1B336043AC66A35 /* Support Files */ = { - isa = PBXGroup; - children = ( - 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 = "Support Files"; - path = "../Target Support Files/DDProgressHUDKit_Private"; - sourceTree = ""; - }; - BFC454BEA02294D5F394B7E7696E32BA /* Core */ = { - isa = PBXGroup; - children = ( - 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 */, + 93953438C7847BC10CB6D8CE72332FB5 /* UIScrollView+ZFPlayer.h */, + F4BC498AE00FB76C5D1E643882957B08 /* UIScrollView+ZFPlayer.m */, + CD676FDE4E4D758581197A7BB38EC06E /* UIViewController+ZFPlayerRotation.m */, + 5E3AFACC2958AE263F4DC7AA4DFBA6C1 /* ZFFloatView.h */, + F921163045E931B469153423DF1B23DD /* ZFFloatView.m */, + 685AAE8626FFB044E491839EA1AE043F /* ZFKVOController.h */, + B063FA266C282EAFDB9AA12BA5BFDF08 /* ZFKVOController.m */, + A8D570BCD1CECC9A0823EA4C9E1D6B30 /* ZFLandscapeViewController.h */, + 3C0C25B49BD53F96C514E15B4669C4B9 /* ZFLandscapeViewController.m */, + 529098BF095FDF966BB0C87BD9C50986 /* ZFLandscapeWindow.h */, + F35F39BD99E98FB46CF1B393680B988F /* ZFLandscapeWindow.m */, + 7B0BC6C34D5DACF09568881AC14F98DB /* ZFOrientationObserver.h */, + 6B2A584C07E29F371576F096BDFEDD76 /* ZFOrientationObserver.m */, + 365BECFE3ACA2123A3FE62FC16189B16 /* ZFPersentInteractiveTransition.h */, + 44251D79E3CF70706B8F34DB409652E3 /* ZFPersentInteractiveTransition.m */, + BF3673B49F09BAC6900C8BA25BF4DCA2 /* ZFPlayer.h */, + D8F227D5D68ADD3C74755F408D3393E8 /* ZFPlayerConst.h */, + A102EC55EA836A841D7DE393469035B3 /* ZFPlayerController.h */, + BDB09E101FA047859063CEE71FB35C93 /* ZFPlayerController.m */, + C42AD4008CAF52D99B0A5EC0626FB27D /* ZFPlayerGestureControl.h */, + 07836296D8BA406CCA3977BA36F255BE /* ZFPlayerGestureControl.m */, + 2546320FA557E55667BE189ABE849B34 /* ZFPlayerLogManager.h */, + 6AB528A1B975B3C2034CDED6750905A6 /* ZFPlayerLogManager.m */, + 1C47797277477319BB9140FCFEB3972F /* ZFPlayerMediaControl.h */, + 346C2ED81B703129EE19E024234EFFD8 /* ZFPlayerMediaPlayback.h */, + 21D94222DA66800B1EE3962C2ED2479B /* ZFPlayerNotification.h */, + 566EE0EF1200976E825C76C079C39F5F /* ZFPlayerNotification.m */, + 7030BC12F220D1700C320AACB831A219 /* ZFPlayerView.h */, + CA6CE727FB080198540D2C3A407DBEF6 /* ZFPlayerView.m */, + 54474303245141ABEE828DB13E805DFE /* ZFPortraitViewController.h */, + 472C95310D3E9326325D48CDD3A9B277 /* ZFPortraitViewController.m */, + EF2A8113E9DE65767CE9D7CC56250105 /* ZFPresentTransition.h */, + 48329013E34142821D40FA4D80F06EDC /* ZFPresentTransition.m */, + 02C13D7C293C466E0360052DBFF396A7 /* ZFReachabilityManager.h */, + FBF0C446F4AD671B951E117B047D58E7 /* ZFReachabilityManager.m */, ); name = Core; sourceTree = ""; }; - C011768CD96FC65421AC1E578AB900BC /* DDBaseViewController */ = { + 4C8E45A151CA2825D8F2560EF382E1D7 /* AMapSearch-NO-IDFA */ = { isa = PBXGroup; children = ( - CA7E506535DBB32097276C5F234E50C4 /* DDBaseViewController.h */, - FBD2A9F38E80A5B854035F6E481BA91C /* DDBaseViewController.m */, - 62AA07FCE520802478748E03B492206A /* Resources */, - ); - 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 */, + B528A531E143180E82A288067D0377BB /* AMapCommonObj.h */, + 2290050181557ABDD89151183EF2B605 /* AMapNearbySearchManager.h */, + 7BCB04E25582D341B33598FB35D40FDE /* AMapNearbyUploadInfo.h */, + B1398556B97E813F5A8270C9233DDC90 /* AMapSearchAPI.h */, + BDF566D8391B1ED54BE4454556053B41 /* AMapSearchError.h */, + 3F96AEFBFDFBBE687D261F1ADFA1A5E9 /* AMapSearchKit.h */, + 26A2E988B0E144175C54E387D5439905 /* AMapSearchObj.h */, + EA7478A7825E79D1C54DCB975DFE9FA7 /* AMapSearchVersion.h */, + 671EE4224D078E210166F1597CB1FCA1 /* Frameworks */, + 9570BC23F11BFF91BEC2C8CCA1A5781F /* Support Files */, ); name = "AMapSearch-NO-IDFA"; path = "AMapSearch-NO-IDFA"; sourceTree = ""; }; - C6EB97A839CE7EB0D9B0236F87B217AA /* Resources */ = { + 4CF35BBC3DB7FF9684B6FB7DA9CED751 /* Resources */ = { isa = PBXGroup; children = ( - 73817A468E3633742396D024AD025E6A /* MJRefresh.bundle */, + D15783D27881441824AD940668BCBD65 /* DDBaseViewController.xcassets */, ); name = Resources; sourceTree = ""; }; + 4DFD2BE30D5FB5ECBEC891EF027E36CD /* Support Files */ = { + isa = PBXGroup; + children = ( + 5916768C215C18F79CC9FE8C20A326C3 /* AMapFoundation-NO-IDFA.debug.xcconfig */, + 24D419A749A3EF2DB63614969FABCCBA /* AMapFoundation-NO-IDFA.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/AMapFoundation-NO-IDFA"; + sourceTree = ""; + }; + 4F6BA5913EF60A1D0A902EBB997F7A83 /* UIBarButtonItem+DDCategory */ = { + isa = PBXGroup; + children = ( + AA67B0669E9AF92C8466EE207049D025 /* UIBarButtonItem+DDCategory.h */, + E58AE775FD469CACC6E857C5744573D1 /* UIBarButtonItem+DDCategory.m */, + ); + name = "UIBarButtonItem+DDCategory"; + sourceTree = ""; + }; + 511520EA748BBECC0A835586F9DDBB91 /* RxCocoa */ = { + isa = PBXGroup; + children = ( + 38B3C4A9564C4C0152FC378BECB78BBD /* _RX.h */, + A6AB124C92496A27782E3881CA0AE52D /* _RX.m */, + 97A57E6647F42B87160F851992C14F3C /* _RXDelegateProxy.h */, + DB23628E9D8ED8F2A61914339839CB93 /* _RXDelegateProxy.m */, + D9067A036606DA7919DB719E91C4BDCE /* _RXKVOObserver.h */, + 8482B2B8C9C28ABD46B989FF22D3EA3B /* _RXKVOObserver.m */, + 7B146DAB3B0F2D4D2148D23245570341 /* _RXObjCRuntime.h */, + 52C50037DD90E5A587B72957FB017716 /* _RXObjCRuntime.m */, + C5D441FC219D479DF04DC7900A078A9D /* Bag.swift */, + 700F8F1B44C665355740785F2A3A4B2E /* BehaviorRelay+Driver.swift */, + BBC5438ACEDEF6D854CFDFF1367A0FE8 /* ControlEvent.swift */, + C7DCEF4622623F43A005D529D79F285D /* ControlEvent+Driver.swift */, + 1F3E133440B92A7064598D733291ACB5 /* ControlEvent+Signal.swift */, + 4ECAECEC96421914C54723F1E59D553E /* ControlProperty.swift */, + 5DBDCBE3CFF85FEA9F92DDAE38A78646 /* ControlProperty+Driver.swift */, + D2EBCDEA0E18CFB49CDFE9A4AEA421A4 /* ControlTarget.swift */, + 2E533C5837506931185AA2A80EB49E5E /* DelegateProxy.swift */, + 9C47E977F821F85D602A3B26EDC351C7 /* DelegateProxyType.swift */, + 0DE9018BD5105B76C813A2AFD2640AF7 /* DispatchQueue+Extensions.swift */, + 4FA83B8A7AA08A8094261110F8AB52E9 /* Driver.swift */, + 76E60CD55C6020A770B1F80F87EE77A9 /* Driver+Subscription.swift */, + 4C316AFF5F31FD73A1072563D126E34B /* Infallible+Bind.swift */, + 3A72BBBF3A4AD8500A8EE38B2BA3FF16 /* InfiniteSequence.swift */, + 62D3EA982927D46430AF9EA0FC945EA6 /* ItemEvents.swift */, + FD422C83BC57172173F0F98093036145 /* KVORepresentable.swift */, + 4107E70F84423A8E0BDB9EC90133CBD7 /* KVORepresentable+CoreGraphics.swift */, + 9CFC001257A1B40FCBC356E384C2A4AF /* KVORepresentable+Swift.swift */, + F4F040872596CD5B6DB008D070998948 /* NotificationCenter+Rx.swift */, + FDEB3B847B55ED766DA3517ED93D6160 /* NSButton+Rx.swift */, + 353E568A1A831B3A346D0130295CF756 /* NSControl+Rx.swift */, + E89C69CB893B3D1E247117A7CC7AA719 /* NSObject+Rx.swift */, + BA475FF1F106BB339064D815BBBAA32E /* NSObject+Rx+KVORepresentable.swift */, + 85DE57206B61F81DC9B2B0AB92F8EFBB /* NSObject+Rx+RawRepresentable.swift */, + 22D9C5FE1273030D15B6763B6B54B6B7 /* NSSlider+Rx.swift */, + 6DA3BAAFA9B542232B974AFFA95DA561 /* NSTextField+Rx.swift */, + 3D431EA69A167891A4820C57419741E6 /* NSTextStorage+Rx.swift */, + 976FF2E2E06321631D7456A718FDD8E2 /* NSTextView+Rx.swift */, + DC4533F08B18238EC5C852E1B136CC7F /* NSView+Rx.swift */, + 361F71DB6C83855F5354208ECE297AD4 /* Observable+Bind.swift */, + 672D4B18EDC8DDAAAB9027065A18B509 /* ObservableConvertibleType+Driver.swift */, + 363F011DC1FF87C3247411AFB1659531 /* ObservableConvertibleType+SharedSequence.swift */, + 173AC395C60982B555B99DF5D9A6CAB6 /* ObservableConvertibleType+Signal.swift */, + 6137F8F3FC4F62A185DE46FE7984DCA9 /* Platform.Darwin.swift */, + 0BB9413189F199CCC7631A86CAB55B7B /* Platform.Linux.swift */, + 56D827DD71933586827C60C59B2F324D /* PriorityQueue.swift */, + 51384E5611E36C571C0066EA9BD9137F /* PublishRelay+Signal.swift */, + C62BA54A7F1E2E94374E39E7C525C272 /* Queue.swift */, + A528AF6CA50672282B779DDDF556B1A2 /* RecursiveLock.swift */, + EA620F5C15E32DE573BBB863557DC00F /* RxCocoa.h */, + 337AC09FE0D05A9DA699E817FC6F5F51 /* RxCocoa.swift */, + 08362B5B123C99899B66EC9798D6CEDB /* RxCocoaObjCRuntimeError+Extensions.swift */, + 6B3F358B2F807033C4AE34511667F880 /* RxCocoaRuntime.h */, + 3A4F4C4A9DE17BCCC7B4B7C711D146E1 /* RxCollectionViewDataSourcePrefetchingProxy.swift */, + 073916E9CDC05F41D3F48519DA970F64 /* RxCollectionViewDataSourceProxy.swift */, + 9BAF498497DC998D3292C123DAB26FC8 /* RxCollectionViewDataSourceType.swift */, + 0A0F6B89029BFCFC9259FA080CC8A169 /* RxCollectionViewDelegateProxy.swift */, + 32F084C19384365A8CA7A0C4615145E4 /* RxCollectionViewReactiveArrayDataSource.swift */, + 71925ACFA5858C8058296B18B41DDA5B /* RxNavigationControllerDelegateProxy.swift */, + 21C371879B967B4F6AF7396CA5CA5C04 /* RxPickerViewAdapter.swift */, + EE6BA1F6EEFAA0B4CE781C96EFC1C2A5 /* RxPickerViewDataSourceProxy.swift */, + 928616C4F91F5DBEC11DCC224AA38C60 /* RxPickerViewDataSourceType.swift */, + 2103AD375C76744409D72BA18D2FE29F /* RxPickerViewDelegateProxy.swift */, + E5C202FD09C449B1262D8F9D37A402C1 /* RxScrollViewDelegateProxy.swift */, + E0B6C77B4BA6348B8AF0C7C8B2FC8DC6 /* RxSearchBarDelegateProxy.swift */, + 187FD280B9D20CA290879CC2937434C4 /* RxSearchControllerDelegateProxy.swift */, + 464CD8F4570B51C519E09AFA41112A3F /* RxTabBarControllerDelegateProxy.swift */, + 72E802F37C854A4FF90F1A66060A25DE /* RxTabBarDelegateProxy.swift */, + C2051AA305B91B42DE51F92A963FF8B8 /* RxTableViewDataSourcePrefetchingProxy.swift */, + CC307CBB38D0D9E2417E63C5486C26F0 /* RxTableViewDataSourceProxy.swift */, + 724722D5D6003BD8B23E0DB7A876F56E /* RxTableViewDataSourceType.swift */, + 579DEE906EE62807C6C862D8B7313D2B /* RxTableViewDelegateProxy.swift */, + E3E34A1BE9FBEF78F5423C6DCCC3CF1F /* RxTableViewReactiveArrayDataSource.swift */, + 824856A69D944DFA92D760070A3D0B4C /* RxTarget.swift */, + A7097C3D39B1944CBC369F5EE9EB0271 /* RxTextStorageDelegateProxy.swift */, + 7DE136CDA8F1AE0B45CDEBCDE4544398 /* RxTextViewDelegateProxy.swift */, + 3F3DE80888D43D3C9951DE4D84D5D1BE /* RxWKNavigationDelegateProxy.swift */, + 8BD85E8CC11408A4E1ED3804A999F74B /* SchedulerType+SharedSequence.swift */, + F87CD582B270498DA448191B454F7B14 /* SectionedViewDataSourceType.swift */, + 900F09E3AB18DCC591F8FFCDC5623C90 /* SharedSequence.swift */, + 647065FD7DD8B6206A2F633440F1D513 /* SharedSequence+Concurrency.swift */, + 6DBBA4C8C9F3F577C4C974504503BE0C /* SharedSequence+Operators.swift */, + FFCC15F5CC62820A85821DC00CF32079 /* SharedSequence+Operators+arity.swift */, + 808DFCFFFA7B6209039E67CB49C61F63 /* Signal.swift */, + 106934C177203CE79035726700083CB4 /* Signal+Subscription.swift */, + 5B0D82385BA0EB5E491ADA1E1C8A41EC /* TextInput.swift */, + 9D5673F98454B8ECA0782B1C3CB6F38D /* UIActivityIndicatorView+Rx.swift */, + 9E955CE6C1C09B352957B302A7537C11 /* UIApplication+Rx.swift */, + 069987F7BCEF63BB37E8B372A97D7FCE /* UIBarButtonItem+Rx.swift */, + 82E906B38F805356ADC3DDA8356B65A4 /* UIButton+Rx.swift */, + FD34685F95073E4F2CEF63EABFFA0452 /* UICollectionView+Rx.swift */, + D30FF4C708DCD643551784C15B84203F /* UIControl+Rx.swift */, + E2FD49D762AD163F73F2C7101303D81E /* UIDatePicker+Rx.swift */, + A8D5FF5C9DE17D7A3F5AA39571E95E70 /* UIGestureRecognizer+Rx.swift */, + CDD03AB7725994DEFC16D81601725E5D /* UINavigationController+Rx.swift */, + 46E4D4512F13DCFD1212B1D250330DC9 /* UIPickerView+Rx.swift */, + EC57A02B7CA9FDB37D02FCA6A5F82488 /* UIRefreshControl+Rx.swift */, + 274E947A2A873E3FD5362C0F2FD472C0 /* UIScrollView+Rx.swift */, + DF34887BDD05FF791AFEFEE1D447CDE8 /* UISearchBar+Rx.swift */, + F436E50F7B6231BE467F1FB4FB09205E /* UISearchController+Rx.swift */, + 167FF3D82D5CD13770F8DFA047AFF24E /* UISegmentedControl+Rx.swift */, + CBC27A72198BDB7C38AF24FB25452AAB /* UISlider+Rx.swift */, + EA27C19567ACF0C7770E8705376CBE2B /* UIStepper+Rx.swift */, + BCD740B82CE0D5EECF2564CCEDCB5CEA /* UISwitch+Rx.swift */, + C608E77AD8C1F7B28CFB6089484542BE /* UITabBar+Rx.swift */, + C1A39B00A644818BCB0CA5B5000A6DEA /* UITabBarController+Rx.swift */, + 295A6E787530D5136253F0A207197D98 /* UITableView+Rx.swift */, + 054A22F617AAEA4D7A89E272ACAF94D0 /* UITextField+Rx.swift */, + 9F96F0483BB088A4D422BA70EDCEB693 /* UITextView+Rx.swift */, + 4374971A6F77EA988C483A0D5EB207B4 /* URLSession+Rx.swift */, + D0214A5F180FC37AD90D8AA4364FFB20 /* WKWebView+Rx.swift */, + A9D0C4E6DC121551264BC65AD5CD6E9D /* Support Files */, + ); + name = RxCocoa; + path = RxCocoa; + sourceTree = ""; + }; + 51FF7642C068D33930ABF0F243C89790 /* Resources */ = { + isa = PBXGroup; + children = ( + 41B1F2387D17F0545EEAA28FC56789B5 /* ZFPlayer.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + 5270AF12D833E033DD0E7ED651B39303 /* IQKeyboardManagerSwift */ = { + isa = PBXGroup; + children = ( + 34CC3770E898F07F459877A63FAEB43E /* IQBarButtonItem.swift */, + 9B3709D9480CB26E4BBA3335187F937C /* IQInvocation.swift */, + 26574936449535B509BE5C6D0034E0C7 /* IQKeyboardManager.swift */, + 472562C8601F869521F331AF37C73900 /* IQKeyboardManager+Debug.swift */, + E4EBB71FA963D8F2A4864B1F3103DDB7 /* IQKeyboardManager+Internal.swift */, + 5B4298074354977BE3B096F2404B2CEA /* IQKeyboardManager+OrientationNotification.swift */, + A8A034D8983AE3073E69ECB1045061D1 /* IQKeyboardManager+Position.swift */, + 58D379C0B9889D93B56811DE0AFFD019 /* IQKeyboardManager+Toolbar.swift */, + D1B398DD661B46203B21F05443005216 /* IQKeyboardManager+UIKeyboardNotification.swift */, + E8F3B8B01FCE5825085A99950D9F7F28 /* IQKeyboardManager+UITextFieldViewNotification.swift */, + C5D99EFA6A36CB89EF3FD2F10CC0779B /* IQKeyboardManagerConstants.swift */, + 7A9228500518E4F48822A587C40F419E /* IQKeyboardManagerConstantsInternal.swift */, + F83BF3B2775AF797F44994385B764802 /* IQKeyboardReturnKeyHandler.swift */, + 49173471BB6AE2908BD9989328E1333C /* IQNSArray+Sort.swift */, + FCE5F3359795423CB6F03A90926A420D /* IQPreviousNextView.swift */, + 987456B03A4C2A7639CFD6B8CC8245B9 /* IQTextView.swift */, + 478DFBF13B36D4A09093D2C16A33EAE6 /* IQTitleBarButtonItem.swift */, + 175055EB2724632F731192715848AF5C /* IQToolbar.swift */, + E62D8BC57B064B2B77157DB54B023CC1 /* IQUIScrollView+Additions.swift */, + CE25309EE1995BE5DFA583C1FDFB26D8 /* IQUITextFieldView+Additions.swift */, + 333F2DD39100144CEC674B19431775F8 /* IQUIView+Hierarchy.swift */, + 027E9F99FC3E914592E499094AFBE708 /* IQUIView+IQKeyboardToolbar.swift */, + D50725068B2B8D4A638C632229E93A05 /* IQUIViewController+Additions.swift */, + AE7EF1CD0E8A141A2A8949A86FA4F7A8 /* Support Files */, + ); + name = IQKeyboardManagerSwift; + path = IQKeyboardManagerSwift; + sourceTree = ""; + }; + 537261CA76F3C10B89C77A6A590DF219 /* DDControlsKit_Private */ = { + isa = PBXGroup; + children = ( + 010686C2C11B4F9A64D4C64BB7C368A7 /* DDAttributedString */, + 858E9D63ECAF77ADA2C3CAEFD9762085 /* DDButton */, + B4ABE87C471295E773960AE3C9A80BB7 /* DDCollectionView */, + B2831F28A541E71675AD558885A236A6 /* DDCollectionViewCell */, + E1B5550CF5DABF4FD83024E4AA6A0620 /* DDImage */, + F524C5DB952E85AF1668CA38F55EEE95 /* DDImageView */, + 9EAB3E1D2705F6848575DA13A15798CB /* DDLabel */, + 0441063FE6B521B154BAF6FC917EE09E /* DDNavigationController */, + 1209AA35427699C5413FE4B1395F5886 /* DDScrollView */, + 8D0085FADD8C2D5065B17D739F801672 /* DDSwitch */, + DD5E9197A6D475E9BF0DD418DF2C86CB /* DDTableView */, + 045A25DED361681A0217635512ABF51D /* DDTableViewCell */, + 174C03FC909B1B474BE70A1ED4662847 /* DDTextField */, + DE747B6C64D1DF3C22A0AE0A18E2F6E5 /* DDTextView */, + 584A2BB1BDB6E62BE12107B6CC821BCF /* DDView */, + BB88774D84C82088571F5C9DFE01C8A1 /* DDViewController */, + 6F971A8D0CC42B615933D9443B274D4C /* Support Files */, + ); + name = DDControlsKit_Private; + path = DDControlsKit_Private; + sourceTree = ""; + }; + 54FE5A936280F865FBFD90207EF951B1 /* DeviceInfo */ = { + isa = PBXGroup; + children = ( + 076767C801825F6661A6B2EABC90BB53 /* DeviceInfo.swift */, + ); + name = DeviceInfo; + sourceTree = ""; + }; + 5563892E4A676B2D6243AF7B9BF38360 /* Pods */ = { + isa = PBXGroup; + children = ( + 566929E219C642EE9B6A9C02ADCF8DCA /* Alamofire */, + 315A377F76ABA2FCE5B34DE84AFFE85A /* AMapFoundation-NO-IDFA */, + BE4853A5ACF449BF7A06F5463F3BBAC5 /* AMapLocation-NO-IDFA */, + 0BAD2BD8181DC3F640E65E3FCAC57AC4 /* AMapNavi-NO-IDFA */, + 4C8E45A151CA2825D8F2560EF382E1D7 /* AMapSearch-NO-IDFA */, + 3CC4FB549A4BAAE4384562048F5BF236 /* AMapTrack-NO-IDFA */, + 8ACF22DFB914DBFB315F23BA7E6DE28A /* BRPickerView */, + 66AA40126F2CCD0AC1C48B1C06F9F38C /* Bugly */, + F0A5925BA726C988CFD1FDA382A9F499 /* DDAudioPlayerKit_Private */, + 4BA8E9613291C2CCEA7D7FF7714B5C19 /* DDAutoUIKit_Private */, + 62B1B42537BEFC46FE24833CAF3CF1DD /* DDBasicControlsKit_Private */, + ED39FB55128DDF2E701E3B5037E926B4 /* DDCategoryKit_Private */, + 0CA4E13A177B5FDACAD65045A5720C52 /* DDColorKit_Private */, + 537261CA76F3C10B89C77A6A590DF219 /* DDControlsKit_Private */, + FB25B28967923BE1AB2A53FF1F06D2E5 /* DDDateKit_Private */, + 1A8D62B10C5AF3502FFACE9916741232 /* DDFontKit_Private */, + 8B45C7E1796D633814EEFBD8B92296C7 /* DDLogKit_Private */, + EC98C18FB60570E049C52ECF0340B3DC /* DDMAMapKit_Private */, + D6E97C4E9EA86A787CD2A6A085EC5A5A /* DDNetworkingOfAlamofireKit_Private */, + 606E0C5BD7F90410DE1C16499566423D /* DDPersistenceKit_Private */, + AC1220A51A3A8372D8F673772884F74D /* DDProgressHUDKit_Private */, + 0CCBDDAB42963DABAD971294CCB61FB3 /* DDTimerSwiftKit_Private */, + CCF913B1EB797E06D30F9401F42EDEE0 /* DDToastKit_Private */, + 2B5270A00DD5517501F3D23340FFAAE7 /* DDUIGestureRecognizer */, + 654ACE95A0205DA958BCB165B2FDFAAA /* DDUtilsSwiftKit_Private */, + 39210B51AA08B3682AC65CE6B80B26BB /* DDWebImageKit_Private */, + B17F1FAD2F5D9DD4D06432FF980F4D3C /* DDZFPlayerKit_Private */, + 2A051FA6137F72254E5FA5C196522DD5 /* ESTabBarController-swift */, + 5270AF12D833E033DD0E7ED651B39303 /* IQKeyboardManagerSwift */, + E2208680D52430D6C35B0443D012F5F7 /* JCore */, + C1DD1F556FB9E73BD19B5F65FE112BFF /* JPush */, + B028BA23AADF8D1EAFA51BC6D4500204 /* JPushExtension */, + 28F03B0068D5D7936BD4A87C986341D4 /* JXCategoryView */, + 430A45A5689723437D4186EDCB8FACDD /* Kingfisher */, + B3C84C09E647847F0FAD3A86BE7606B6 /* MJRefresh */, + 511520EA748BBECC0A835586F9DDBB91 /* RxCocoa */, + 051238DAA44DFD96414D640722555FE6 /* RxRelay */, + 92859CD3DCC94AED1591C50BCF6705D3 /* RxSwift */, + 8F6EB5F2B4C234BBBE83210D0A2F4853 /* SnapKit */, + 61B92168AFF342DA8CC45A96A8627DDF /* SwiftEntryKit */, + B35BE7E5BDF470422BD705F1A2AB0C0A /* SwiftyRSA */, + 155F89C8645AD5442995B6F73C13E835 /* ZLPhotoBrowser */, + ); + name = Pods; + sourceTree = ""; + }; + 566929E219C642EE9B6A9C02ADCF8DCA /* Alamofire */ = { + isa = PBXGroup; + children = ( + 5F0264C64E4D4EEBFC45EDB818692C7A /* AFError.swift */, + EF9E861E526CE09753752959D2C22F99 /* Alamofire.swift */, + 706FDF0D1877BEEB3B72FA667455D2DE /* AlamofireExtended.swift */, + D9330F01C623DE38FFCB15ED382FE3CB /* AuthenticationInterceptor.swift */, + 6826F805FE0700E370FA67DC727188AA /* CachedResponseHandler.swift */, + C0C758BFBC8029DB40D25E71D3D8A697 /* Combine.swift */, + 6E70B43D74E84F3AF81B44C10CEE495F /* Concurrency.swift */, + 8F2D1811B0CE60B062C36A276194EE6C /* DispatchQueue+Alamofire.swift */, + D5BD9AA5C1EDB586301FBC4F00CA9DA3 /* EventMonitor.swift */, + 33D7B7C9CF4C295AA54334F0046EE901 /* HTTPHeaders.swift */, + ECA03F3180D61A6BD34ABCA471E0E9E4 /* HTTPMethod.swift */, + CAEE195988CEB44DDFB617A767DA79C0 /* MultipartFormData.swift */, + 6718DD82D44F6D3C76210C501B76CC99 /* MultipartUpload.swift */, + C1CC91C3C6F18C1A2E4AF06AD477BBFD /* NetworkReachabilityManager.swift */, + F2FA7600FD210D1D7792C7FE040B8F72 /* Notifications.swift */, + 7620AA5191F723BF4C54EEC3DADD4114 /* OperationQueue+Alamofire.swift */, + 1B5E3560B2BC7A5346466FF078AC933B /* ParameterEncoder.swift */, + DE2E4FB8E2BEBDB74313DD9741AA817D /* ParameterEncoding.swift */, + B99629159D169DC44E98D52B41782603 /* Protected.swift */, + 4EECC192C97F684F343F01A7084A8535 /* RedirectHandler.swift */, + FD2E6735A74591F3855974973FC5689E /* Request.swift */, + 8DA168B63AF6CDBCA12F68E28D35EA3F /* RequestCompression.swift */, + B6144FA59B6FF2280AADF2A1E80920CF /* RequestInterceptor.swift */, + 19EC3671AF1CF02CE56689C97034073C /* RequestTaskMap.swift */, + 6574527F11AEEBBBD10C4390745E3850 /* Response.swift */, + 75749C34D0921498DA5CC1013286AF0B /* ResponseSerialization.swift */, + 0C1F47EC9BB1BB5960178F72DFDF3EC2 /* Result+Alamofire.swift */, + 6CD1C09E35E0FC2C32AA7FCD3AB19C76 /* RetryPolicy.swift */, + 9C964BB96BC503D38ECEF14B560F872C /* ServerTrustEvaluation.swift */, + FEB0151009BEFAB52EBD2964A7F66675 /* Session.swift */, + 3D21AD7E4E73EF184AB3068EECD2A7EE /* SessionDelegate.swift */, + F5D8441F4871B0BD7CD000D8C762976F /* StringEncoding+Alamofire.swift */, + 4D6F7F53AE7D5AC577979EF2B3DBC8B3 /* URLConvertible+URLRequestConvertible.swift */, + 68DFBF76A76273EE9FDFD63BDBBCB093 /* URLEncodedFormEncoder.swift */, + EEEBB5686AE36966FA52BE0268F8C03C /* URLRequest+Alamofire.swift */, + 9F6328AB4247551B7DE7F9C59FD87B9C /* URLSessionConfiguration+Alamofire.swift */, + 517F7F3A30F03E692CE1A650603F160F /* Validation.swift */, + 791E08DB00654B84A990D1A6A06A65D9 /* Support Files */, + ); + name = Alamofire; + path = Alamofire; + sourceTree = ""; + }; + 584A2BB1BDB6E62BE12107B6CC821BCF /* DDView */ = { + isa = PBXGroup; + children = ( + 3F3181A148D887E3096CEC99ACD066B5 /* DDView.swift */, + ); + name = DDView; + sourceTree = ""; + }; + 5C4A6C33C8017A97B7FDC414152009BA /* Frameworks */ = { + isa = PBXGroup; + children = ( + 651C50A5293CFA8AF6E49315DE95D318 /* AMapNaviKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 5E1060B898DF14F0972A9C7AA8734523 /* Support Files */ = { + isa = PBXGroup; + children = ( + 691D9E9385F20E953E1AE85EA68C818A /* ZLPhotoBrowser.modulemap */, + F054E815A01F551C4709627619DC1C26 /* ZLPhotoBrowser-dummy.m */, + E02AA8211E3860A9D1394A4F71C9E513 /* ZLPhotoBrowser-prefix.pch */, + A0F6F9650EA4876E4F733985399251AC /* ZLPhotoBrowser-umbrella.h */, + 664C6499AF8F8C9EF762E80985B7EE41 /* ZLPhotoBrowser.debug.xcconfig */, + DB482E4D85EE363F0FA6A5BF8274328E /* ZLPhotoBrowser.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/ZLPhotoBrowser"; + sourceTree = ""; + }; + 5E7ABF732CB46DE327C917C9622C77AE /* DDBaseAnimation */ = { + isa = PBXGroup; + children = ( + 35C57DC6D676459C5E65D23D5D79D829 /* DDTransitionAnimation */, + ); + name = DDBaseAnimation; + sourceTree = ""; + }; + 5ED715DC93AB5CBB3157392A113B15F0 /* Support Files */ = { + isa = PBXGroup; + children = ( + 3BD5049C7E7CA0CAEC7AF90BFF1FBF37 /* Bugly.debug.xcconfig */, + 86E84E635C9634F8B4A86B85323CCEBF /* Bugly.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/Bugly"; + sourceTree = ""; + }; + 606E0C5BD7F90410DE1C16499566423D /* DDPersistenceKit_Private */ = { + isa = PBXGroup; + children = ( + 3CDFC2D26E2DBC26781C63F8B6332D47 /* DDKeychain.swift */, + D402B51A9DB073C438DF9D308EA3A172 /* Support Files */, + ); + name = DDPersistenceKit_Private; + path = DDPersistenceKit_Private; + sourceTree = ""; + }; + 606E541A554E7213E0F67B87850C8119 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 777978BB5AFBB61A80F9C8C7C019E864 /* jpush-extension-ios-2.0.1.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 614CE5127731C4DC14E683B7A9E54ABC /* Support Files */ = { + isa = PBXGroup; + children = ( + C784DE2783BBE47C30888C60B164359B /* DDAudioPlayerKit_Private.modulemap */, + 0973E02134AB7228128B912DFBDC1A81 /* DDAudioPlayerKit_Private-dummy.m */, + 5D93F9547BC10C3613AED97CF14CA44C /* DDAudioPlayerKit_Private-prefix.pch */, + EA2CA4BE59635BC23B48410658B33970 /* DDAudioPlayerKit_Private-umbrella.h */, + 5F1BB63D8B7BAEB5A5EEAECFC339D3D2 /* DDAudioPlayerKit_Private.debug.xcconfig */, + 6A731A1029480E71095336F261F38A56 /* DDAudioPlayerKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDAudioPlayerKit_Private"; + sourceTree = ""; + }; + 618B0BFBDD53622BBB5283391411FACE /* Support Files */ = { + isa = PBXGroup; + children = ( + 3015EFFDE4AEC9AA8AEF53C903A9B7F9 /* DDTimerSwiftKit_Private.modulemap */, + 3BA3686CE2A2D9793C12B1A45C688717 /* DDTimerSwiftKit_Private-dummy.m */, + 37781223FDEA4CDD8B66B49C14C53909 /* DDTimerSwiftKit_Private-prefix.pch */, + 3D362CACDECC39F763D908ADADD45CF7 /* DDTimerSwiftKit_Private-umbrella.h */, + 07BA75F921FF2FB8447132132B1EBA65 /* DDTimerSwiftKit_Private.debug.xcconfig */, + 55A73A83E02FB8CE59B41F07F08BED25 /* DDTimerSwiftKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDTimerSwiftKit_Private"; + sourceTree = ""; + }; + 61B6AF7F89BA45A67C11CF3391B733DB /* UITableView+DDCategory */ = { + isa = PBXGroup; + children = ( + 79DE57AFCF3D85D40852FAE0F484297F /* UITableView+DDCategory.h */, + BD6B47A1E312055E908C51240253355E /* UITableView+DDCategory.m */, + ); + name = "UITableView+DDCategory"; + sourceTree = ""; + }; + 61B92168AFF342DA8CC45A96A8627DDF /* SwiftEntryKit */ = { + isa = PBXGroup; + children = ( + 19B9354E9C62D4DD6CBAC98AE3EEC6C0 /* EKAccessoryNoteMessageView.swift */, + 89BB2C0640C2B0E5D1D4D2E03014C4E2 /* EKAlertMessage.swift */, + D201B56339807B0E62CBD0BE2B42DAA7 /* EKAlertMessageView.swift */, + DF716F2C9DEA3B5F5789AAF4A3C22572 /* EKAttributes.swift */, + 4FED76C158E912D16AC748290C45725C /* EKAttributes+Animation.swift */, + E1FE83E885A66F2D4CFE3AB3BAA6CA98 /* EKAttributes+BackgroundStyle.swift */, + 97FD6AFF1EF039947760BB9F66E85243 /* EKAttributes+DisplayMode.swift */, + 5F72F44CBE8D21DA5C8B40CAC4E77DA1 /* EKAttributes+Duration.swift */, + 23E262A76C5B93AEA1EBED9CB7FCD754 /* EKAttributes+FrameStyle.swift */, + D56FF46099C41C4179B37FC480371703 /* EKAttributes+HapticFeedback.swift */, + 0AA35FFE21EFE7F544B7669258B5B48A /* EKAttributes+LifecycleActions.swift */, + 87DD00BAA79B5606679A2FD8E1301979 /* EKAttributes+PopBehavior.swift */, + 6D9D590E09C0FE35D12401482B553D98 /* EKAttributes+Position.swift */, + 493FE6A76079482FF5CF8F3C2444570F /* EKAttributes+PositionConstraints.swift */, + 3CA8C889B446D161712CE863896F7BE4 /* EKAttributes+Precedence.swift */, + 092FCDE3C6F546FA0AFC66C4FC04738B /* EKAttributes+Presets.swift */, + 733931B6C2A40207036CBE720D7C8314 /* EKAttributes+Scroll.swift */, + DC6E85FE7043840E8B131B9D323E2E7A /* EKAttributes+Shadow.swift */, + AD0E5BBF85B2ACF004F02C14D63AEDA7 /* EKAttributes+StatusBar.swift */, + 6588ECF58B11157B57FA577E1004B8D2 /* EKAttributes+UserInteraction.swift */, + B205A73F66530DAB4EBBB7E3E82982DE /* EKAttributes+Validations.swift */, + D10BE5B1E91883492D614DE95EA20871 /* EKAttributes+WindowLevel.swift */, + 5309D1F5E2F946EF2A2332477D59DE9D /* EKBackgroundView.swift */, + 5898EB1A38FE7DFF749668F98E44E76B /* EKButtonBarView.swift */, + C1579615F46DE90B7B70707FE940822D /* EKButtonView.swift */, + 8A2BCF52911FB19A8EE866CA74632138 /* EKColor.swift */, + D77AF7173B411EDDD82CE635A945D855 /* EKContentView.swift */, + 46D66D101D84367BD65081A1A244748A /* EKEntryView.swift */, + E6B0C031C1EE54B51D9A123D0FF03124 /* EKFormMessageView.swift */, + 82CA52148C0CB755C01EB157B7F47220 /* EKImageNoteMessageView.swift */, + 6BF6D1863CEF8B524B3F2C483E002C4E /* EKMessageContentView.swift */, + 9B4AFAD429770C88E5AC0799A78C98BA /* EKNoteMessageView.swift */, + 071F6EF4999EC4B47F4E90AFDFD09665 /* EKNotificationMessage.swift */, + 6C5F422FD2A112BA0F9EC79C48A85A03 /* EKNotificationMessageView.swift */, + 9ADB5050DFAFC9CCC277FA6CEF1CA00B /* EKPopUpMessage.swift */, + 54A278A43D5D0935670C359D5992B9BA /* EKPopUpMessageView.swift */, + 9A078AADB3C65F533A3FB7BA287791FC /* EKProcessingNoteMessageView.swift */, + 494476B60FCCACEA7079BCEB0080148A /* EKProperty.swift */, + C6F1F16135F50452C526976E6E09EC5E /* EKRatingMessage.swift */, + BD914B4E305D6933F1457453419AA739 /* EKRatingMessageView.swift */, + AA5EBAE398E16FF5FCD459C111346D33 /* EKRatingSymbolsContainerView.swift */, + 8D37A0365AA292CAFBC01F43B562A1F3 /* EKRatingSymbolView.swift */, + 21ED43FD5413676EAFFB003362ED05D5 /* EKRootViewController.swift */, + 59B4A65EEF12ABF3FDD775A6E06F6E12 /* EKSimpleMessage.swift */, + 24B7E9080BFE6C997B5F17619677113E /* EKSimpleMessageView.swift */, + DA50CE27FFED03713C09CBB312C7134E /* EKStyleView.swift */, + 43BAAF4125B2B7C23F8E906FA3E7997C /* EKTextField.swift */, + 0A141F031A91702235B81A1981810925 /* EKWindow.swift */, + 84E7276764C1790CA4337E2C99402488 /* EKWindowProvider.swift */, + 2620ADC3E00641CA2E744DB523F945EC /* EKWrapperView.swift */, + 0A67710C307807C49ADAF30467B0BF5C /* EKXStatusBarMessageView.swift */, + 4BE5A2A37B6BBA9E90F42A753FEC5689 /* EntryAppearanceDescriptor.swift */, + 56BD7AE02538E9E4B1C6E71F2D3A1635 /* EntryCachingHeuristic.swift */, + B585CBB58624E0EF2F21DF85166782A0 /* GradientView.swift */, + 8F68F524E9F1B440B700B4C7896C0D57 /* HapticFeedbackGenerator.swift */, + AFA7D24EC65CBCA265744E7840B2C390 /* QLCompatibility.swift */, + 01680E8EE498EBF8533C103BE519E18B /* QLUtils.swift */, + 33E92A2F19E132481C1946D42238AB68 /* SwiftEntryKit.swift */, + 183FADBDD16AA89A3E8E81FEF5238A02 /* UIApplication+EKAppearance.swift */, + 03C9A785D0B18A0810916235B2933B6A /* UIColor+Utils.swift */, + 429B086293BF9ADAF7607AA1E330A07A /* UIEdgeInsets+Utils.swift */, + F1BE0A303E1D150EB7C53DF7B78CD4A3 /* UIRectCorner+Short.swift */, + ABB640A1023AB534787D176E8F155036 /* UIView+QLContentWrap.swift */, + 6283B713B7BC1CC1ED7247C918B65B3B /* UIView+QuickLayout.swift */, + F4D11B919FDBFAB3BF936AE6C7687EF1 /* UIView+Responder.swift */, + 45A54B0C5BBD3E42F6B6CE069DCEA312 /* UIView+Shadow.swift */, + 9AB31A604EE13F7F78D7A3D5138A9F5A /* UIView+Utils.swift */, + 58D96755ED59599A7393B524B505DFDD /* UIViewArray+QuickLayout.swift */, + C3BD92302FEDA7627442CC6D3E1463AF /* Support Files */, + ); + name = SwiftEntryKit; + path = SwiftEntryKit; + sourceTree = ""; + }; + 62B1B42537BEFC46FE24833CAF3CF1DD /* DDBasicControlsKit_Private */ = { + isa = PBXGroup; + children = ( + 118B5424D4A9C2AF765BE1B9D3E9B2C8 /* DDBasicControls.h */, + 5E7ABF732CB46DE327C917C9622C77AE /* DDBaseAnimation */, + 2D3B1C7BD93273C134D8742623677734 /* DDBaseAttributedString */, + 0864A82D8901E7784028CB9365C22353 /* DDBaseButton */, + BF36CB21850FE4F84B6911CA1A38496C /* DDBaseCollectionView */, + BC29BCCB25FA0971085321CC7361F8FD /* DDBaseCollectionViewCell */, + 84C791BFB6E5DCE386E43CD6E2AB350B /* DDBaseImage */, + DEBFBDDA7D0C46E062E6AE8E39A4EF9B /* DDBaseImageView */, + 6B746C8A1732B053E60E49E91CFC23B2 /* DDBaseLabel */, + E20BBB04CD1F68B30D601B626A95B81B /* DDBaseModel */, + 1D97C49343AA5D2F683F60CB39519518 /* DDBaseNavigationController */, + 44F7EB8877467CB34C80B59EB4CB4A1F /* DDBaseScrollView */, + 433797EAC882BDCA76CBF83F381BBABD /* DDBaseSwitch */, + 73B00BDD7C352DEFE86F0A5A437A0496 /* DDBaseTabBarController */, + E7A22735D30342E5C51125BDDD3DBCC8 /* DDBaseTableView */, + A6E5ED90700A844580AC2D97E6BB9768 /* DDBaseTableViewCell */, + 1C7ED58A0EC6D5B4419804AC3DA647F5 /* DDBaseTextField */, + A9E70579215F95A073D30EDF2B639000 /* DDBaseTextView */, + 20EF80455E6EF0EC42C4B5EF55FEAAAB /* DDBaseView */, + B4194E659BDCC1CD7A70B6140E53A608 /* DDBaseViewController */, + 2D544A47FCBA754F64635F9D77C5E21D /* DDBaseViewModel */, + F92370935006EF4669AF06F3505AF17E /* Support Files */, + ); + name = DDBasicControlsKit_Private; + path = DDBasicControlsKit_Private; + sourceTree = ""; + }; + 62C66F19A86BE640EFB9D17F33179FB8 /* ijkplayer */ = { + isa = PBXGroup; + children = ( + 177208FE0AC55F8049B84AC4A658A345 /* ZFIJKPlayerManager.h */, + D8D9D3488435411716F91703BEEAAD6B /* ZFIJKPlayerManager.m */, + 9B5D586B0EAAE260C37987076C6924F0 /* Frameworks */, + ); + name = ijkplayer; + sourceTree = ""; + }; + 654ACE95A0205DA958BCB165B2FDFAAA /* DDUtilsSwiftKit_Private */ = { + isa = PBXGroup; + children = ( + 9BA2580FDE302D5F9D69594CAB4ADE0D /* ApplicationInfo */, + 54FE5A936280F865FBFD90207EF951B1 /* DeviceInfo */, + 3B55AF39F8ABB7C82B5F32E66B397B6C /* FileManager */, + 25A9B0E2B11C4B1CC827143ABA31B6EE /* Support Files */, + 0F194E80077E5C12B1744E617A93D58D /* UrlLinks */, + ); + name = DDUtilsSwiftKit_Private; + path = DDUtilsSwiftKit_Private; + sourceTree = ""; + }; + 656EC7A0B4ABD0C73B6AA7713489F7A8 /* Core */ = { + isa = PBXGroup; + children = ( + AAACDCDF1E3045C2A52F24EF41A8CF93 /* NSBezierPath+SDRoundedCorners.h */, + 640F3877CF8ACAA8F297346C0E90EE19 /* NSBezierPath+SDRoundedCorners.m */, + 78A38AB1BEB652BC61BB8A18964890EB /* NSButton+WebCache.h */, + 90E2B1053E365BDBC042170E244B454E /* NSButton+WebCache.m */, + C89CAF766E92084E7C51D42506C29379 /* NSData+ImageContentType.h */, + 05EE5B7FBF70FB0D3E8168D27131C004 /* NSData+ImageContentType.m */, + EC5143172543E45623D048866016F143 /* NSImage+Compatibility.h */, + F54196355345A9E53E3144536DE2C295 /* NSImage+Compatibility.m */, + 4C4E2D5039129C5DDB1F47E2757EF79E /* SDAnimatedImage.h */, + F5FD663E24FE150C8C601B02693B4C52 /* SDAnimatedImage.m */, + 92113897F9D3BCD0846AFEF58957AC41 /* SDAnimatedImagePlayer.h */, + C7EB26E761192D0B395DF0707941F389 /* SDAnimatedImagePlayer.m */, + 6239957C7FB0A9E328D7664131986E99 /* SDAnimatedImageRep.h */, + 80ED5FFB60A048F9671F865E87B8FC10 /* SDAnimatedImageRep.m */, + 76CA884C548C653E6CE037C7CC1BBFCA /* SDAnimatedImageView.h */, + 0133C5CA64F9E7B9EC4CD81E278FC21B /* SDAnimatedImageView.m */, + F6AA9C5D53F1567D9AE1F9181A613231 /* SDAnimatedImageView+WebCache.h */, + BD515F0CAB886D098AE122B690E42E07 /* SDAnimatedImageView+WebCache.m */, + 9EF86C643214B5EBA4C54E281D711C33 /* SDAssociatedObject.h */, + E2C324A3842EE13126CA3965565EB4EB /* SDAssociatedObject.m */, + BD282A85AB1DA40361B8DA2454E817CF /* SDAsyncBlockOperation.h */, + 18E5259DE6739903A925CE7A065B477A /* SDAsyncBlockOperation.m */, + BB35825F8353ECDF2C2601C5F963D471 /* SDDeviceHelper.h */, + 2939C7819E5A12221623F773DF77D831 /* SDDeviceHelper.m */, + 80FB4A5751EFEB9401FA87191AA925BC /* SDDiskCache.h */, + 0269F9F0417F84BB1AE11F8BD8C62FE4 /* SDDiskCache.m */, + 9FFD1D36EFD317E6742A34B511D00A64 /* SDDisplayLink.h */, + CE4A5A2856DE56035A12D615A3F3DD8B /* SDDisplayLink.m */, + D91C2D9AA7C3D028D3B93A66682B4DA9 /* SDFileAttributeHelper.h */, + 6AEE0EF6ED79650A924807A8C4FE9EDD /* SDFileAttributeHelper.m */, + 2E76E03EB8A76B24B807AE35F123F29A /* SDGraphicsImageRenderer.h */, + C821320F799CABA2E06EB3ABA63B772E /* SDGraphicsImageRenderer.m */, + C8B0D6325FCFFB55E1659D7F832108F3 /* SDImageAPNGCoder.h */, + D3A02AF1607699BF2EC288EDC813DED8 /* SDImageAPNGCoder.m */, + DB7034410550A92E93A2C9B271A497AB /* SDImageAssetManager.h */, + 0D80DB2D7D6078201B7CAE9618F76E6E /* SDImageAssetManager.m */, + B5964D4803CFB8CEED0898C4438E9707 /* SDImageAWebPCoder.h */, + 4BB996E3B95737B5D391C477524EABA6 /* SDImageAWebPCoder.m */, + ACF41B361E7A1201408BD2B0F41CA56D /* SDImageCache.h */, + C3F1C0CEB0DB2B062B28FB2207CB90A1 /* SDImageCache.m */, + 1C755B12374C83F0BFBD661E2D8291FF /* SDImageCacheConfig.h */, + 3A2DAD51E238CE866DB40C7706EA0095 /* SDImageCacheConfig.m */, + D42114A9586DCA09FC1B2CA5FD4ABA79 /* SDImageCacheDefine.h */, + 3549C98214FF7D02981B0D98B6CA79C0 /* SDImageCacheDefine.m */, + AFBCF61F57F5531AEB77AD9F2F8139E0 /* SDImageCachesManager.h */, + 3F71FA752AF4AD1CBE961DD87253EB4E /* SDImageCachesManager.m */, + 5972E9A326023DFD310F055DBD1F380F /* SDImageCachesManagerOperation.h */, + 72DF7CD3DFEBD01540DA11A3E3670683 /* SDImageCachesManagerOperation.m */, + 30DC0F7A4DF3F1BA2A24DAC6C68F6846 /* SDImageCoder.h */, + 69BFB506BEE1F9BC2B4D02D3B312774E /* SDImageCoder.m */, + 6D55C1752A31C6C0A5E904BF38DBE902 /* SDImageCoderHelper.h */, + 74371AA102C375B6A9C05FF5FCA3DA2D /* SDImageCoderHelper.m */, + B8B0D1CB245A7A15A69EB8319C090B73 /* SDImageCodersManager.h */, + 332A98704F5F6B076FE302371087FD46 /* SDImageCodersManager.m */, + 51D325EC40F0DD46BB8D12D5D7B875B6 /* SDImageFrame.h */, + 700FF3BAAB754294200B6E7F3EF8D104 /* SDImageFrame.m */, + 280D5EF936A2580A91A42298138CA9A0 /* SDImageGIFCoder.h */, + 68F85173D63717128F10859F4B88DA83 /* SDImageGIFCoder.m */, + 89922CA1364279A9646DACAA3A0E8A80 /* SDImageGraphics.h */, + CCC376750741E45723F18EB3F2CDB897 /* SDImageGraphics.m */, + 963A2DE2F4BBFB477750B663CE353E85 /* SDImageHEICCoder.h */, + 7DBC035755B1803221013993CD09AA72 /* SDImageHEICCoder.m */, + 52FF72F067B913274A50FC6B65772CB3 /* SDImageIOAnimatedCoder.h */, + 371181C2A15EBAA5B0FC3C4B09A77A72 /* SDImageIOAnimatedCoder.m */, + 82265B14E1FD3E8BCA9A4F14AE02C00A /* SDImageIOAnimatedCoderInternal.h */, + 16AADA904B2D52C7DC15CC5DF9F2E04D /* SDImageIOCoder.h */, + 8D34581D4140A6F9CF8AFA006881900D /* SDImageIOCoder.m */, + 6AE4B09D86F4BCF782B0FB4761A2A097 /* SDImageLoader.h */, + 597F86830C65AB4C2AE7E9C009BDE567 /* SDImageLoader.m */, + D205DA3C2D498E828945512898EF98CF /* SDImageLoadersManager.h */, + 4B06F452379CFBDFA87F490D0D16A862 /* SDImageLoadersManager.m */, + 0C0A07F4C1C07D539C706BB2B48E2FC8 /* SDImageTransformer.h */, + C72BB617E03A0A34B429A279437CAAC3 /* SDImageTransformer.m */, + C93424CC43819631E99AF0EDE85708E7 /* SDInternalMacros.h */, + 90CDCC90EADCC2E4AFE40E1023BD763C /* SDInternalMacros.m */, + 9E8A6022C8CF2F4E01ABDC35B4A847E9 /* SDMemoryCache.h */, + 804FAC52FFE0F7C9D4D1080C11E626AF /* SDMemoryCache.m */, + 6882F146555E57F04598A96644573544 /* SDmetamacros.h */, + DBF3F7C6011FFF9525AF4F9EA7BE014C /* SDWeakProxy.h */, + 2E0FE5903EDDBECEBCA6986831792A1D /* SDWeakProxy.m */, + 1A01F98506172B29980B23B134681B21 /* SDWebImage.h */, + 4272B0BD4A2BE9F19990E0C6EFE3E0D7 /* SDWebImageCacheKeyFilter.h */, + 0676D11EA6C44D22CBBC194815F5219D /* SDWebImageCacheKeyFilter.m */, + E5B0C98663D838E4AC1976ED6637FAB8 /* SDWebImageCacheSerializer.h */, + E8018EE8173E2ADC8F9F24B8825ADA4B /* SDWebImageCacheSerializer.m */, + E4C32471D17BB084A1CD575044F9A328 /* SDWebImageCompat.h */, + 3690225A06D71775C52F0A985F305B9F /* SDWebImageCompat.m */, + 273B2F6C4A42A708F9FCB7CE4D6A29B3 /* SDWebImageDefine.h */, + 5779AD5E1855533B91C0B5650313C5C9 /* SDWebImageDefine.m */, + 620077EF75E49FBE7A7363E2C6238E3A /* SDWebImageDownloader.h */, + C33E70937C0C17785ED8150A2138651B /* SDWebImageDownloader.m */, + B5C295419664BF01C1693D120BA2E13A /* SDWebImageDownloaderConfig.h */, + AE4CEF76965ADC8D00CA001C1C34D24E /* SDWebImageDownloaderConfig.m */, + BADC12FA4AA758B1B0C6DF41C2335A12 /* SDWebImageDownloaderDecryptor.h */, + 4C2E8959AB3413D81CEC970D12580AAF /* SDWebImageDownloaderDecryptor.m */, + 24036AE1074A61EA6BF3D1255E28EDB2 /* SDWebImageDownloaderOperation.h */, + 8102F50289748651CB2EAFBAF3BA5C39 /* SDWebImageDownloaderOperation.m */, + 5C6AC059E218D7AEFD5B53F1027C9ADF /* SDWebImageDownloaderRequestModifier.h */, + 5BEB9FF0C6D5FB00AB9A5220587A1880 /* SDWebImageDownloaderRequestModifier.m */, + 7609B2B03558E4594631C731EDB10728 /* SDWebImageDownloaderResponseModifier.h */, + 44322A20D771C3F7CB740629F767410D /* SDWebImageDownloaderResponseModifier.m */, + A52E72F667979A0CE385524329010DEE /* SDWebImageError.h */, + 09D5F331C929DE88E6D493A76A9C52ED /* SDWebImageError.m */, + 7B180D09C8D79EDD7046D53796A145C3 /* SDWebImageIndicator.h */, + A66217270CAC388AB3038D0BAB44FC2A /* SDWebImageIndicator.m */, + E20835D5C6EAC4F7C2A3C5DA4E39C61E /* SDWebImageManager.h */, + E9D0106AEB9F5B493847B8C852170099 /* SDWebImageManager.m */, + 1C8CA376E5E1A2B463770BB2B11FA09A /* SDWebImageOperation.h */, + 06EC634AB32CE67F5935F6F0A5AD69C4 /* SDWebImageOperation.m */, + C314B40C7A1C38F08D09515E5EF67E13 /* SDWebImageOptionsProcessor.h */, + 0623870DBBA652E111B0F87326866E00 /* SDWebImageOptionsProcessor.m */, + 22BBEC4A4C4FB540F8486D7554952E1A /* SDWebImagePrefetcher.h */, + D2D1C35B8672819CB5EEBA2B4A5653E4 /* SDWebImagePrefetcher.m */, + 4E2DDAE53B52C281E0BA6830BEA149E7 /* SDWebImageTransition.h */, + 893FD45896F746FE284051A52A86426C /* SDWebImageTransition.m */, + 66DE3E48FBE5ADAA762D97363A6CBAFA /* SDWebImageTransitionInternal.h */, + A7CCE309D4DCC6DC87793B104A23D2FC /* UIButton+WebCache.h */, + 7B3B4DCE1064643B0D0CBB423131D13D /* UIButton+WebCache.m */, + 8479CE8561D03238FA223751194AC999 /* UIColor+SDHexString.h */, + 170E2432ECA7E947647DFD3DA349D579 /* UIColor+SDHexString.m */, + 1F5F02C9DB38EB4B37BC0F8D03E8544F /* UIImage+ExtendedCacheData.h */, + BF14882D2225FFAC5F8C9AF35B7D8D95 /* UIImage+ExtendedCacheData.m */, + C944813E51D25FAADC9BEBD18CBF3C24 /* UIImage+ForceDecode.h */, + 455BE24F5F1C7200E7C8BB60ECD4DF6F /* UIImage+ForceDecode.m */, + B69172B807351CBD0D60A9BF9CE3B69D /* UIImage+GIF.h */, + 189DB1C08EA125B2655BB4B8D723FC1A /* UIImage+GIF.m */, + C4C8C391E4D58569D9C9704C1F5C01E4 /* UIImage+MemoryCacheCost.h */, + 4CF20B8C9D05A0854551BD468863606A /* UIImage+MemoryCacheCost.m */, + C18639A09489747C02189F6DF46B16F5 /* UIImage+Metadata.h */, + 07ED5DCEF943738AA5553A19DAFB929F /* UIImage+Metadata.m */, + 0B3B56DA53E0A9A31116268B6E73E181 /* UIImage+MultiFormat.h */, + DFFACA8234356B3D1F64075F951F65C2 /* UIImage+MultiFormat.m */, + 98DEA0F029FC14297B49A679EB4136F5 /* UIImage+Transform.h */, + A64069EFDAF134990E8EADE3999D32C9 /* UIImage+Transform.m */, + 1DEF627035151120436DEA02CE1FC1F8 /* UIImageView+HighlightedWebCache.h */, + 5CC34AF3EA0D7317091783EB80B1BD0F /* UIImageView+HighlightedWebCache.m */, + 3D6E7FAE8A3D8AA188E7627A096DF2EF /* UIImageView+WebCache.h */, + 2DF705364F0BC43C833CC7D012C90C75 /* UIImageView+WebCache.m */, + FBDE697F9795769E18B4581F176558C0 /* UIView+WebCache.h */, + B4C3C9C8871C77E6AB3DC47E8E275CD0 /* UIView+WebCache.m */, + B9595AC6B4E211E882A35383440D86A0 /* UIView+WebCacheOperation.h */, + E8D67EC62C6E6D8910BC259BBDE81532 /* UIView+WebCacheOperation.m */, + ); + name = Core; + sourceTree = ""; + }; + 66AA40126F2CCD0AC1C48B1C06F9F38C /* Bugly */ = { + isa = PBXGroup; + children = ( + B2D46C97501B060008D850965ABE739B /* Frameworks */, + 5ED715DC93AB5CBB3157392A113B15F0 /* Support Files */, + ); + name = Bugly; + path = Bugly; + sourceTree = ""; + }; + 671EE4224D078E210166F1597CB1FCA1 /* Frameworks */ = { + isa = PBXGroup; + children = ( + E396A12942C956AC02AC8C5FF423B112 /* AMapSearchKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 68537AB7F295E107939EBC0CC461CF93 /* ControlView */ = { + isa = PBXGroup; + children = ( + 99C2A3CC9DF59387B3895793F1B686B7 /* UIImageView+ZFCache.h */, + C875871B00E34B57CB9933E8F9A0308F /* UIImageView+ZFCache.m */, + 3216FEB31DC406BCF4654E8BE74EFE08 /* UIView+ZFFrame.h */, + 5AE2FE6CDA623B5D1DC005A03600F5E0 /* UIView+ZFFrame.m */, + 06DF5453A700B20897B8134227B3DE0D /* ZFLandScapeControlView.h */, + C16007D5A25CDCDC00B9C26CE43B7D82 /* ZFLandScapeControlView.m */, + 042B658BD51FCB5C4C38CB4002CECD7E /* ZFLoadingView.h */, + B4E4B4ADD21DE33904C43AF84FB5BE55 /* ZFLoadingView.m */, + 5DCF5D4CAE57B21EC2F4AB5A1A708765 /* ZFNetworkSpeedMonitor.h */, + 2CBC6225504BE0C1B1C22A9B7E0D5004 /* ZFNetworkSpeedMonitor.m */, + 02866DF792FE073CC505E4F79CC17826 /* ZFPlayerControlView.h */, + DFE38A401804114EABFCAAC4A185896C /* ZFPlayerControlView.m */, + 515845AD1E4F81D84BB2B852F2EABB53 /* ZFPortraitControlView.h */, + 391D39FB31B7FE1E6330FC05742F83E7 /* ZFPortraitControlView.m */, + A24AB7AE2B655E74C3508490DDB36F30 /* ZFSliderView.h */, + 0FF528BDA2A44ED52A07746A34A62DC8 /* ZFSliderView.m */, + D63E79734F0397E8D93247BDF0B77F9E /* ZFSmallFloatControlView.h */, + D251F6F5E7A097DA804D6B11A84EBCC7 /* ZFSmallFloatControlView.m */, + AC118F61A29BC33C872BEDB062ECAED2 /* ZFSpeedLoadingView.h */, + 372B2A09B3DB27C695D55E8B92716B9C /* ZFSpeedLoadingView.m */, + 1ECA2DBB53DE392B801A4D9D04EE15AF /* ZFUtilities.h */, + D9B630665C6BF531B726AB0B13F27DDE /* ZFUtilities.m */, + BA7726A48CB2001D8D100932F01059D9 /* ZFVolumeBrightnessView.h */, + 6F911AB245724CAA5E6DFF24AAF6038A /* ZFVolumeBrightnessView.m */, + 51FF7642C068D33930ABF0F243C89790 /* Resources */, + ); + name = ControlView; + sourceTree = ""; + }; + 69571EF160AE3788924914AA48194E39 /* UITableViewCell+DDCategory */ = { + isa = PBXGroup; + children = ( + FFB9C7EE34B4C65027FF911301143D82 /* UITableViewCell+DDCategory.h */, + 762E91082B5B8D3E5AA4FDC165589895 /* UITableViewCell+DDCategory.m */, + ); + name = "UITableViewCell+DDCategory"; + sourceTree = ""; + }; + 6A45FA4742042DBA71287249EEE2BCDB /* AddressPickerView */ = { + isa = PBXGroup; + children = ( + 993F005147DF1700EF33D4939308A4E0 /* BRAddressModel.h */, + ED18172DE819A87D89204AFF09EBCE1B /* BRAddressModel.m */, + 14A340D7C2ECDE4CF0E54768D62FC895 /* BRAddressPickerView.h */, + 3FE430B533168DAECFE85F4140191E1E /* BRAddressPickerView.m */, + EA35D0B7B5FB1070B3E164E1D7552E32 /* Resources */, + ); + name = AddressPickerView; + sourceTree = ""; + }; + 6ACC92B69690A32791369EB18CB04503 /* Support Files */ = { + isa = PBXGroup; + children = ( + 66B87680F1A2D0F618A4039EEC7056A6 /* DDToastKit_Private.modulemap */, + 021C02479E90CC819FC3EDB366419AC0 /* DDToastKit_Private-dummy.m */, + 9CD8032029069D4351CFD4CF8DD5E327 /* DDToastKit_Private-prefix.pch */, + D6861993DAD85F0DFAE2BD03B5F7A613 /* DDToastKit_Private-umbrella.h */, + C7D4B86BB67C4C95F5566DC5F3A9AADB /* DDToastKit_Private.debug.xcconfig */, + EF10505DB9EDCB5CF878187F5157FD7A /* DDToastKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDToastKit_Private"; + sourceTree = ""; + }; + 6B746C8A1732B053E60E49E91CFC23B2 /* DDBaseLabel */ = { + isa = PBXGroup; + children = ( + BDAAF4C61B6219986B56EB6F1BE13C49 /* DDBaseLabel.h */, + 6ECBBBC7E0D610B6D7921FC0EB78256F /* DDBaseLabel.m */, + ); + name = DDBaseLabel; + sourceTree = ""; + }; + 6BD6F3023E9642D0F3F1BFCB9D9671D7 /* Support Files */ = { + isa = PBXGroup; + children = ( + 4F64361A4B4659AAE66030A617B1815D /* JPushExtension-xcframeworks.sh */, + FE915BDC07951BED22167C3EB7D0B52C /* JPushExtension.debug.xcconfig */, + F130059A8A3B3BEB905BD9BE9DB282E6 /* JPushExtension.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/JPushExtension"; + sourceTree = ""; + }; + 6BF44152B846B8FD95770C5F5448B1F1 /* Resources */ = { + isa = PBXGroup; + children = ( + 2934BA2CEA013912A529BD258CA78FF6 /* en.lproj */, + ); + name = Resources; + sourceTree = ""; + }; + 6E165D65CAA77E0647D7B948DC25AA2B /* Support Files */ = { + isa = PBXGroup; + children = ( + 28A98C9B5D697744DB95098A8FFF5B8B /* AMapLocation-NO-IDFA.debug.xcconfig */, + 8C5592B2EC56CA21F54F0016BC5A721F /* AMapLocation-NO-IDFA.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/AMapLocation-NO-IDFA"; + sourceTree = ""; + }; + 6F971A8D0CC42B615933D9443B274D4C /* Support Files */ = { + isa = PBXGroup; + children = ( + 1E07A9B1980C5A6518CFD1541079C809 /* DDControlsKit_Private.modulemap */, + E87B136535ED89A2804025D2038C9010 /* DDControlsKit_Private-dummy.m */, + 49CFDE87917E04710ADF2283A1E54983 /* DDControlsKit_Private-prefix.pch */, + B1620DBE640F42A0484DAC836441326B /* DDControlsKit_Private-umbrella.h */, + 39C4AE6A5477E66DB8EF75B3A0C31652 /* DDControlsKit_Private.debug.xcconfig */, + B79D62E22D9848F7996A4C22AD03BA19 /* DDControlsKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDControlsKit_Private"; + sourceTree = ""; + }; + 73B00BDD7C352DEFE86F0A5A437A0496 /* DDBaseTabBarController */ = { + isa = PBXGroup; + children = ( + 8013288FC0E5537A40B5E188A3930002 /* DDBaseTabBarController.h */, + 1DD398B6FCA0459FC7C53C038027EF81 /* DDBaseTabBarController.m */, + ); + name = DDBaseTabBarController; + sourceTree = ""; + }; + 776F208B9E4346014CD19AC9328D0D95 /* SDWebImage */ = { + isa = PBXGroup; + children = ( + 656EC7A0B4ABD0C73B6AA7713489F7A8 /* Core */, + 2D2E788F4FFFC1991A9575E368FFD5A6 /* MapKit */, + ); + name = SDWebImage; + sourceTree = ""; + }; + 78A15EC4BEC5C21C75231A7D0F91CEF8 /* Support Files */ = { + isa = PBXGroup; + children = ( + 373CEB444661E37B54E13728D920DC91 /* JPush-xcframeworks.sh */, + 3CD6AA262FA3C7C56326222F1F962ABD /* JPush.debug.xcconfig */, + 5ADCE33F34B093641FED0F7C8659508B /* JPush.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/JPush"; + sourceTree = ""; + }; + 78E18749496542D85A38DEA0F36C4CE9 /* NSBundle+DDCategory */ = { + isa = PBXGroup; + children = ( + 0705F50356EDCD9449E150194C43FECD /* NSBundle+DDCategory.h */, + C6915CD2CEE7988922F4725DF5020F04 /* NSBundle+DDCategory.m */, + ); + name = "NSBundle+DDCategory"; + sourceTree = ""; + }; + 791E08DB00654B84A990D1A6A06A65D9 /* Support Files */ = { + isa = PBXGroup; + children = ( + 2185B6C19379A6AC7B43E5288C9DC539 /* Alamofire.modulemap */, + 5DAEA17D8EA610C4ABB5439BACEF9627 /* Alamofire-dummy.m */, + F49EE87F10906705F1BD854853A70B20 /* Alamofire-prefix.pch */, + F4441A0FFB90E8AA6B3E93F98CCB2127 /* Alamofire-umbrella.h */, + 4B0D3B7B2BCF78E03CBC19514D0A9270 /* Alamofire.debug.xcconfig */, + E4DA94F0D9E40CDAD90953BB8998CC21 /* Alamofire.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/Alamofire"; + sourceTree = ""; + }; + 7A704C61F12B0F236C499CEAEB171C27 /* Overlay */ = { + isa = PBXGroup; + children = ( + 4F820A7A12E660E164671D6BCCBA7CC8 /* MABaseOverlay+DDCategory.h */, + C1FBDDD488E914C54EEC45235F6F15AD /* MABaseOverlay+DDCategory.m */, + ); + name = Overlay; + sourceTree = ""; + }; + 7D5BB167042E92B0AA7C05DB771006F9 /* DDMAMap */ = { + isa = PBXGroup; + children = ( + B5DE58B68FDF9184858B1FC0B7AB55FA /* Annotation */, + 2B25B145161EC74DD7678FCA74302425 /* AnnotationView */, + B6337BD070DE8F06F51095A5EE1F3B39 /* MapView */, + 7A704C61F12B0F236C499CEAEB171C27 /* Overlay */, + 9E8AFBBDCE50A305250FE14DF45FD751 /* Sources */, + 97CFB21909F317E4017628ECCF35AC7A /* Trace */, + ); + name = DDMAMap; + sourceTree = ""; + }; + 7DEBC69C4C9AC5EFE4D4E8BE9B8475F2 /* DDMATrackManager */ = { + isa = PBXGroup; + children = ( + 76589309CDE359FD002B6DDBBA48F92A /* DDMATrackManager.h */, + 77E921AF98A629DFDC2006CC62BAFCA6 /* DDMATrackManager.m */, + ); + name = DDMATrackManager; + sourceTree = ""; + }; + 7EF786229C89157C7EC0897F34E69BD0 /* Support Files */ = { + isa = PBXGroup; + children = ( + 120A3A405235EC07D3682D06A58DE2E1 /* JCore-xcframeworks.sh */, + 762897DE187CC155AE0155EB3526E9F5 /* JCore.debug.xcconfig */, + 1B5FA0581C54F7D5C0E1F78B9F28D245 /* JCore.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/JCore"; + sourceTree = ""; + }; + 84C791BFB6E5DCE386E43CD6E2AB350B /* DDBaseImage */ = { + isa = PBXGroup; + children = ( + 531BE91522737064C0E7B04FB667ABA4 /* DDBaseImage.h */, + E3C50D22C12C0396D54E5E85E927B93C /* DDBaseImage.m */, + ); + name = DDBaseImage; + sourceTree = ""; + }; + 84C9362A6F7573CCFB73F250015263AE /* Support Files */ = { + isa = PBXGroup; + children = ( + 54318A8730DDA27BF665B8CA1C6B6EF9 /* DDCategoryKit_Private.modulemap */, + 41AB2E3834CD80B47895D2E52F2A5A7F /* DDCategoryKit_Private-dummy.m */, + 93C5C40D839610E5361AAECEAC1B52F5 /* DDCategoryKit_Private-prefix.pch */, + 232C78DA30626E4D5D630977C88C02DE /* DDCategoryKit_Private-umbrella.h */, + 08038D4977DF6872536E3C3FE81F5E0C /* DDCategoryKit_Private.debug.xcconfig */, + 424AEC4F2749338D1A1829FA0453BD22 /* DDCategoryKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDCategoryKit_Private"; + sourceTree = ""; + }; + 858E9D63ECAF77ADA2C3CAEFD9762085 /* DDButton */ = { + isa = PBXGroup; + children = ( + 8E49C8335D1CB2E2C2541F50E6DE520B /* DDButton.swift */, + ); + name = DDButton; + sourceTree = ""; + }; + 89A7CCE7DC89B991916A3BFF15E1E3B0 /* UISwitch+DDCategory */ = { + isa = PBXGroup; + children = ( + 305627E9AB98A769E88C7AFABE7746CF /* UISwitch+DDCategory.h */, + 3CB00C1EF4360C618CCA5A38F658946A /* UISwitch+DDCategory.m */, + ); + name = "UISwitch+DDCategory"; + sourceTree = ""; + }; + 8A60BA43A5EF9ACDC3286BF6168E2558 /* Support Files */ = { + isa = PBXGroup; + children = ( + C649AD052A9CD1609F9AA82081AB17E7 /* DDFontKit_Private.modulemap */, + 6A83F58220ED8E60F55506CCC8E3586C /* DDFontKit_Private-dummy.m */, + 0D2E568296A0A2814A2490F52A3D2D00 /* DDFontKit_Private-prefix.pch */, + 8680F130E7D7A59E0B0522366D478E71 /* DDFontKit_Private-umbrella.h */, + 103AC706506457350FF15C77AFBCF976 /* DDFontKit_Private.debug.xcconfig */, + 5940E321D283F8FD17217BCC63D4005D /* DDFontKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDFontKit_Private"; + sourceTree = ""; + }; + 8ACF22DFB914DBFB315F23BA7E6DE28A /* BRPickerView */ = { + isa = PBXGroup; + children = ( + F82143FE20D3B510205938101A376418 /* BRPickerView.h */, + 6A45FA4742042DBA71287249EEE2BCDB /* AddressPickerView */, + B2AC6E9994512FC1FEAC4FC9D61A7417 /* Base */, + A5035C269FAB5117EA9D274507032233 /* DatePickerView */, + 037745BE3EDB2556E06E65799AAEF246 /* StringPickerView */, + BD86250FD4FF36E6DF2BE628706D1C54 /* Support Files */, + ); + name = BRPickerView; + path = BRPickerView; + sourceTree = ""; + }; + 8B45C7E1796D633814EEFBD8B92296C7 /* DDLogKit_Private */ = { + isa = PBXGroup; + children = ( + 490B232AEDEB6B870E312059748184C9 /* OCLog */, + 9BFF42DD71B606A8F5568FA3BA8D29CC /* Support Files */, + F7E1277C5D7FA7E641510C5ECE51A065 /* SwiftLog */, + ); + name = DDLogKit_Private; + path = DDLogKit_Private; + sourceTree = ""; + }; + 8B747F2CC3FF1D562C3E623FCFEEAC92 /* UIImageView+DDCategory */ = { + isa = PBXGroup; + children = ( + 44A1DBE692BF431955C710EFEA6D5010 /* UIImageView+DDCategory.h */, + D93B6A939DE984F1EB0388D8C75DD180 /* UIImageView+DDCategory.m */, + ); + name = "UIImageView+DDCategory"; + sourceTree = ""; + }; + 8D0085FADD8C2D5065B17D739F801672 /* DDSwitch */ = { + isa = PBXGroup; + children = ( + 01309EBADA81CB2BD2FB50A8AECC3C1D /* DDSwitch.swift */, + ); + name = DDSwitch; + sourceTree = ""; + }; + 8F6EB5F2B4C234BBBE83210D0A2F4853 /* SnapKit */ = { + isa = PBXGroup; + children = ( + 75F647DACAC45348A9F04231C502C7A5 /* Constraint.swift */, + 5A2683005BB6DEE1F6A9C38395DCA7D7 /* ConstraintAttributes.swift */, + FE4B0DCFE0808BFC11475CEC0109B703 /* ConstraintConfig.swift */, + C06E47D0E2F2EE6B7CCF4459A0E8FE31 /* ConstraintConstantTarget.swift */, + B2D27982E1B5C44AEE9B99893A3AAEF6 /* ConstraintDescription.swift */, + 7EE6DD98411B4B480DC229ECBECD6AD7 /* ConstraintDirectionalInsets.swift */, + 3E4F5351005D4800B64116FC1E9C3710 /* ConstraintDirectionalInsetTarget.swift */, + 8A3D76E1EBD6AF7F47748C406FF163CA /* ConstraintDSL.swift */, + C94D52953BBC117BD07F900979E57072 /* ConstraintInsets.swift */, + D8762C90F0EE6C0086B17ABA2A23C6FC /* ConstraintInsetTarget.swift */, + F6E54CBBC5A67ECE4121681BD7AF91C6 /* ConstraintItem.swift */, + 99A4D11FE648A96A5BE41191F5B06135 /* ConstraintLayoutGuide.swift */, + 05A2442920474C19EA2B219E1A9BCB07 /* ConstraintLayoutGuide+Extensions.swift */, + BF97B43039A1F982A20CE0CC4F5AF496 /* ConstraintLayoutGuideDSL.swift */, + 3B8D373C213F8AC8B4B2D5C010D5FD6A /* ConstraintLayoutSupport.swift */, + 431451112586F267C934663C4359E1AE /* ConstraintLayoutSupportDSL.swift */, + E3754C37E46E640F2371B2F9646878CA /* ConstraintMaker.swift */, + AF7E309CD40C8902B3DC69167A80DF37 /* ConstraintMakerEditable.swift */, + 6403C3946D1BA757C724C323A04A5C56 /* ConstraintMakerExtendable.swift */, + 171C168492DAC2775794CCA4EB6C892E /* ConstraintMakerFinalizable.swift */, + 16DED397735FC490E1E2796743323B2D /* ConstraintMakerPrioritizable.swift */, + C3E4DE1E34CD30F381F967C1C8441B44 /* ConstraintMakerRelatable.swift */, + 2FB0C728A4B0E64CD956D4D35B6EFD27 /* ConstraintMakerRelatable+Extensions.swift */, + E20DE510854E5D03F5D7D3BC510E4736 /* ConstraintMultiplierTarget.swift */, + D2ABA5E2F457E5ADA19F79B14FED379F /* ConstraintOffsetTarget.swift */, + 51CB50772BAF3D0328DE0CB9E8F9E354 /* ConstraintPriority.swift */, + BA39B81C9F694AC9835EFD3EF8670823 /* ConstraintPriorityTarget.swift */, + 2817608EDD36410A5DB4FB72F51602FA /* ConstraintRelatableTarget.swift */, + C05571DE1282BD2F8C442DBB7DD55963 /* ConstraintRelation.swift */, + 6A055BE9D13701A22B26256670EADF51 /* ConstraintView.swift */, + 351D70A21EFE25A7DD5501D53307CD41 /* ConstraintView+Extensions.swift */, + A8AF3DFA7313D7AD950DB8A2B53D323D /* ConstraintViewDSL.swift */, + 92E672D36B67460E69224E81585F7781 /* Debugging.swift */, + 135D36C375B935327E65B243CE6E1AEC /* LayoutConstraint.swift */, + E519F3D7EAFE11EC2B0C8CC8524A7949 /* LayoutConstraintItem.swift */, + 7AA55A106289C99447D4B27721243B96 /* Typealiases.swift */, + D9FE411F00585321AC1200E210CE060F /* UILayoutSupport+Extensions.swift */, + C0F50D17189AB90B99F6E88D814A912C /* Support Files */, + ); + name = SnapKit; + path = SnapKit; + sourceTree = ""; + }; + 9198C8BB272E68E46EA29871024C67A0 /* Support Files */ = { + isa = PBXGroup; + children = ( + 32B8F4B00CC214F4ADBA31948EFF1530 /* JXCategoryView.modulemap */, + D72C15D32548DC9CB499C1F695B3FF78 /* JXCategoryView-dummy.m */, + 5A34EA1A0C7A1171809409045CBA66C3 /* JXCategoryView-prefix.pch */, + 39C5A540E8623D397DB9B33C786EEB34 /* JXCategoryView-umbrella.h */, + C1CE8E4465B6CB946C3C52C6C6835E2A /* JXCategoryView.debug.xcconfig */, + C221F9782A9BAE37674AAABFBDD2B7F8 /* JXCategoryView.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/JXCategoryView"; + sourceTree = ""; + }; + 92859CD3DCC94AED1591C50BCF6705D3 /* RxSwift */ = { + isa = PBXGroup; + children = ( + 06D7F9577C67636E31443B3573CA43D9 /* AddRef.swift */, + E07E5EEF70E220B4DF1EFA02EB269F20 /* Amb.swift */, + C28E1A0F48A62F4968CE089921F2BF63 /* AnonymousDisposable.swift */, + 63CD69FD29674D2322AA4E0DA868D754 /* AnonymousObserver.swift */, + 2AAFEF40372B8476A5373AE50FB4DED8 /* AnyObserver.swift */, + 980BE6CAD2A65E7CA227BB5EC5D8BA13 /* AsMaybe.swift */, + 8C394CEBB4546119ECB1C24B64E6ADE3 /* AsSingle.swift */, + AE8430A3BCB9BEDD0313B6C7722F54AA /* AsyncLock.swift */, + 5CF46F080893FF3D38BDE1324FC8BB85 /* AsyncSubject.swift */, + 4FAEC3742F1E09DA62DB97EBD7D8A15F /* AtomicInt.swift */, + 6F24528ECAE39081EE2ABB142D7CCA50 /* Bag.swift */, + 1897387CE50E8C5942286C2C84929154 /* Bag+Rx.swift */, + 386BCD60DA6DBEC2D98AC156696830CE /* BehaviorSubject.swift */, + 49B243634C54B2984100673C44A1395A /* BinaryDisposable.swift */, + EC8044DB1AD06002A95B1ECAB3E16F00 /* Binder.swift */, + BFFC2C3D9D45DCA576D36792FCCC30A9 /* BooleanDisposable.swift */, + FBFC963F935FDE16ACF08B32F7C05419 /* Buffer.swift */, + 4BA0D50EA6D6151A95ABB359E74B3474 /* Cancelable.swift */, + 4D66F6FEF4CF9DF915751A09D68BDE2A /* Catch.swift */, + 10E12EB5C4AABD1DAF088FFB8A129348 /* CombineLatest.swift */, + C9D1D343EEA5C27B4D71F54C04E93242 /* CombineLatest+arity.swift */, + F260A6317D4BC56066E8259CA9DE2026 /* CombineLatest+Collection.swift */, + D7B498F0D77FDF2CEA1A0ED6976D5E80 /* CompactMap.swift */, + 022AD389712FCB24D1EE0385BDC6ACCA /* Completable.swift */, + 9B8597EBAE0BA2A238E46E49308F9191 /* Completable+AndThen.swift */, + CEE5CD9E26178F50D5F9DBB7BCEA887D /* CompositeDisposable.swift */, + 0199FF7AFDA3A15238DDCC6F4C75CF9E /* Concat.swift */, + C5CB79208405463217F0D40ACA654549 /* ConcurrentDispatchQueueScheduler.swift */, + A4F4B7872AC1A1ADC3F4D426CAE827B1 /* ConcurrentMainScheduler.swift */, + C0CEB44EEF2894301EAEEDC8B77D3AF2 /* ConnectableObservableType.swift */, + A50F6C14295C24018D3303C5B335B506 /* Create.swift */, + 2161B7F55B0DE5BE6EFF11A465F486D1 /* CurrentThreadScheduler.swift */, + D0CF26A88667E560740999AB750DAC70 /* Date+Dispatch.swift */, + EA4E09FE12FE17375DB070BB5609959F /* Debounce.swift */, + FB944575C386B1DC0473F6C3B15E2FD9 /* Debug.swift */, + E4F973818D77610A8EB47E58911872AF /* Decode.swift */, + F6EE682CD70262BDA0867C2129E360BA /* DefaultIfEmpty.swift */, + 60449961B188CDECAD8A7797E91F1A1E /* Deferred.swift */, + 5A46E93833CAAF0016F1A076B6A5C84D /* Delay.swift */, + D2BED0B84C9F4F09488DA9F074487C21 /* DelaySubscription.swift */, + 4C99216E5060E42043ED32D42481323E /* Dematerialize.swift */, + 2C0B5C4EEEB02265B88B00F64A69B41E /* DispatchQueue+Extensions.swift */, + C3D984FA15FC54711E4139BFB912617C /* DispatchQueueConfiguration.swift */, + F92315184F69837BBA685B0BE3427A7A /* Disposable.swift */, + 89B784E3FCB395FC266E9DB14E05012F /* Disposables.swift */, + 03257450D74F8F629A0D4EE80801F38E /* DisposeBag.swift */, + E683AE11C689053760361CEC6EDD18CF /* DisposeBase.swift */, + D67851B86363F8528BAC1048E06347AC /* DistinctUntilChanged.swift */, + 46A34A02338061EADE6D0A8E23EC2901 /* Do.swift */, + 5E33BD1641FD5D1D329DEFE1DF206670 /* ElementAt.swift */, + 1799DCB51262DB1F73D655798F3D8AF8 /* Empty.swift */, + E114FC8ABA6674618A8351F359A7663E /* Enumerated.swift */, + 1F46DBBEA65E11053983B2FB2753E246 /* Error.swift */, + 0407C385764BAFECD28D238D0FB930C0 /* Errors.swift */, + 8546678868EA3265DCE799A4719BB8C6 /* Event.swift */, + 2BDF2C5E718C6769207083C6E8EB1A93 /* Filter.swift */, + 6A643FE9C2CBDE246B7B8BECD3F98795 /* First.swift */, + 043C2A0CF70EF451E3F7019DB5C8FBA1 /* Generate.swift */, + 055E3E762F3C890BA7920B0EF52410A2 /* GroupBy.swift */, + CA8F36DD09E2278795519B20F2B4E371 /* GroupedObservable.swift */, + 33D9D57752039D3412720692F13977DB /* HistoricalScheduler.swift */, + EC5209FE25984EFA8CEF289DD32E1CCE /* HistoricalSchedulerTimeConverter.swift */, + D40BB621ACD2745962A92CF9F9DE8C4E /* ImmediateSchedulerType.swift */, + 3CAA888F101891B4378A6B3BF94B6670 /* Infallible.swift */, + 15C920D1845B970208F10EBFB92ED7CA /* Infallible+CombineLatest+arity.swift */, + CE30D79CEAAC1DD7490D2530D0C26C6A /* Infallible+Concurrency.swift */, + B1D08A8BA7B30876E4E67632D41FA753 /* Infallible+Create.swift */, + 59CA523F5ED4C23CE85B1BAF00D65B8D /* Infallible+Operators.swift */, + 3345FC12F5432119241137F410F1F47D /* Infallible+Zip+arity.swift */, + E658E32B7A68DF45947738A024C2EA14 /* InfiniteSequence.swift */, + FDE582DCCB92CD0A144E25D1D8732E7B /* InvocableScheduledItem.swift */, + EDCC6811280C451A00DD856CA774FFEB /* InvocableType.swift */, + C0FCF529FF0989694BF4A872A31F903C /* Just.swift */, + D10E9ABC3A41088CF833628918497FF9 /* Lock.swift */, + 442BF38ACEEB2A95CD854D11C3BB749D /* LockOwnerType.swift */, + 5E1075BF5F2D723818A240EB48553232 /* MainScheduler.swift */, + 74B063AD4097BE8A24E6E731EF2B4A57 /* Map.swift */, + DB4FADDE9C9081AA415889358C397FD3 /* Materialize.swift */, + 1AB94E7718648455CBB26CB8B4D9E528 /* Maybe.swift */, + 53970BE51104CA4805F2DFF4EADEC94B /* Merge.swift */, + D046A9A05FB9780661487BAC2E06C7EC /* Multicast.swift */, + A9CBF9DFB1999D4BE2B957297EDE6B78 /* Never.swift */, + C2389F3A9528A09E817EEDEE24AE13F3 /* NopDisposable.swift */, + B53D381A91BA84278B60E04E0C85EF0E /* Observable.swift */, + DBE7E9FAB60DED8D039B6C14E4B9E1E1 /* Observable+Concurrency.swift */, + 124086291346572E126D220A49243645 /* ObservableConvertibleType.swift */, + 42CE894862A6551F3FD6D62E3B4F513A /* ObservableConvertibleType+Infallible.swift */, + CFBC3C60DDA0053689D7265DE7C13E2C /* ObservableType.swift */, + 80C8F4BD3F97D346DAE783697557BB98 /* ObservableType+Extensions.swift */, + 447B4B856DF296CBC8356A4E4F0DBB49 /* ObservableType+PrimitiveSequence.swift */, + 74D61A5F18EAD8FB7931E73FDEB53F1C /* ObserveOn.swift */, + 8A56480E992760E2D2C10E10DB960885 /* ObserverBase.swift */, + 093EFA1B5B0866A1E1D47F9E287F7BDC /* ObserverType.swift */, + 40F4E5C25156724C2F2D3CF57BF48F05 /* OperationQueueScheduler.swift */, + 626E5D8C1BCE379CFE289243A1B88899 /* Optional.swift */, + 6AF5EC4EA0585807DF927CD85B2F9B19 /* Platform.Darwin.swift */, + 091BE0E4A42182BC24A0EDCEDD9540DE /* Platform.Linux.swift */, + 772D442B7B2EA1769821B341F24CC8B9 /* PrimitiveSequence.swift */, + 9EE2BA020EC3D26D090626F0BAE91E20 /* PrimitiveSequence+Concurrency.swift */, + BFCD53A3C84813D3B134DF865878EC9E /* PrimitiveSequence+Zip+arity.swift */, + 20F3500FF1E044EA580817468A430F1B /* PriorityQueue.swift */, + 4C6624DED0B4B32DD8620EF629949DFE /* Producer.swift */, + 5EA7CDFEB6D29B01715D230F749A288C /* PublishSubject.swift */, + FD687D223885424075A2E4EDD22B9C3A /* Queue.swift */, + A057D8D9ADD5B92BDE58B602D44F3685 /* Range.swift */, + 9353CBDAAC363717113BFB5518B02DCF /* Reactive.swift */, + 18A21A161377B697F7BD65D55700753D /* RecursiveLock.swift */, + 23A2B938F4BD4B9E2AEF9E234DB2D33C /* RecursiveScheduler.swift */, + 3BE7D202B93B07C3559872F2CBB2421F /* Reduce.swift */, + 5B241229C4FAF70B1CE6179F95E5F763 /* RefCountDisposable.swift */, + 2E5EA93FE5870D31B6974C927E031778 /* Repeat.swift */, + F7DE11FA5E00DF3515BBD00DB6F27E24 /* ReplaySubject.swift */, + B91A914628E1A1A1DCE14D0A54FC163F /* RetryWhen.swift */, + 0D3C618870FED685FC45008AF9FCEE6C /* Rx.swift */, + 7D781BACE05EBDA6DDEA3D37FDD11976 /* RxMutableBox.swift */, + 4BF0BF51AB4731B45B8B03E4AD2D7CED /* Sample.swift */, + 6FF4A0F5E61D523DB46B7274B7ED7FE5 /* Scan.swift */, + 862FAE944C2C47A1ACD2D5143AF774C6 /* ScheduledDisposable.swift */, + B393DBDB96336A5D45D2DA641478E65C /* ScheduledItem.swift */, + 1B82825CF8D80E3754F11399F172CDEF /* ScheduledItemType.swift */, + FC525EA2503D26BE1EB7223B4E059630 /* SchedulerServices+Emulation.swift */, + EF4A9EBF87F1DA2CD099964C69FF8287 /* SchedulerType.swift */, + 42E3EE2F918DDAC497F04BB514DDC8A4 /* Sequence.swift */, + E569B2DC927CC8D71F4F23F0003C3ED5 /* SerialDispatchQueueScheduler.swift */, + 2C59C90FEC69AED1404197E1EC6BCF8C /* SerialDisposable.swift */, + 552C265417EEEF4C733B3389BBB60B81 /* ShareReplayScope.swift */, + 26C6DCC4AA19DF0161F8F6C6B39FAA5A /* Single.swift */, + A21E48A849F586BBFD21714D2BDE80AF /* SingleAssignmentDisposable.swift */, + 7A7A9572A176055DF5C20AEBAEC67024 /* SingleAsync.swift */, + FA258E03BA62E8F40739BD9A32A99295 /* Sink.swift */, + AC6F7EDE8C85ACEE871942207EC9B8DD /* Skip.swift */, + FB665F5DCCD07FF7CC73658A9DFFBCD1 /* SkipUntil.swift */, + 81F261D35D9145315EE9B1752B5C7084 /* SkipWhile.swift */, + AC220FC7504EE55E196C0B41D8977731 /* StartWith.swift */, + 5897FBEDD93BE0BD5350B4054C31150E /* SubjectType.swift */, + 100E9B3E567B3F8FF45DF000D5AFF696 /* SubscribeOn.swift */, + 79AFE1126635DF7682A203347E4C5AC3 /* SubscriptionDisposable.swift */, + 27899DD27632A9F27F15589704AEFFB9 /* SwiftSupport.swift */, + 8A9621857C668E485CA2AA9762EAE498 /* Switch.swift */, + ADD89F309186031E535C13E2627380C7 /* SwitchIfEmpty.swift */, + 25197147B1BDCF7829FAC33F8D90A2A2 /* SynchronizedDisposeType.swift */, + 192281E6AA83FC6D9865A4E78F4B1233 /* SynchronizedOnType.swift */, + 0B0827036701F362EE661426BD2AEC3D /* SynchronizedUnsubscribeType.swift */, + 0455936191935FDE41FAE9F6960B4404 /* TailRecursiveSink.swift */, + 0D79204022D7BD5A86AD846C6A9A3B67 /* Take.swift */, + 60DB9996D9B6477BAC8C1D97D6F0449C /* TakeLast.swift */, + 315A20ED27D7DCA059FFFCE69D36FD1B /* TakeWithPredicate.swift */, + 1A56EC2EEC3B74BF75D5510561E40AE7 /* Throttle.swift */, + 5F76DEE37945EE615FA885440E92759F /* Timeout.swift */, + 7215AB564266D20DD5A4F1100DB9AA21 /* Timer.swift */, + EAD68A0C77868E41D5CFFECC43E9C127 /* ToArray.swift */, + 55FB4BBBB52C50A53E47FF064D22FB6E /* Using.swift */, + A1D6D8936528F3AA710EDE666E1B1CB8 /* VirtualTimeConverterType.swift */, + 98652E0913C1EA2BDE0E3C77EF28E0CF /* VirtualTimeScheduler.swift */, + 5282EE44DEA450B95D40BD589E400D08 /* Window.swift */, + 9E7604BFD62A11AD14E6F4B17E461032 /* WithLatestFrom.swift */, + 9F019F40FEA3144FA977635A40108831 /* WithUnretained.swift */, + 00B020D83C3657253A5DAC1E41D38C06 /* Zip.swift */, + B81EB1FAB8782845950E12E81E38CF8C /* Zip+arity.swift */, + E3945DF04317E853B8C494AAFA73FFA6 /* Zip+Collection.swift */, + 9303959BF143631840E122B6A4D1DD7C /* Support Files */, + ); + name = RxSwift; + path = RxSwift; + sourceTree = ""; + }; + 9303959BF143631840E122B6A4D1DD7C /* Support Files */ = { + isa = PBXGroup; + children = ( + 33A9D92711ACDB2898BFF0CFF2F3EE75 /* RxSwift.modulemap */, + 67151E7E2AC38FBD484CF1D66F7DF9C1 /* RxSwift-dummy.m */, + 92897AEB41A2399AF2A027D4CC0BFC68 /* RxSwift-prefix.pch */, + 54C2475BDBBA23ADBE4B7776D55C7834 /* RxSwift-umbrella.h */, + F01E92229D893810C857F6F7CF082379 /* RxSwift.debug.xcconfig */, + BD88212010EF01BC7534AE2BA398D16C /* RxSwift.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/RxSwift"; + sourceTree = ""; + }; + 9570BC23F11BFF91BEC2C8CCA1A5781F /* Support Files */ = { + isa = PBXGroup; + children = ( + E8DB196B7ADA67C31C0E94D4D722AF25 /* AMapSearch-NO-IDFA.debug.xcconfig */, + D00FD3347D13AF427B96A4550756CDCC /* AMapSearch-NO-IDFA.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/AMapSearch-NO-IDFA"; + sourceTree = ""; + }; + 96FBBB615FD49317057B94851499704D /* NSURL+DDCategory */ = { + isa = PBXGroup; + children = ( + D0DBE48A97BAB9861BB831F329CD19B1 /* NSURL+DDCategory.h */, + E9D8D0F8E9A255A92414961BA7142CDF /* NSURL+DDCategory.m */, + ); + name = "NSURL+DDCategory"; + sourceTree = ""; + }; + 97A4C655C2F20858B0A50259ED39D537 /* Resources */ = { + isa = PBXGroup; + children = ( + 01F1CAB98541F9C396B62667D8542F4B /* AMap.bundle */, + 636EB5CF4330A308D4A3C25B952801CB /* AMapNavi.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + 97CFB21909F317E4017628ECCF35AC7A /* Trace */ = { + isa = PBXGroup; + children = ( + 17DD0BD7D4BB86F9A859AC0A834DEB26 /* MATraceReplayOverlay.h */, + 100D6BB138CBC111FBCE28C3F415AD85 /* MATraceReplayOverlay.m */, + 2073F13CD5B17C87AF57433704ED9629 /* MATraceReplayOverlay+Addition.h */, + 1BF69CAA1539ABD030E097DAB8F9A0C9 /* MATraceReplayOverlayRender.h */, + 5DAA7AB53BFB4D3ED99CACE5DB475EFB /* MATraceReplayOverlayRender.m */, + ); + name = Trace; + sourceTree = ""; + }; + 9800BE4CEEC17D497CF53FE831A6B92B /* Resources */ = { + isa = PBXGroup; + children = ( + 9E15619DE7EE2262F3B0191F07D83D96 /* MJRefresh.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + 998586D01EEB6734F25AE8FB0C33F402 /* UITabBarController+DDCategory */ = { + isa = PBXGroup; + children = ( + 2D0097DBB3542F32ECCF4A04A38DBC63 /* UITabBarController+DDCategory.h */, + 4DFC036A62A358022223F07BA12A3092 /* UITabBarController+DDCategory.m */, + ); + name = "UITabBarController+DDCategory"; + sourceTree = ""; + }; + 9B5D586B0EAAE260C37987076C6924F0 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 966BB5F4EA478C380ED1562AE502E807 /* IJKMediaFramework.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 9BA2580FDE302D5F9D69594CAB4ADE0D /* ApplicationInfo */ = { + isa = PBXGroup; + children = ( + 93AFB9A50DB970A45391F3502A121E34 /* ApplicationInfo.swift */, + ); + name = ApplicationInfo; + sourceTree = ""; + }; + 9BFF42DD71B606A8F5568FA3BA8D29CC /* Support Files */ = { + isa = PBXGroup; + children = ( + CE102B1A14C59318B124A794B74BEF22 /* DDLogKit_Private.modulemap */, + 8D557D6B686D3717A1C25B4A91E77138 /* DDLogKit_Private-dummy.m */, + 31B17B5BC0B7F981FCE3EB0BEC4C6493 /* DDLogKit_Private-prefix.pch */, + BBF420C7141239FA67A0CE2B8AD80A3A /* DDLogKit_Private-umbrella.h */, + 003ED5128C713C6B2C0B8B4EF9C1EB59 /* DDLogKit_Private.debug.xcconfig */, + A607ED2656C6103B871BD1882303608A /* DDLogKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDLogKit_Private"; + sourceTree = ""; + }; + 9C86E9DD0A20134AAA5946E5D3AF772B /* Frameworks */ = { + isa = PBXGroup; + children = ( + B50CAFBC2921ED5E9035C11C32BA9CF7 /* jpush-ios-5.0.1.xcframework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 9E8AFBBDCE50A305250FE14DF45FD751 /* Sources */ = { + isa = PBXGroup; + children = ( + B60186A94931AF7B1FA44510770C93D6 /* Resources */, + ); + name = Sources; + sourceTree = ""; + }; + 9EAB3E1D2705F6848575DA13A15798CB /* DDLabel */ = { + isa = PBXGroup; + children = ( + C5C51D602687153D93C1434D2A7431BE /* DDLabel.swift */, + ); + name = DDLabel; + sourceTree = ""; + }; + 9ED88B7D1A7D8EB1442B4D0729471D15 /* UIFont+DDCategory */ = { + isa = PBXGroup; + children = ( + 6E5FAFC9E4CCA59344AC693449DB8A51 /* UIFont+DDCategory.h */, + 8904651863EBDFA68DD55853CF2E0D8D /* UIFont+DDCategory.m */, + ); + name = "UIFont+DDCategory"; + sourceTree = ""; + }; + A31737C77CFE86F9EA16352082A57AFD /* NSThread+DDCategory */ = { + isa = PBXGroup; + children = ( + DE0880A8271F9D408AB8559DEE604AA8 /* NSThread+DDCategory.h */, + E4BE4480E2643990990E862622D1F862 /* NSThread+DDCategory.m */, + ); + name = "NSThread+DDCategory"; + sourceTree = ""; + }; + A5035C269FAB5117EA9D274507032233 /* DatePickerView */ = { + isa = PBXGroup; + children = ( + 88225E31EB7AAE532311D31D022CBCE3 /* BRDatePickerView.h */, + F7FA0481F1BE5BEAB9555866CB7E25CD /* BRDatePickerView.m */, + AD5400297361F68F8ABF2376D58B0890 /* BRDatePickerView+BR.h */, + 8D6C429E59862D8114B998F10E190F8F /* BRDatePickerView+BR.m */, + 5D3250497A860AF8EB84E42556395233 /* NSDate+BRPickerView.h */, + E91F3995EF78A3F4F3F6F6AEDA1F22E8 /* NSDate+BRPickerView.m */, + ); + name = DatePickerView; + sourceTree = ""; + }; + A56973481153C7AFD69436AF0E3C1FAF /* Support Files */ = { + isa = PBXGroup; + children = ( + 2BE1B37DEC9DAD6C065AFB6FE0E02E76 /* DDWebImageKit_Private.modulemap */, + 7C97C5ABEF7A2889F372B6B39A2FA2D1 /* DDWebImageKit_Private-dummy.m */, + 97D0B72200D9842C84087C5993158A8B /* DDWebImageKit_Private-prefix.pch */, + AF0532E0AD4973657A6F9DEA3199861F /* DDWebImageKit_Private-umbrella.h */, + 8CD15EBB949A28AE863CE13ABADAF704 /* DDWebImageKit_Private.debug.xcconfig */, + F4910F0BD18C60C343E23AE84CC65603 /* DDWebImageKit_Private.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DDWebImageKit_Private"; + sourceTree = ""; + }; + A6E5ED90700A844580AC2D97E6BB9768 /* DDBaseTableViewCell */ = { + isa = PBXGroup; + children = ( + D7C1CDE591EA590C681C78F2EE8AAE00 /* DDBaseTableViewCell.h */, + 3B763723156DA73EF644488D056097FB /* DDBaseTableViewCell.m */, + ); + name = DDBaseTableViewCell; + sourceTree = ""; + }; + A9D0C4E6DC121551264BC65AD5CD6E9D /* Support Files */ = { + isa = PBXGroup; + children = ( + 0CB422FEC5C5085457623D4A066078AA /* RxCocoa.modulemap */, + CDFAAE0F3C1ED0E8A418B1C2E5D4B11D /* RxCocoa-dummy.m */, + 52FA67F50DAFD273DCFE9E9D59E55095 /* RxCocoa-prefix.pch */, + AB1E39CA6AFB7FE59C944D0E54210502 /* RxCocoa-umbrella.h */, + FD04B0396B832393BDE001F63399C66D /* RxCocoa.debug.xcconfig */, + 64C8893757A2D4E62E4220D92513F337 /* RxCocoa.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/RxCocoa"; + sourceTree = ""; + }; + A9E70579215F95A073D30EDF2B639000 /* DDBaseTextView */ = { + isa = PBXGroup; + children = ( + 9926891A27457F1F8E220732A2D10824 /* DDBaseTextView.h */, + 398DF2961A9DBEDEEE8F37805E3DE56C /* DDBaseTextView.m */, + ); + name = DDBaseTextView; + sourceTree = ""; + }; + AC1220A51A3A8372D8F673772884F74D /* DDProgressHUDKit_Private */ = { + isa = PBXGroup; + children = ( + 1844FDB8C983AAB88D20C4DB9D2636B6 /* DDProgressHUD.swift */, + 250EDFF28DF12E1484194728C0A13665 /* MBProgressHUD.h */, + 395C2231E068862D97CA29529AD18DE1 /* MBProgressHUD.m */, + 2B9C2FDE06B7A747EA23019BE3945913 /* Support Files */, + ); + name = DDProgressHUDKit_Private; + path = DDProgressHUDKit_Private; + sourceTree = ""; + }; + AE7EF1CD0E8A141A2A8949A86FA4F7A8 /* Support Files */ = { + isa = PBXGroup; + children = ( + 91BE4D2DD1269130525FB8546C526E6E /* IQKeyboardManagerSwift.modulemap */, + 22FA55AC60E7CB37990BD44C08CB6751 /* IQKeyboardManagerSwift-dummy.m */, + 9A23E63F39460BFDDBB7CA026924399F /* IQKeyboardManagerSwift-prefix.pch */, + 4CEA02D2597987A57E68109914486C35 /* IQKeyboardManagerSwift-umbrella.h */, + DC897248D2F7405E6639BF7DF62EDDEC /* IQKeyboardManagerSwift.debug.xcconfig */, + F746703E83DF1CD522EFA62F771BA441 /* IQKeyboardManagerSwift.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/IQKeyboardManagerSwift"; + sourceTree = ""; + }; + B028BA23AADF8D1EAFA51BC6D4500204 /* JPushExtension */ = { + isa = PBXGroup; + children = ( + 606E541A554E7213E0F67B87850C8119 /* Frameworks */, + 6BD6F3023E9642D0F3F1BFCB9D9671D7 /* Support Files */, + ); + name = JPushExtension; + path = JPushExtension; + sourceTree = ""; + }; + B17F1FAD2F5D9DD4D06432FF980F4D3C /* DDZFPlayerKit_Private */ = { + isa = PBXGroup; + children = ( + 68537AB7F295E107939EBC0CC461CF93 /* ControlView */, + 4C3F5D78A5E344FB4710DF80EC9DE8BC /* Core */, + 62C66F19A86BE640EFB9D17F33179FB8 /* ijkplayer */, + 1AC6BCFFDFE47D5699F97426BFA253D2 /* Support Files */, + ); + name = DDZFPlayerKit_Private; + path = DDZFPlayerKit_Private; + sourceTree = ""; + }; + B2831F28A541E71675AD558885A236A6 /* DDCollectionViewCell */ = { + isa = PBXGroup; + children = ( + BBC7D17C40AA258F184EA25BCAEFE4A5 /* DDCollectionViewCell.swift */, + ); + name = DDCollectionViewCell; + sourceTree = ""; + }; + B2AC6E9994512FC1FEAC4FC9D61A7417 /* Base */ = { + isa = PBXGroup; + children = ( + D594020C6C1BD9A7CDD5BB9F2FCD59E5 /* BRBaseView.h */, + 4AB144B8A6315A17571F0E392A919DCD /* BRBaseView.m */, + B4654BC1E670D3428DC237EAAA471D3B /* BRPickerStyle.h */, + 7F70A5C9739288DC9DE9D99E40915A72 /* BRPickerStyle.m */, + B76B693FF4BD29AC280EB0A5AB4F57A5 /* BRPickerViewMacro.h */, + 69CB524E1CE7F91DB1DB1F3E7C633DC4 /* NSBundle+BRPickerView.h */, + E666B78DFFC402ADD04FD15B855247B2 /* NSBundle+BRPickerView.m */, + 0DF7214B62938C1B1855C8523AE92C6A /* Resources */, + ); + name = Base; + sourceTree = ""; + }; + B2D46C97501B060008D850965ABE739B /* Frameworks */ = { + isa = PBXGroup; + children = ( + 5722E0FBB48E89451DBB8C86575F1468 /* Bugly.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + B35BE7E5BDF470422BD705F1A2AB0C0A /* SwiftyRSA */ = { + isa = PBXGroup; + children = ( + D9AD58267617D080A644D15C5953A3DA /* Asn1Parser.swift */, + F624085069752CD3E97127DE1AB28641 /* ClearMessage.swift */, + 64255098B3D01AD4A925A661CE48A0FF /* EncryptedMessage.swift */, + C861125E2CD0971D9A3A7E91EA523A71 /* Key.swift */, + 14393B03067AF37F0C86DF51FBEFA40E /* Message.swift */, + 73419A92646E09D6B562C28B3CA05BA3 /* NSData+SHA.h */, + B5F58FF4291879BBEA3539B0B74B3F4B /* NSData+SHA.m */, + 28E96632CE12E61FA77F2320A4E64891 /* PrivateKey.swift */, + D46282E095DB304180ACC5813886B840 /* PublicKey.swift */, + AA94AE7ACCCFA7BF65E3740A76E672B7 /* Signature.swift */, + A8B603928CFDD379AC71B438DDD80A16 /* SwiftyRSA.h */, + D0524AE01C98B859CF0D79DF9DA54B79 /* SwiftyRSA.swift */, + CEEA491E725F633B09A7FB4EBC582CA8 /* SwiftyRSAError.swift */, + A48039FF0278CE5400B58D59DD3DD6AD /* X509Certificate.swift */, + 15F455D400B34163EBF2F890821EC67B /* ObjC */, + EBECB5733854FC44DB788179CBB25B21 /* Support Files */, + ); + name = SwiftyRSA; + path = SwiftyRSA; + sourceTree = ""; + }; + B3631591EC1C58BCB639A1ADB12017C9 /* Core */ = { + isa = PBXGroup; + children = ( + E0CDF0DC4E1310B05CD60253C71A1D64 /* Array+ZLPhotoBrowser.swift */, + 4763623B772F020E17DCB8248891393F /* Bool+ZLPhotoBrowser.swift */, + 9B90EA217BD262A8A13A4E9019D62D65 /* Bundle+ZLPhotoBrowser.swift */, + 21CD825AB7F6DDE2D64572AB5F46E51C /* Cell+ZLPhotoBrowser.swift */, + 667136F6DC478C4D4230F055DDF8BA9B /* CGFloat+ZLPhotoBrowser.swift */, + DA37BA8707C464C319C8280DEA800B2F /* NSError+ZLPhotoBrowser.swift */, + E602F76967902D5A6254723E3A53BF52 /* PHAsset+ZLPhotoBrowser.swift */, + DB5422D5D752B443B060C8D7B74DE2F3 /* String+ZLPhotoBrowser.swift */, + 70BB91167ABEE2352D3CE681C81C3153 /* UIColor+ZLPhotoBrowser.swift */, + 8FD60DECEA703EE30485EDA50460B3E2 /* UIFont+ZLPhotoBrowser.swift */, + E38A562FCE12AA031A1E952092F9D1BE /* UIImage+ZLPhotoBrowser.swift */, + 74E504B0B38E7652E8C8E4F3D5BC9B9D /* UIView+ZLPhotoBrowser.swift */, + 49FB1EC653D272840E215E57E322E4D1 /* UIViewController+ZLPhotoBrowser.swift */, + 6A60B3AA38313A56486FCF25E55B677C /* ZLAddPhotoCell.swift */, + C5508EA6B5659E8AD9132BE4C3DD44CB /* ZLAdjustSlider.swift */, + DB14C58F534101E8EA2AFBA7D43B6227 /* ZLAlbumListCell.swift */, + D4B00E006056B429B76EEC1C005ED1B9 /* ZLAlbumListController.swift */, + 1765FCE93311E671DD3BC7F16484E116 /* ZLAlbumListModel.swift */, + 0292CFDB14D218ACA7263C4A66E5DF49 /* ZLAnimationUtils.swift */, + 92AFCA13019BDDCB53CB10B0CBCD7F52 /* ZLBaseStickerView.swift */, + 12E72D93C1B1329FB9B1EC74C58741A8 /* ZLCameraCell.swift */, + 3F05A75DD37C54EA2690FFEFA61CA0A8 /* ZLCameraConfiguration.swift */, + 1A9B4B246DAC7932B71D79F43E53F722 /* ZLClipImageDismissAnimatedTransition.swift */, + D234F382762E9E04BFD8CD5B7800AACB /* ZLClipImageViewController.swift */, + EFBEEEF50D9ACA4104F4A260004EBF76 /* ZLCollectionViewFlowLayout.swift */, + 5C2AE8803DD2ADB3E9505E1AC253E5EB /* ZLCustomAlertProtocol.swift */, + A4B663ADB8E7392C70972270C49038CC /* ZLCustomCamera.swift */, + B60734D98697BBE0BDA5907476C2F8E2 /* ZLEditImageConfiguration.swift */, + A26FEB6228C891C1DBC837930AAC595E /* ZLEditImageViewController.swift */, + 123D932AC1F019898ED170F0CD40694D /* ZLEditToolCells.swift */, + D2086FC0D5B10E864904539B38AF3D2B /* ZLEditVideoViewController.swift */, + 09FA14CF689D02A1F55D530784E02BCD /* ZLEmbedAlbumListView.swift */, + D8E24BD6706A3C27F8A0732B1F84AF01 /* ZLEnlargeButton.swift */, + AF887A0534F724EB92045A93644F7A73 /* ZLFetchImageOperation.swift */, + EEB4131AE9559193312626739C057CEA /* ZLFilter.swift */, + 669A2514198294877A8F3491D2A37A06 /* ZLGeneralDefine.swift */, + 2ADEA647B9653D68C43A8AB4568E7846 /* ZLImageNavController.swift */, + 9589C472B639E2997BEF5B3D29D15E86 /* ZLImagePreviewController.swift */, + 68337E6BF0375FA39E471BF6643105E1 /* ZLImageStickerView.swift */, + 32730F8A7A18DB932A7FECAAE3F9EBF8 /* ZLInputTextViewController.swift */, + EC01754C194475C4ECD32BF79C42ED9B /* ZLLanguageDefine.swift */, + 89691CA8F799C21F0DE4A9D1BFDC06FD /* ZLPhotoBrowser.h */, + D64D0833F82FDE2751B36C155118635D /* ZLPhotoBrowser.swift */, + 24F414B07DE7D57F29C8DD5C1B7B94BA /* ZLPhotoConfiguration.swift */, + 0A74F43E5A5B27409A7B16F84771A955 /* ZLPhotoConfiguration+Chaining.swift */, + 4AE9C6CD531DEE9989CEA93F5D471DD9 /* ZLPhotoManager.swift */, + B19C42512763A8CEA24DF9124119997B /* ZLPhotoModel.swift */, + FE13E26D345C7E810A262C84C2E02F84 /* ZLPhotoPreviewAnimatedTransition.swift */, + D05AB07AEAA9420C4540ECDF663E1DDB /* ZLPhotoPreviewCell.swift */, + 02AFDD1B3E0ACC40D62C77E695872409 /* ZLPhotoPreviewController.swift */, + D7961ABD51451CFC2B29850BFE17D2E8 /* ZLPhotoPreviewPopInteractiveTransition.swift */, + 8C0B2654E471DCE015DD262A8C792E77 /* ZLPhotoPreviewSheet.swift */, + BCDBF3F0094FDEA2FBB95FAE3D171DB7 /* ZLPhotoUIConfiguration.swift */, + 46B8A95C40EE03EF5115D2F1168FD571 /* ZLPhotoUIConfiguration+Chaining.swift */, + FEEBE5B40CE58CE493FE5C5D9213D6F8 /* ZLProgressHUD.swift */, + E1650E856F0383AFF433321ADCFF0B46 /* ZLProgressView.swift */, + 41EA1A9C8B2CEFC47FC9413A9FBEE795 /* ZLResultModel.swift */, + 7D9CC15CB2C70E029E7A14E3D4587F20 /* ZLTextStickerView.swift */, + 41CED83574961870FBA1DDDE655D6329 /* ZLThumbnailPhotoCell.swift */, + DCB938EFA10CB6F188D79421F12A0F09 /* ZLThumbnailViewController.swift */, + D98D93B3F0A5345AC7640F9F5D106304 /* ZLVideoManager.swift */, + 9269A7E274CDE89A331D16C9372E34D9 /* ZLWeakProxy.swift */, + ); + name = Core; + sourceTree = ""; + }; + B3C84C09E647847F0FAD3A86BE7606B6 /* MJRefresh */ = { + isa = PBXGroup; + children = ( + 70C02CBCD9F2AE8933C2B300352DFC04 /* MJRefresh.h */, + EC6F69FBF4C778AC5A21189B7EF2DF9B /* MJRefreshAutoFooter.h */, + 91156020EF5382483A437EB042DCDF32 /* MJRefreshAutoFooter.m */, + 2DBF46FC17F26606228D9C7D49EBDFCA /* MJRefreshAutoGifFooter.h */, + 05A0A4ACD645B787C5F433F9B516B9B8 /* MJRefreshAutoGifFooter.m */, + E74AF6C7BD2D5935C1BE61D88A3F6730 /* MJRefreshAutoNormalFooter.h */, + BF9933C238A0EFE812D364F8FEA7C5B8 /* MJRefreshAutoNormalFooter.m */, + D752328C851F17A39773F2072576FF3D /* MJRefreshAutoStateFooter.h */, + DC113ECFBA983B2B2B197B4A7B44578C /* MJRefreshAutoStateFooter.m */, + E1787850581C24FD42F96FFCB2A3F1C3 /* MJRefreshBackFooter.h */, + 82EA83B3606AF5F817DB227D91D6110B /* MJRefreshBackFooter.m */, + 0435BCA4466F64061E559FD0669FBD4E /* MJRefreshBackGifFooter.h */, + 26A19A66A3BD9A7DDE5A0EF74E057E90 /* MJRefreshBackGifFooter.m */, + D2CBE2073D3901EFEBE9548F11B9F39C /* MJRefreshBackNormalFooter.h */, + 959BC3BA53C035A9502FA78704B1A8AF /* MJRefreshBackNormalFooter.m */, + 3438D118E49B28076AAA4FC9A453BC83 /* MJRefreshBackStateFooter.h */, + EAF36973F7C36C1729B5A0CAD7D56D26 /* MJRefreshBackStateFooter.m */, + 2F4005DBF5C9517C79EE0D76B3E055FE /* MJRefreshComponent.h */, + 38CFCC46DA1554A043039C4464B0CF5D /* MJRefreshComponent.m */, + C434EB5EFD9A8E047F442AC63A679FDD /* MJRefreshConfig.h */, + D5980B975AF5711F5E75E866534316EE /* MJRefreshConfig.m */, + 20DB2458655CE5D438AF415CAA3AB252 /* MJRefreshConst.h */, + CFB4B69CE8870B4A92DC09ABE69C3FD7 /* MJRefreshConst.m */, + BD9D7EE9F0B4F6321A931EDA5AEBE7D3 /* MJRefreshFooter.h */, + 8A0A2E4D8C87760B993D19FF9F3341B7 /* MJRefreshFooter.m */, + 6A767EA155F4FE2D8900920C612ED2DA /* MJRefreshGifHeader.h */, + 85A77A80037CB2ED1FA9E44DDFD6D03E /* MJRefreshGifHeader.m */, + 781C9D59C456C7219ADD79A80E021103 /* MJRefreshHeader.h */, + A5D4E64068394AA154860B9C15CC04F9 /* MJRefreshHeader.m */, + 7CEEAF670DB302937514821BFF491B38 /* MJRefreshNormalHeader.h */, + 09B45C82D1FA696C05AFC98A4B0BDC20 /* MJRefreshNormalHeader.m */, + DDCE9E6BDA94E73329AB9C50016EEBC0 /* MJRefreshNormalTrailer.h */, + FBD453BEE0C686CA6562C76B9456F328 /* MJRefreshNormalTrailer.m */, + 5ABDD7BEA7720240CDB2A483B7AF6DCA /* MJRefreshStateHeader.h */, + C2B307DF007DE390712809DE011C5B43 /* MJRefreshStateHeader.m */, + 66A85E06C513B0B4F16F42B61FEA3043 /* MJRefreshStateTrailer.h */, + 857089AD8B62EB613B627281C537EA3A /* MJRefreshStateTrailer.m */, + 11C649053321E3BFCC61AC64B0C1A033 /* MJRefreshTrailer.h */, + 4C9D5ED4DEBECC5E19644632ECE94707 /* MJRefreshTrailer.m */, + 834D7B33EA6C1B57E4D8041DCC012066 /* NSBundle+MJRefresh.h */, + FF0CA2D49697DC423AEF6657A5E01489 /* NSBundle+MJRefresh.m */, + 463D297175DE8763E4F71E6D2FE91852 /* UICollectionViewLayout+MJRefresh.h */, + 02A7667604B8B8A9FEB30F134B8AEF89 /* UICollectionViewLayout+MJRefresh.m */, + 0E5EA0341F654D3EB0B20F96F8C5EC6B /* UIScrollView+MJExtension.h */, + 77660A66FD52AE4EB05728A6FBA09C03 /* UIScrollView+MJExtension.m */, + 9FC49E0C20721851910941146A81049E /* UIScrollView+MJRefresh.h */, + AB7E7A62BC31BF4713857CFC04DBEC29 /* UIScrollView+MJRefresh.m */, + B62739FC705A59986B106E0BEC75FFC8 /* UIView+MJExtension.h */, + 699ECDE0EA00BCCC8C9962922D1A441B /* UIView+MJExtension.m */, + 9800BE4CEEC17D497CF53FE831A6B92B /* Resources */, + B57CB9133A997ADEE8E59A57FB24026C /* Support Files */, + ); + name = MJRefresh; + path = MJRefresh; + sourceTree = ""; + }; + B4194E659BDCC1CD7A70B6140E53A608 /* DDBaseViewController */ = { + isa = PBXGroup; + children = ( + BDB96E4185166C4E25E6A955836EB0EE /* DDBaseViewController.h */, + 5ECE700F4AFF8B78540CE2C56469DC8F /* DDBaseViewController.m */, + 4CF35BBC3DB7FF9684B6FB7DA9CED751 /* Resources */, + ); + name = DDBaseViewController; + sourceTree = ""; + }; + B4ABE87C471295E773960AE3C9A80BB7 /* DDCollectionView */ = { + isa = PBXGroup; + children = ( + D6F758731ECC708DC7F5F80D5AAF0626 /* DDCollectionView.swift */, + ); + name = DDCollectionView; + sourceTree = ""; + }; + B57CB9133A997ADEE8E59A57FB24026C /* Support Files */ = { + isa = PBXGroup; + children = ( + D24054FC4BC47152A1F8985EA44E65FB /* MJRefresh.modulemap */, + 0AE18AB2947C447008971926B655DE2D /* MJRefresh-dummy.m */, + D8DEEAC1C0814D853BD3C163C83754F2 /* MJRefresh-prefix.pch */, + 85684DC09A1ABE3769AC1969830D5214 /* MJRefresh-umbrella.h */, + DB3B79C4DB6A5DCFD066B93DA04D6F60 /* MJRefresh.debug.xcconfig */, + 182C474DAD1BF7F563F0DB8E38461A77 /* MJRefresh.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/MJRefresh"; + sourceTree = ""; + }; + B5DE58B68FDF9184858B1FC0B7AB55FA /* Annotation */ = { + isa = PBXGroup; + children = ( + BD5BB61FB0ADB6B8A9833127A6FAC28E /* DriveRouteCustomAnnotation.h */, + 50FD7549869B955E17B7B4D73F9A4A1D /* DriveRouteCustomAnnotation.m */, + D8E1371FFD90B69B7CD816246FC91E70 /* MAPointAnnotation+DDCategory.h */, + D0DFEC83AA1947F7C57D3AC19B582D65 /* MAPointAnnotation+DDCategory.m */, + ); + name = Annotation; + sourceTree = ""; + }; + B60186A94931AF7B1FA44510770C93D6 /* Resources */ = { + isa = PBXGroup; + children = ( + BA57B5CC8EF5DF8F462BB82F9A811411 /* car_xingshi.png */, + 658515FE76D410592A4AB7B469FCB111 /* car_xingshi@2x.png */, + 22F11DA069DD29CE65443003A51FE726 /* car_xingshi@3x.png */, + ); + name = Resources; + sourceTree = ""; + }; + B6337BD070DE8F06F51095A5EE1F3B39 /* MapView */ = { + isa = PBXGroup; + children = ( + 5CEEFDA1834DF558CEC910B1A10481CB /* DDMAMapView.h */, + 457746032015541C4109E295A482AEA4 /* DDMAMapView.m */, + ); + name = MapView; + sourceTree = ""; + }; + B7D60F0C65553ECDA4EB1CC7949E1196 /* DDMAUtil */ = { + isa = PBXGroup; + children = ( + 6E7FAEF8333E1A8BBA0069BC2D6B07E1 /* DDMAGeometry.h */, + 56FBFF13F31D572E4FEC5D4FF410E3AF /* DDMAGeometry.m */, + ); + name = DDMAUtil; + sourceTree = ""; + }; + BA6A921EE08990CA86EA3A40220FD491 /* Support Files */ = { + isa = PBXGroup; + children = ( + 672A259CAC7E6E42EBCD9A5F91EE8875 /* AMapTrack-NO-IDFA.debug.xcconfig */, + 0B311EC7F5B47078DBAFF57B7FBC20B0 /* AMapTrack-NO-IDFA.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/AMapTrack-NO-IDFA"; + sourceTree = ""; + }; + BB88774D84C82088571F5C9DFE01C8A1 /* DDViewController */ = { + isa = PBXGroup; + children = ( + D75519C34B3A8A8EE799400C3E4A77B4 /* DDViewController.swift */, + ); + name = DDViewController; + sourceTree = ""; + }; + BC29BCCB25FA0971085321CC7361F8FD /* DDBaseCollectionViewCell */ = { + isa = PBXGroup; + children = ( + 4040332B7FE3A86CA301916F4A943D89 /* DDBaseCollectionViewCell.h */, + 94E93DBE573ED8C6F33F01948ED7C1E8 /* DDBaseCollectionViewCell.m */, + ); + name = DDBaseCollectionViewCell; + sourceTree = ""; + }; + BD86250FD4FF36E6DF2BE628706D1C54 /* Support Files */ = { + isa = PBXGroup; + children = ( + CB659B69B7D3C91B155E0C5696719E24 /* BRPickerView.modulemap */, + C18139F5A43A1C285815ACBEE5478A2C /* BRPickerView-dummy.m */, + E11CD1A06565E2029E0D027F11E0F972 /* BRPickerView-prefix.pch */, + FF392CDD230947518F93FDA3A3921DD1 /* BRPickerView-umbrella.h */, + D5F722418DA9A57C7FDCDF4F98860557 /* BRPickerView.debug.xcconfig */, + A15A48EE53406A3516FE6CF82C636924 /* BRPickerView.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/BRPickerView"; + sourceTree = ""; + }; + BE4853A5ACF449BF7A06F5463F3BBAC5 /* AMapLocation-NO-IDFA */ = { + isa = PBXGroup; + children = ( + 49EBB0A59C53BF36E37CAC40FC358FF4 /* AMapGeoFenceError.h */, + 18859A5ED4A849927312BBF28C2B43C7 /* AMapGeoFenceManager.h */, + 105583B7B704DAB436A180FBEF9E2230 /* AMapGeoFenceRegionObj.h */, + 4BC03D3ACF84885B64C2E9EC1791023C /* AMapLocationCommonObj.h */, + DE09A22B7ADCECBB2E842A4F8A309C3F /* AMapLocationKit.h */, + FEA979776C4541E2048D0D5057480ACD /* AMapLocationManager.h */, + 18A9428CA92DC5CC002DD42D7C02D680 /* AMapLocationRegionObj.h */, + 51A2396BE6734D12FA36E5072941E6B4 /* AMapLocationVersion.h */, + E6C0BEF611E4AE89D43C04BACCFE6C98 /* Frameworks */, + 6E165D65CAA77E0647D7B948DC25AA2B /* Support Files */, + ); + name = "AMapLocation-NO-IDFA"; + path = "AMapLocation-NO-IDFA"; + sourceTree = ""; + }; + BF36CB21850FE4F84B6911CA1A38496C /* DDBaseCollectionView */ = { + isa = PBXGroup; + children = ( + C02EBA2F1450096B82D9C2AE4C0B646A /* DDBaseCollectionView.h */, + F72A61F48DADF887C32B1EC3C8075F28 /* DDBaseCollectionView.m */, + ); + name = DDBaseCollectionView; + sourceTree = ""; + }; + C0F50D17189AB90B99F6E88D814A912C /* Support Files */ = { + isa = PBXGroup; + children = ( + D641F5A274731444F1CFF4D614F677CE /* SnapKit.modulemap */, + 684CDF94DC7DDEE1D5D861459C94717C /* SnapKit-dummy.m */, + D4105004055EA66AE909A34489A4713E /* SnapKit-prefix.pch */, + DCCCD01F51423BB28E388EB2A7CA71B0 /* SnapKit-umbrella.h */, + FE5C0C1AAE53A2102584FF8E43D5F9E6 /* SnapKit.debug.xcconfig */, + 19DBB05FE14851A626C697BAD50A5BCE /* SnapKit.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/SnapKit"; + sourceTree = ""; + }; + C1DD1F556FB9E73BD19B5F65FE112BFF /* JPush */ = { + isa = PBXGroup; + children = ( + 9C86E9DD0A20134AAA5946E5D3AF772B /* Frameworks */, + 78A15EC4BEC5C21C75231A7D0F91CEF8 /* Support Files */, + ); + name = JPush; + path = JPush; + sourceTree = ""; + }; + C3BD92302FEDA7627442CC6D3E1463AF /* Support Files */ = { + isa = PBXGroup; + children = ( + ADCFCD2E3E307B7E812CEE2F5976D55D /* SwiftEntryKit.modulemap */, + DF8D41B69396E37597B5BCAA8A9BF637 /* SwiftEntryKit-dummy.m */, + E18C2E206A6EC25A7047EEB9D0E372E1 /* SwiftEntryKit-prefix.pch */, + F619A10A1AB63AB47E4B0D759213EE3D /* SwiftEntryKit-umbrella.h */, + ADC173C0A2B73E007BE49B890571E712 /* SwiftEntryKit.debug.xcconfig */, + 290A8A27E575C3A9AF8317932B8C668E /* SwiftEntryKit.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/SwiftEntryKit"; + sourceTree = ""; + }; + C6A7ED4D1E164D051485166926861E93 /* Resources */ = { + isa = PBXGroup; + children = ( + 225A3B0A39008DF65BD367665DDA3EAF /* ZLPhotoBrowser.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + C6E5FBC5B3455BBA3D944049BB306226 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 35A754FDB59B0DB8A23200979795D334 /* AMapFoundationKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; C75853DD0219D4027452952F5BD8530A /* Targets Support Files */ = { isa = PBXGroup; children = ( @@ -6122,372 +6407,78 @@ name = "Targets Support Files"; sourceTree = ""; }; - C951AF0E8D951E9EBA23C6979C2BB944 /* Frameworks */ = { + CCF913B1EB797E06D30F9401F42EDEE0 /* DDToastKit_Private */ = { isa = PBXGroup; children = ( - 157D5E57858CF3184E2D48690C8EBF16 /* jcore-ios-4.2.1.xcframework */, + 8234ACE7C19004A77861B162823282E9 /* SwiftToast.swift */, + 5897C1795BDA23E9A770BDF904032173 /* Toast.swift */, + 6ACC92B69690A32791369EB18CB04503 /* Support Files */, ); - name = Frameworks; - sourceTree = ""; - }; - CB4B95282027AF56CC4432D5681843DD /* DDMATrackManager */ = { - isa = PBXGroup; - children = ( - B73D0E3E5524D99DD115DB1865363FEA /* DDMATrackManager.h */, - 3A6946E3778D6DC2C13697F173C8331D /* DDMATrackManager.m */, - ); - name = DDMATrackManager; - sourceTree = ""; - }; - CB79603CCBAE208AB4431E6583E37B0F /* Pods */ = { - isa = PBXGroup; - children = ( - 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 = Pods; - sourceTree = ""; - }; - CCA6DCB9C3549BD923448BA177D1AFA9 /* RxSwift */ = { - isa = PBXGroup; - children = ( - 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 = RxSwift; - path = RxSwift; - sourceTree = ""; - }; - CF0C705776097A59E300E866578BF25F /* DDNetworkingOfAlamofireKit_Private */ = { - isa = PBXGroup; - children = ( - 98CB7238F9A57FDE98F1C618823FBD5C /* DDAF.swift */, - 83AE347DC32BAC35F18EC1AB8EFDB289 /* DDAlamofire.swift */, - DC79BA4E38F0044F1AEBB9F1096553C3 /* Support Files */, - ); - name = DDNetworkingOfAlamofireKit_Private; - path = DDNetworkingOfAlamofireKit_Private; + name = DDToastKit_Private; + path = DDToastKit_Private; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 34F1023A605786425EE9F54F7F221BFB /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, - CB79603CCBAE208AB4431E6583E37B0F /* Pods */, + 5563892E4A676B2D6243AF7B9BF38360 /* Pods */, E4A53510D8AD75F598BE345AAF71D662 /* Products */, C75853DD0219D4027452952F5BD8530A /* Targets Support Files */, ); sourceTree = ""; }; - CF29F7476FF5E386DDCB4875CCEFB453 /* Support Files */ = { + CFD85C1BD676F87E548BC4ADB54BB134 /* UINavigationItem+DDCategory */ = { isa = PBXGroup; children = ( - 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 */, + 8B854826A7789934EF05F096D5A1ADA3 /* UINavigationItem+DDCategory.h */, + A0AD6D9DB128055A8E5D6F949D01807F /* UINavigationItem+DDCategory.m */, + ); + name = "UINavigationItem+DDCategory"; + sourceTree = ""; + }; + D3C32330E7A7AE7CC6928357A10DE2E9 /* UITextField+DDCategory */ = { + isa = PBXGroup; + children = ( + 61B51A451CB94D7646E7B17DA15A9554 /* UITextField+DDCategory.h */, + A19C4BEFD2E261BE8734FCE139E89CCB /* UITextField+DDCategory.m */, + ); + name = "UITextField+DDCategory"; + sourceTree = ""; + }; + D3DC027C6833D1F4CFAEE67829F1A7C6 /* UIWindow+DDCategory */ = { + isa = PBXGroup; + children = ( + 563C56E411D4BC9C5D6141B44B45F985 /* UIWindow+DDCategory.h */, + 20755936004034DEBDEDE77720ADCE70 /* UIWindow+DDCategory.m */, + ); + name = "UIWindow+DDCategory"; + sourceTree = ""; + }; + D402B51A9DB073C438DF9D308EA3A172 /* Support Files */ = { + isa = PBXGroup; + children = ( + 7BCA9496A0662B7A472484A308AD3FEC /* DDPersistenceKit_Private.modulemap */, + D49ED24DAC355802A4BED057B46466F6 /* DDPersistenceKit_Private-dummy.m */, + 9B741ED6F65E6593CFE5690805A58EBE /* DDPersistenceKit_Private-prefix.pch */, + EAD835816757C62EA46382EA25F34BA6 /* DDPersistenceKit_Private-umbrella.h */, + 1D3E800F1536BBD1AEC2B4D773CCF487 /* DDPersistenceKit_Private.debug.xcconfig */, + 7AA2E518EECC85C0E5AC4CD0C29FB4EF /* DDPersistenceKit_Private.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/DDColorKit_Private"; + path = "../Target Support Files/DDPersistenceKit_Private"; sourceTree = ""; }; - CFCE8D4F13BCA42091BE611EC11C4F03 /* ApplicationInfo */ = { + D6E97C4E9EA86A787CD2A6A085EC5A5A /* DDNetworkingOfAlamofireKit_Private */ = { isa = PBXGroup; children = ( - A531AD70769E1396BB66543117414125 /* ApplicationInfo.swift */, + CC674515650A7193BA73BF558F4961F9 /* DDAF.swift */, + E5B52A5102B12C58C636C40B66E7B73E /* DDAlamofire.swift */, + F917ECADA7A9236C93671CFDB01F6C6A /* Support Files */, ); - name = ApplicationInfo; - sourceTree = ""; - }; - D0915F23EB6415B727BA6736AC9A7FDA /* DDBaseImage */ = { - isa = PBXGroup; - children = ( - A9C059A3D5DB2FA7379E9C9BA5526458 /* DDBaseImage.h */, - AD83B4509F3F1CD3C9E05C7C52414CE7 /* DDBaseImage.m */, - ); - name = DDBaseImage; - sourceTree = ""; - }; - D151EA0F0C331F9F57CC803AB0CB6E89 /* Resources */ = { - isa = PBXGroup; - children = ( - 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/RxSwift"; - sourceTree = ""; - }; - D7F174C4E7720C28AD045BCCE6ED2869 /* Support Files */ = { - isa = PBXGroup; - children = ( - 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 = "Support Files"; - path = "../Target Support Files/DDAudioPlayerKit_Private"; + name = DDNetworkingOfAlamofireKit_Private; + path = DDNetworkingOfAlamofireKit_Private; sourceTree = ""; }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { @@ -6497,96 +6488,116 @@ name = Frameworks; sourceTree = ""; }; - D9B00C0698CC49859785AD062FD05DCE /* DDUIGestureRecognizer */ = { + D8A616AC76DF1DFDC5AC4268ABAADEF2 /* Support Files */ = { isa = PBXGroup; children = ( - F230C033C256224BF4D1946B1DD01743 /* DDUIPanGestureRecognizer */, - F4D97DFDD33B63C2FE8F06B0CFD00F2C /* Pod */, - 17A1B65A11E2CD1BEFA32F0DA63A7260 /* Support Files */, - ); - name = DDUIGestureRecognizer; - path = /Users/zd/Desktop/PodRepository/DDUIGestureRecognizer; - sourceTree = ""; - }; - DA3B9B57F659DAE9D0625715BD7C8114 /* DDAutoUIKit_Private */ = { - isa = PBXGroup; - children = ( - C058BCFE672D5791D938C8E04CD9BA55 /* AutoUI.swift */, - 7469CBA367F18E25ABE98C1D4762DCC2 /* Support Files */, - ); - name = DDAutoUIKit_Private; - path = DDAutoUIKit_Private; - sourceTree = ""; - }; - DB037C1F2D137716FF2F99A74A5303DA /* DDAudioPlayerKit_Private */ = { - isa = PBXGroup; - children = ( - 53AACF49D169396199F59562A14A9B40 /* DDAudioService.swift */, - 8CE87AD2396F79DE4134FE95D84EA276 /* DDSpeechSynthesizer.swift */, - D7F174C4E7720C28AD045BCCE6ED2869 /* Support Files */, - ); - name = DDAudioPlayerKit_Private; - path = DDAudioPlayerKit_Private; - sourceTree = ""; - }; - DB153D01B7C0F4241C67D27EEFCDE6DC /* UIImageView+DDCategory */ = { - isa = PBXGroup; - children = ( - 1F22983D02B664189D884F954DC89577 /* UIImageView+DDCategory.h */, - FFD2DD6C44BEEFE07B7C888B111ADB65 /* UIImageView+DDCategory.m */, - ); - name = "UIImageView+DDCategory"; - sourceTree = ""; - }; - DBDF6EFEB7E2EF700D00C13766849896 /* MapView */ = { - isa = PBXGroup; - children = ( - 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 */, + 5E9A15FC8268FB70B57ABF97D262DC6A /* RxRelay.modulemap */, + 3959754FECDE99CD5B3966F34DC1C452 /* RxRelay-dummy.m */, + 8B9A8B6B5B2E73694505BE5FB657030A /* RxRelay-prefix.pch */, + 580B4C1F47A763EB15B9B2C52900BC82 /* RxRelay-umbrella.h */, + 06523BF69F5B28DF722EF93AFCB7B3BB /* RxRelay.debug.xcconfig */, + 2C490D20EDACA6A662B727C0166EA7D9 /* RxRelay.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/DDNetworkingOfAlamofireKit_Private"; + path = "../Target Support Files/RxRelay"; sourceTree = ""; }; - DC9D6DBB97D8821B377A74962DDDEE53 /* ZLPhotoBrowser */ = { + DB471C642EB34E6BE8F01C6216FEA467 /* Support Files */ = { isa = PBXGroup; children = ( - 6C6A10972E4920D1119664C000E8D689 /* Core */, - F726CBE70F839B05F88828888AE8CE04 /* Resources */, - 30C88B9858B6711FE1F81C87ED95CF3F /* Support Files */, + 7A93F5EA1B938F35EFF078322B9EDCF5 /* DDAutoUIKit_Private.modulemap */, + F851C058CDE7A9B9458BAA5D5A2FC537 /* DDAutoUIKit_Private-dummy.m */, + 01977D67366B68D418CA6F9BF725100E /* DDAutoUIKit_Private-prefix.pch */, + B457EC806E1D1DBAD8F081B5BDBD0F0E /* DDAutoUIKit_Private-umbrella.h */, + BFF4ABD12C58CC8E55DEDFBB5B1B9ED8 /* DDAutoUIKit_Private.debug.xcconfig */, + A4C0C20830AF12DC74F52352EF1BFAFD /* DDAutoUIKit_Private.release.xcconfig */, ); - name = ZLPhotoBrowser; - path = ZLPhotoBrowser; + name = "Support Files"; + path = "../Target Support Files/DDAutoUIKit_Private"; sourceTree = ""; }; - DE38E30BE37F81240942C210228C559C /* UIViewController+DDCategory */ = { + DC1CBA3BFEB651299BB706E1D521BECE /* UILabel+DDCategory */ = { isa = PBXGroup; children = ( - 9E23A92691502180D23A68331E29F362 /* UIViewController+DDCategory.h */, - CA6DFF43188781594F72C45869D3D810 /* UIViewController+DDCategory.m */, + 6F19C0B84399234DE43E9C11FCA731D0 /* UILabel+DDCategory.h */, + B28E906FCB5668B964BE098100101BC0 /* UILabel+DDCategory.m */, ); - name = "UIViewController+DDCategory"; + name = "UILabel+DDCategory"; sourceTree = ""; }; - E33643C235CF09E3A9488A2900E7C0F2 /* Frameworks */ = { + DD5E9197A6D475E9BF0DD418DF2C86CB /* DDTableView */ = { isa = PBXGroup; children = ( - DEF51AE613081B188EDB8BAC4FBF7569 /* AMapLocationKit.framework */, + CDBEDC79DF9A98BBC255B9B5BDC6BE1B /* DDTableView.swift */, ); - name = Frameworks; + name = DDTableView; + sourceTree = ""; + }; + DE3FA9C3D1178B14AC88CC36FB8D631E /* Support Files */ = { + isa = PBXGroup; + children = ( + DF7C9DEBA19C67123F6178C64C0C9218 /* ESTabBarController-swift.modulemap */, + 0A2B2D3DFC187C5D4FDA5530EBD965FF /* ESTabBarController-swift-dummy.m */, + 3A31E7B6A9875CF4ED6F210C53487985 /* ESTabBarController-swift-prefix.pch */, + BD32E852F8B94ED1759436D4626FCD91 /* ESTabBarController-swift-umbrella.h */, + 9FD34ED95BEB09198976104EECDD897F /* ESTabBarController-swift.debug.xcconfig */, + F22EE762164D1AA9AC91A3616BED1B86 /* ESTabBarController-swift.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/ESTabBarController-swift"; + sourceTree = ""; + }; + DE747B6C64D1DF3C22A0AE0A18E2F6E5 /* DDTextView */ = { + isa = PBXGroup; + children = ( + 786DBA7A836D01551A9F77B34469496B /* DDTextView.swift */, + ); + name = DDTextView; + sourceTree = ""; + }; + DEBFBDDA7D0C46E062E6AE8E39A4EF9B /* DDBaseImageView */ = { + isa = PBXGroup; + children = ( + 3771D2E74B9C62FD95124980CA0AB61A /* DDBaseImageView.h */, + DA1B4D36BDC5BF26A01A004BABC763DD /* DDBaseImageView.m */, + ); + name = DDBaseImageView; + sourceTree = ""; + }; + E04866305724F29E49C507A3DEFEED52 /* NSObject+DDCategory */ = { + isa = PBXGroup; + children = ( + 20697AEF7802331E3C05E0E40131C8C8 /* NSObject+DDCategory.h */, + 3BFF040C3B7EB4B06F8327F826C92823 /* NSObject+DDCategory.m */, + ); + name = "NSObject+DDCategory"; + sourceTree = ""; + }; + E1B5550CF5DABF4FD83024E4AA6A0620 /* DDImage */ = { + isa = PBXGroup; + children = ( + 0BB39ACAB29B66006E95096B64A97A23 /* DDImage.swift */, + ); + name = DDImage; + sourceTree = ""; + }; + E20BBB04CD1F68B30D601B626A95B81B /* DDBaseModel */ = { + isa = PBXGroup; + children = ( + 993C86813F3952C70B72D38AB0A1BEC0 /* DDBaseModel.h */, + 490AD0FD50CAEABE5F4B573941F31CB4 /* DDBaseModel.m */, + ); + name = DDBaseModel; + sourceTree = ""; + }; + E2208680D52430D6C35B0443D012F5F7 /* JCore */ = { + isa = PBXGroup; + children = ( + 4B53FA09419FB8F220E6E98F5080DCB1 /* Frameworks */, + 7EF786229C89157C7EC0897F34E69BD0 /* Support Files */, + ); + name = JCore; + path = JCore; sourceTree = ""; }; E4A53510D8AD75F598BE345AAF71D662 /* Products */ = { @@ -6633,158 +6644,82 @@ name = Products; sourceTree = ""; }; - E59CA764E50F3D20B3572429474580F9 /* RxCocoa */ = { + E53B50DEE0C769C6CADA589500AE677A /* Support Files */ = { isa = PBXGroup; children = ( - 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 */, + 6D7A641E3F429C5D5861A239E961CABB /* DDMAMapKit_Private.modulemap */, + AA3C07D84C8D2A116EF8BDDDAA93B6FE /* DDMAMapKit_Private-dummy.m */, + EC053A20DF2E0B9FE9C6C257B6E95789 /* DDMAMapKit_Private-prefix.pch */, + A7B2210F3FF8CA2A14D7B3543ED66017 /* DDMAMapKit_Private-umbrella.h */, + 92D6CB3786C70E22E0FF1BF764EDDE31 /* DDMAMapKit_Private.debug.xcconfig */, + F74DB77F6B56A4E0C52E7A4608745F6E /* DDMAMapKit_Private.release.xcconfig */, + 84C77E1E2CEC777BAFDEC2E002852B84 /* ResourceBundle-DDMAMapKit_Private-DDMAMapKit_Private-Info.plist */, ); - name = RxCocoa; - path = RxCocoa; + name = "Support Files"; + path = "../Target Support Files/DDMAMapKit_Private"; sourceTree = ""; }; - E647F7D9F13CC8BA89FD098784CC6C72 /* Frameworks */ = { + E624C2FC635B2A432E4E17E7AD666989 /* DDMALocation */ = { isa = PBXGroup; children = ( - F1DA3E0CFEC46A80560A01E5382DDD5A /* jpush-extension-ios-2.0.1.xcframework */, + 1DE4B683C0352BB899D3372814A4F3AA /* DDMALocationManager.h */, + D75C33C7224002A89D976BEA77AF3C42 /* DDMALocationManager.m */, + ); + name = DDMALocation; + sourceTree = ""; + }; + E6C0BEF611E4AE89D43C04BACCFE6C98 /* Frameworks */ = { + isa = PBXGroup; + children = ( + ECAD3AC69080823317C1EC6C939C5DFD /* AMapLocationKit.framework */, ); name = Frameworks; sourceTree = ""; }; - E692A3CAFF7A2566CE51EFBEF83A8562 /* UISwitch+DDCategory */ = { + E7A22735D30342E5C51125BDDD3DBCC8 /* DDBaseTableView */ = { isa = PBXGroup; children = ( - 92AC33A1E1ECB9099CD946A8B7680767 /* UISwitch+DDCategory.h */, - DA7C542A8A0FEF11F40CAD6B4B783081 /* UISwitch+DDCategory.m */, + 2B8ABD9E511421907B266B104A52DCB2 /* DDBaseTableView.h */, + 509C44695E41EECE9FD48B08D9E1A161 /* DDBaseTableView.m */, ); - name = "UISwitch+DDCategory"; + name = DDBaseTableView; sourceTree = ""; }; - E69E5D9EFC37B4E8DCD427A43CA9019E /* DDBaseImageView */ = { + EA35D0B7B5FB1070B3E164E1D7552E32 /* Resources */ = { isa = PBXGroup; children = ( - B2A4AC94A106CB444D55A3070F70FBD2 /* DDBaseImageView.h */, - 5C2D7260426F88BA7D0B8F13FFCE24BE /* DDBaseImageView.m */, + 66B18AE978878166FAA3B309F285DD8F /* BRAddressPickerView.bundle */, ); - name = DDBaseImageView; + name = Resources; sourceTree = ""; }; - E7BCB2896557F3B30896A7A76B52658F /* UINavigationBar+DDCategory */ = { + EBECB5733854FC44DB788179CBB25B21 /* Support Files */ = { isa = PBXGroup; children = ( - D096A66A7BEE99520FA331B561FDE88D /* UINavigationBar+DDCategory.h */, - 5CAC48F6B20494CE156685ACBB595423 /* UINavigationBar+DDCategory.m */, + 18089FAFC863B0EA2C363F783E66A668 /* SwiftyRSA.modulemap */, + 7CA0D30FAACB5B4E05E683B2ACCF273E /* SwiftyRSA-dummy.m */, + 71B7D251D226F3D82928A74A97735476 /* SwiftyRSA-prefix.pch */, + FF891ED240B6348B88DC810A911F8F6A /* SwiftyRSA-umbrella.h */, + 646623E37EE9BCD93A92BA48EA2C85F7 /* SwiftyRSA.debug.xcconfig */, + C9FD3B7299BEDC109194BB0B95A2FA1A /* SwiftyRSA.release.xcconfig */, ); - name = "UINavigationBar+DDCategory"; + name = "Support Files"; + path = "../Target Support Files/SwiftyRSA"; + sourceTree = ""; + }; + EC98C18FB60570E049C52ECF0340B3DC /* DDMAMapKit_Private */ = { + isa = PBXGroup; + children = ( + E624C2FC635B2A432E4E17E7AD666989 /* DDMALocation */, + 7D5BB167042E92B0AA7C05DB771006F9 /* DDMAMap */, + 41CAE9A3311FB5AC8DBCFA812D0B0825 /* DDMANaviManager */, + 2DB663BD94AAB886D09256DB595F712C /* DDMASearch */, + 7DEBC69C4C9AC5EFE4D4E8BE9B8475F2 /* DDMATrackManager */, + B7D60F0C65553ECDA4EB1CC7949E1196 /* DDMAUtil */, + E53B50DEE0C769C6CADA589500AE677A /* Support Files */, + ); + name = DDMAMapKit_Private; + path = DDMAMapKit_Private; sourceTree = ""; }; ECFEDF123D996446174017D5A67EDBEB /* Pods-OrderSchedulingNotificationService */ = { @@ -6801,103 +6736,146 @@ path = "Target Support Files/Pods-OrderSchedulingNotificationService"; sourceTree = ""; }; - EF4A61E433EEADD3E0CDB4100FA65852 /* Support Files */ = { + ED39FB55128DDF2E701E3B5037E926B4 /* DDCategoryKit_Private */ = { isa = PBXGroup; children = ( - 4143CB6BC609E3B0C55CDCB262048484 /* JCore-xcframeworks.sh */, - 7EA821B861F99F932833744748A753B1 /* JCore.debug.xcconfig */, - F19F5369A2C30CBEB436D563F27A627D /* JCore.release.xcconfig */, + F819611A9738F394B8B061A5CB6FF438 /* DDCategory.h */, + F76EFBE1336620BE12ED165E2283B4F0 /* CALayer+DDCategory */, + 1A9074EE5EAC8F5CF1B8E0EC326E6965 /* NSAttributedString+DDCategory */, + 78E18749496542D85A38DEA0F36C4CE9 /* NSBundle+DDCategory */, + E04866305724F29E49C507A3DEFEED52 /* NSObject+DDCategory */, + A31737C77CFE86F9EA16352082A57AFD /* NSThread+DDCategory */, + 96FBBB615FD49317057B94851499704D /* NSURL+DDCategory */, + 84C9362A6F7573CCFB73F250015263AE /* Support Files */, + FDF8717CB6B7A6DCD4F13209817685E7 /* UIApplication+DDCategory */, + 4F6BA5913EF60A1D0A902EBB997F7A83 /* UIBarButtonItem+DDCategory */, + 2A65A0F02F86D7896CA1EA9A8976C89A /* UIButton+DDCategory */, + 28017A9F95CC246CD9F0D6CA2B32065C /* UICollectionView+DDCategory */, + 31D76799BF96DEDF050CB4309DC475C2 /* UICollectionViewCell+DDCategory */, + 9ED88B7D1A7D8EB1442B4D0729471D15 /* UIFont+DDCategory */, + 2ABFCC13E8D40EADA561BA4F63E47765 /* UIImage+DDCategory */, + 8B747F2CC3FF1D562C3E623FCFEEAC92 /* UIImageView+DDCategory */, + DC1CBA3BFEB651299BB706E1D521BECE /* UILabel+DDCategory */, + 3E1E9494647A60BA2EB950F8BCE3A9A3 /* UINavigationBar+DDCategory */, + 27402CBCC89DD6EAB4FD8E4CA4004620 /* UINavigationController+DDCategory */, + CFD85C1BD676F87E548BC4ADB54BB134 /* UINavigationItem+DDCategory */, + 05608B7AA12699BEA169257C8229A79E /* UIScreen+DDCategory */, + F61B466F9AAA60E0DC68D09A49CEE5A7 /* UIScrollView+DDCategory */, + 89A7CCE7DC89B991916A3BFF15E1E3B0 /* UISwitch+DDCategory */, + 998586D01EEB6734F25AE8FB0C33F402 /* UITabBarController+DDCategory */, + 61B6AF7F89BA45A67C11CF3391B733DB /* UITableView+DDCategory */, + 69571EF160AE3788924914AA48194E39 /* UITableViewCell+DDCategory */, + D3C32330E7A7AE7CC6928357A10DE2E9 /* UITextField+DDCategory */, + 316E2E693E9A80A73750711CBB0D5DC3 /* UITextView+DDCategory */, + 157E31F563EC7C03322276563602DF2E /* UIView+DDCategory */, + 23C2978BE33E1D1566CDA79BACA5CC8C /* UIViewController+DDCategory */, + D3DC027C6833D1F4CFAEE67829F1A7C6 /* UIWindow+DDCategory */, + ); + name = DDCategoryKit_Private; + path = DDCategoryKit_Private; + sourceTree = ""; + }; + F0A5925BA726C988CFD1FDA382A9F499 /* DDAudioPlayerKit_Private */ = { + isa = PBXGroup; + children = ( + A8A3477E5056C45505EFD33642952734 /* DDAudioService.swift */, + 4C70A4FB23FA3E14CA394467F423DD78 /* DDSpeechSynthesizer.swift */, + 614CE5127731C4DC14E683B7A9E54ABC /* Support Files */, + ); + name = DDAudioPlayerKit_Private; + path = DDAudioPlayerKit_Private; + sourceTree = ""; + }; + F524C5DB952E85AF1668CA38F55EEE95 /* DDImageView */ = { + isa = PBXGroup; + children = ( + C7E9B643D85DBFD37D8B69E4BC25DF55 /* DDImageView.swift */, + ); + name = DDImageView; + sourceTree = ""; + }; + F58459BD25A9AED8EB16DE906C4E7B96 /* Support Files */ = { + isa = PBXGroup; + children = ( + CD5BACAB19DCE4D9237BCAC42E2683C8 /* AMapNavi-NO-IDFA.debug.xcconfig */, + F35757BC1AC893C68843463D0111FD70 /* AMapNavi-NO-IDFA.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/JCore"; + path = "../Target Support Files/AMapNavi-NO-IDFA"; sourceTree = ""; }; - F1456EB9D97FBA74943ED92DB3BE458E /* DDBaseAnimation */ = { + F61B466F9AAA60E0DC68D09A49CEE5A7 /* UIScrollView+DDCategory */ = { isa = PBXGroup; children = ( - 9BA363F724B2B92DBF5B50160980F13E /* DDTransitionAnimation */, + 652A6EB0A106827AC3551F9373C42C7C /* UIScrollView+DDCategory.h */, + 668382E77DF65963BB502C803257FD39 /* UIScrollView+DDCategory.m */, ); - name = DDBaseAnimation; + name = "UIScrollView+DDCategory"; sourceTree = ""; }; - F1FB5340A84CAAD6B52B2585C5F0356A /* DDMASearch */ = { + F76EFBE1336620BE12ED165E2283B4F0 /* CALayer+DDCategory */ = { isa = PBXGroup; children = ( - 0364DE9DE9160B4FA7D6B950AA386194 /* DDMASearch.h */, - 9497B3B2C8BBA7CB89EF01382C75DDCE /* DDMASearch.m */, + 838E315A029BCA82AF0F157D6100C0C3 /* CALayer+DDCategory.h */, + 50D2536271FE329E1393FFB45239420C /* CALayer+DDCategory.m */, ); - name = DDMASearch; + name = "CALayer+DDCategory"; sourceTree = ""; }; - F230C033C256224BF4D1946B1DD01743 /* DDUIPanGestureRecognizer */ = { + F7E1277C5D7FA7E641510C5ECE51A065 /* SwiftLog */ = { isa = PBXGroup; children = ( - BB2559B43ED5D8E1230FB84F96A3B679 /* DDUIPanGestureRecognizer.swift */, + 4D0E3A13A93E334F804A60CCADB72F1A /* DDSwiftLog.swift */, ); - name = DDUIPanGestureRecognizer; + name = SwiftLog; sourceTree = ""; }; - F4484797CF04107EF44BC59E034E402A /* Support Files */ = { + F917ECADA7A9236C93671CFDB01F6C6A /* Support Files */ = { isa = PBXGroup; children = ( - C5C437B57F6267154B51FA60533A916D /* JPush-xcframeworks.sh */, - 6A9B731C7C9133C11F69006BDCA26F50 /* JPush.debug.xcconfig */, - 4C54F9CD91183CE4ADEC1F83999D3950 /* JPush.release.xcconfig */, + D96A1573EEDF722917BAFADBD0C4A1BE /* DDNetworkingOfAlamofireKit_Private.modulemap */, + 1F126DAE986142BBF75173CC39F97817 /* DDNetworkingOfAlamofireKit_Private-dummy.m */, + 842381777B3E83A806F12A254C7542F3 /* DDNetworkingOfAlamofireKit_Private-prefix.pch */, + EB2475FA10D60EF9C01C950A862E50E6 /* DDNetworkingOfAlamofireKit_Private-umbrella.h */, + 9E59429EDAF06FD126D49DD4D663FE6A /* DDNetworkingOfAlamofireKit_Private.debug.xcconfig */, + 7156CB3F8329BB0793CFFB6544972637 /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/JPush"; + path = "../Target Support Files/DDNetworkingOfAlamofireKit_Private"; sourceTree = ""; }; - F4D97DFDD33B63C2FE8F06B0CFD00F2C /* Pod */ = { + F92370935006EF4669AF06F3505AF17E /* Support Files */ = { isa = PBXGroup; children = ( - 522D25F1600F0C13CE316743AF9EE20F /* DDUIGestureRecognizer.podspec */, - A251B9B3980C94FCC632EE2A9E09CCC5 /* LICENSE */, - 3BA50CAB6FDB17485A8E123464C43BDE /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - F501F548B27A3875898CBCECE28ED6AC /* Frameworks */ = { - isa = PBXGroup; - children = ( - 16A88B0F2E7CE77CF00D82E7D5A39E82 /* AMapNaviKit.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - F726CBE70F839B05F88828888AE8CE04 /* Resources */ = { - isa = PBXGroup; - children = ( - 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 */, + 06877DE99F960EA4A9DB9E24B482DADF /* DDBasicControlsKit_Private.modulemap */, + 92A01A283164F32E1D091910FFDB82BA /* DDBasicControlsKit_Private-dummy.m */, + FE5A63F96559B2E90D35C07D7B379DA9 /* DDBasicControlsKit_Private-prefix.pch */, + AF2256806EB74927FFAEBE52134E034D /* DDBasicControlsKit_Private-umbrella.h */, + 3DFB8D71098F786D73A6F9575F54791A /* DDBasicControlsKit_Private.debug.xcconfig */, + C3E43700B862AB0F324553D1A1BBE29F /* DDBasicControlsKit_Private.release.xcconfig */, + A5026644938F169D658D8CDB107025AB /* ResourceBundle-DDBaseViewController-DDBasicControlsKit_Private-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/Kingfisher"; + path = "../Target Support Files/DDBasicControlsKit_Private"; + sourceTree = ""; + }; + FB25B28967923BE1AB2A53FF1F06D2E5 /* DDDateKit_Private */ = { + isa = PBXGroup; + children = ( + 75A9C1387CEC025461AA7DEB8F1EEE69 /* DDDate.swift */, + 1D6D9C6ED2B5A50A6B55E02B99988FE8 /* Support Files */, + ); + name = DDDateKit_Private; + path = DDDateKit_Private; + sourceTree = ""; + }; + FDF8717CB6B7A6DCD4F13209817685E7 /* UIApplication+DDCategory */ = { + isa = PBXGroup; + children = ( + 4B26A5E3DB3AD5EE64E8DACAC02AE77C /* UIApplication+DDCategory.h */, + 087942B39BA653DEDEA65CCA0A22F61A /* UIApplication+DDCategory.m */, + ); + name = "UIApplication+DDCategory"; sourceTree = ""; }; /* End PBXGroup section */ @@ -6925,6 +6903,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 05491C13AB5E4C89023D9FB432A1FBF0 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 9685A4371808D3DC3A2E117ED06103D0 /* RxRelay-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 080AD7C5EC4077154C668E8AA84C6D55 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -7036,14 +7022,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 21B45C6A59F97E83C8594564549F669D /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - EF352AC4AAACA09881FD704AC2C16988 /* RxRelay-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 25DC13C11DF47FD9E8A342C5518BD7E7 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -7169,22 +7147,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4E182111D8612718A384C6996FB6AE61 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - A101325DEF7860D56A8FF2C659B3FB04 /* Kingfisher-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 54D58BA70E2DDDEEAF5D3CCA85FF958E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - F912ACEC93342E5C7735FDE7E273A96A /* RxSwift-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 5E052E8D1CE35F445A62E5D30932A959 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -7212,6 +7174,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 5FA0BDB106D5CDC587242F9658134231 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 0D1A811C791795A8542C361D563C1457 /* RxSwift-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 74A0DD815A7B2BB105CD3FD7D602C9C7 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -7327,46 +7297,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D432C21B88491E94AE33272968A75C1F /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 427A109E0FDAC814930510E6B45127A6 /* CALayer+DDCategory.h in Headers */, - 8773A2D17F64B052FB58DE3DCB70ED6D /* DDCategory.h in Headers */, - DFD2A7464E782629C015E7B00863B49F /* DDCategoryKit_Private-umbrella.h in Headers */, - 4A4A6A4AB239531AEDA08C8C49D39A6F /* NSAttributedString+DDCategory.h in Headers */, - 9CD009CCE47386B34B9B24078174F588 /* NSBundle+DDCategory.h in Headers */, - BFE6B8F2BF0278F8ED0410D255EBFB34 /* NSMutableAttributedString+DDCategory.h in Headers */, - 397F953120E27B83B099127611936656 /* NSMutableParagraphStyle+DDCategory.h in Headers */, - 5F9B87C411C013A2A4151C1C26C6B1FA /* NSObject+DDCategory.h in Headers */, - 2F9E0D4337A8560936538DCF9E045BD9 /* NSThread+DDCategory.h in Headers */, - 46260B6630DDD84609FF722514A05DB5 /* NSURL+DDCategory.h in Headers */, - F2FB81C4DDAFF37487826F4D3058755D /* UIApplication+DDCategory.h in Headers */, - 4C8FCD807EFF6FC9A36B30853BE9F61C /* UIBarButtonItem+DDCategory.h in Headers */, - BE004CDB7FCE8A22C20437F19DE496B3 /* UIButton+DDCategory.h in Headers */, - C587934736DDB947BCE21BD24776E3D8 /* UICollectionView+DDCategory.h in Headers */, - 59ED634AD1AF8B308666AFD696ED77AB /* UICollectionViewCell+DDCategory.h in Headers */, - 33AC18826E90BE17D7F1A342C868D7E2 /* UIFont+DDCategory.h in Headers */, - B260AC27986F3935925F8A2D97582B5C /* UIImage+DDCategory.h in Headers */, - F602AEED3F480E3D5DC5EDB2C89BD69F /* UIImageView+DDCategory.h in Headers */, - 645ECF5547FF7E69909B1B8E79464806 /* UILabel+DDCategory.h in Headers */, - 7A7F0269C175EB857FF42B4F9DD8ED85 /* UINavigationBar+DDCategory.h in Headers */, - E5FC3FFDA3929A9150DAD01B7B12006A /* UINavigationController+DDCategory.h in Headers */, - 30886370AA81B1E7AC2958154611A7C7 /* UINavigationItem+DDCategory.h in Headers */, - CF5C9A5DA9801656CF76B0C30CF3DC05 /* UIScreen+DDCategory.h in Headers */, - 52C9B66237274EABBD850C9C2B7470C5 /* UIScrollView+DDCategory.h in Headers */, - E85FF279E9B06A1992CA04707CD12F23 /* UISwitch+DDCategory.h in Headers */, - F6860F7056AE1B0FB85AA3E7CCE469E5 /* UITabBarController+DDCategory.h in Headers */, - D34C2ED1D82EAACF5113BB1E136A2440 /* UITableView+DDCategory.h in Headers */, - 037DA71DFD7C14403F2A0AD5B4B4BB46 /* UITableViewCell+DDCategory.h in Headers */, - A07259D50DF08034F108E32D8794BBB7 /* UITextField+DDCategory.h in Headers */, - 63AB5017F5A15BFAE51EC1C05E672D46 /* UITextView+DDCategory.h in Headers */, - CDED1715E3C7C86CFFEB8635D4D01E32 /* UIView+DDCategory.h in Headers */, - B02743E1A80CDD4175DEE480F5D8A143 /* UIViewController+DDCategory.h in Headers */, - 54F6E020F2DF279CCFCA75239CC40C93 /* UIWindow+DDCategory.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; D94AB6A603FC4D91AD9C543BE2CB3C09 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -7409,6 +7339,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + DF83C1152A6F621AC4CD165D473E5B3B /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + A8350D28113F25A35A21BDA9F2FD8368 /* SnapKit-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; E3A88505EB133C37DD4197271EBE6441 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -7433,14 +7371,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - EB560AB2D38390452E41C65421EA8F87 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 976AAAA309D530E98B3A32DB0372A57B /* SnapKit-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; EC6583CC1D76B0C3DA8E8417A194DC92 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -7449,6 +7379,54 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + ED46E30A4582CF124F07EE2405367BFF /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 17A92EEA935899A65BFE2C8B5ADCFD9B /* CALayer+DDCategory.h in Headers */, + 7D936B67BEBF724223E19CCE0E17BFF2 /* DDCategory.h in Headers */, + 66EDC4F0B9003016D81C3F7D177D6625 /* DDCategoryKit_Private-umbrella.h in Headers */, + EED94B9C0DDEA302F0DA691B4B28088B /* NSAttributedString+DDCategory.h in Headers */, + 305215A4B4F53C554E7FA7D013915954 /* NSBundle+DDCategory.h in Headers */, + DFC965A9E961709D6B1AAF52AE44B4BD /* NSMutableAttributedString+DDCategory.h in Headers */, + 5BB30E1122D6B5C92B596B7839DCDF00 /* NSMutableParagraphStyle+DDCategory.h in Headers */, + 68E2EB96ADD02E7BB9F052B4B33F111A /* NSObject+DDCategory.h in Headers */, + 37BA615A168F40110AA141834FC96956 /* NSThread+DDCategory.h in Headers */, + B224B816DD7F5B7C20E53780C26163F5 /* NSURL+DDCategory.h in Headers */, + DBA4188BE9A5BE8EC9169C81F0D27C31 /* UIApplication+DDCategory.h in Headers */, + E363802ECE35698B79AD258AD2CAFB6B /* UIBarButtonItem+DDCategory.h in Headers */, + 3ED94B5871CF835E3F3B5FFCEA1405DC /* UIButton+DDCategory.h in Headers */, + D3B18F24C311A6413C7DB4525FB526AD /* UICollectionView+DDCategory.h in Headers */, + 7DE42C387F42A8750F35683020699F83 /* UICollectionViewCell+DDCategory.h in Headers */, + D3E51D45C66CAF3FB67B1B8F63B71CEA /* UIFont+DDCategory.h in Headers */, + ACF63289846D4B66AB4A5A6910C63B94 /* UIImage+DDCategory.h in Headers */, + 2A854D8E21E27051797A922AEB5A9551 /* UIImageView+DDCategory.h in Headers */, + A28602D71D401DC2711F272078337585 /* UILabel+DDCategory.h in Headers */, + 5A34B62D619873887A4B949D7F548FFB /* UINavigationBar+DDCategory.h in Headers */, + 81F3304EB73E7749BCE7BA366924C7D6 /* UINavigationController+DDCategory.h in Headers */, + 68F046F4FDD449625A4B144954ABFD4F /* UINavigationItem+DDCategory.h in Headers */, + 30E36A3FBE43527FAE6BB1A0CB663411 /* UIScreen+DDCategory.h in Headers */, + 12D78B7FCE8BE9A137700D58C9C491CC /* UIScrollView+DDCategory.h in Headers */, + 7883AAD62884AE78827E1C74222CD896 /* UISwitch+DDCategory.h in Headers */, + 6F1069801D599DD2F8D1BCC610B1685C /* UITabBarController+DDCategory.h in Headers */, + E3DA37159E09C710B735DDEA47F754CE /* UITableView+DDCategory.h in Headers */, + 7F788186B54DE2B3C290A67BA8F5FB7D /* UITableViewCell+DDCategory.h in Headers */, + 62F4B9B2C5999BC71B820F292BD9D244 /* UITextField+DDCategory.h in Headers */, + 891EDBB92ECA26F04D7390CA8E906A32 /* UITextView+DDCategory.h in Headers */, + AA8FC66F4E2584E3DA52381E26721C89 /* UIView+DDCategory.h in Headers */, + 2044A3275F34FBA9C62E91F3A70571CA /* UIViewController+DDCategory.h in Headers */, + 2A0807F8CA4518AFFF47520CD2303443 /* UIWindow+DDCategory.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + FE792686F402B83A4DEB89AEFA1F4FDE /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 39FFE68A2DE066898D0EA1643D3C9950 /* Kingfisher-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ @@ -7464,7 +7442,7 @@ buildRules = ( ); dependencies = ( - CCD946E7CF6A0072F537025D9953CA7E /* PBXTargetDependency */, + 694008D2BDA96DBB7A9A153857EE266D /* PBXTargetDependency */, ); name = DDControlsKit_Private; productName = DDControlsKit_Private; @@ -7482,8 +7460,8 @@ buildRules = ( ); dependencies = ( - 7DE31320F91CB39DA515FA66C60DB142 /* PBXTargetDependency */, - DC084FF83353C0C8D1D42A6172AC15AC /* PBXTargetDependency */, + EB4A9DDB747A065200DC01E9EC8C6E1F /* PBXTargetDependency */, + A94F309E5968153C80B235382221CA3A /* PBXTargetDependency */, ); name = DDBasicControlsKit_Private; productName = DDBasicControlsKit_Private; @@ -7502,7 +7480,7 @@ buildRules = ( ); dependencies = ( - 7AEAE681AF0C1568AE38527190C050F6 /* PBXTargetDependency */, + 4D69279835C93CF704DEEEE5EA52D913 /* PBXTargetDependency */, ); name = DDTimerSwiftKit_Private; productName = DDTimerSwiftKit_Private; @@ -7511,12 +7489,12 @@ }; 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */ = { isa = PBXNativeTarget; - buildConfigurationList = 1285E08F80976CDDCBDC72F7EE8A5A91 /* Build configuration list for PBXNativeTarget "SnapKit" */; + buildConfigurationList = CB5C407FDF8A97D264FB9B95FF293B5E /* Build configuration list for PBXNativeTarget "SnapKit" */; buildPhases = ( - EB560AB2D38390452E41C65421EA8F87 /* Headers */, - 7B13A5F10317CE227DC583BE376A739A /* Sources */, - 310D89F44AF406825938E446D4D20FE4 /* Frameworks */, - 6A6BFAC73E8D357F00B4440AC6DFCC8B /* Copy generated compatibility header */, + DF83C1152A6F621AC4CD165D473E5B3B /* Headers */, + AA32A31DC2A9084146DDDA0F4C7A4052 /* Sources */, + A0C3B490B0BBB576A5A389A6E1CBE889 /* Frameworks */, + 925B2E4A6DE459177C29E0D5D2941B49 /* Copy generated compatibility header */, ); buildRules = ( ); @@ -7592,9 +7570,9 @@ buildRules = ( ); dependencies = ( - 29CBFB8B196E30E5A5C8856E18369542 /* PBXTargetDependency */, - 709DD5367830DAF1A9AFEE802CC54330 /* PBXTargetDependency */, - 7767D76F3711E0588664662FD611A83F /* PBXTargetDependency */, + F3E3C16596BE29B08D47B054386E884C /* PBXTargetDependency */, + FA5523DDF0C52A49F75D434F1276A9DF /* PBXTargetDependency */, + 74D8B4A4B63B7E6A734C12BB5E04ABBF /* PBXTargetDependency */, ); name = DDProgressHUDKit_Private; productName = DDProgressHUDKit_Private; @@ -7621,17 +7599,17 @@ }; 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */ = { isa = PBXNativeTarget; - buildConfigurationList = 942AAD492F168723E0E550674363AAC9 /* Build configuration list for PBXNativeTarget "RxRelay" */; + buildConfigurationList = 459C39D831B21662FD7B92FF4CB12EFF /* Build configuration list for PBXNativeTarget "RxRelay" */; buildPhases = ( - 21B45C6A59F97E83C8594564549F669D /* Headers */, - 75600482F4E6F7647C31898990F3D61D /* Sources */, - 52322972281C74B9623D3B4D2AF8CFFF /* Frameworks */, - 24947CD770DDC4235608C6DFFD07A87C /* Copy generated compatibility header */, + 05491C13AB5E4C89023D9FB432A1FBF0 /* Headers */, + 85EA30FC3BB560BD84E4E496B794B060 /* Sources */, + 5454C01D08BFE12389995A3AF191DA4B /* Frameworks */, + 00493CEE13608F8846DF7EAD73A13AAC /* Copy generated compatibility header */, ); buildRules = ( ); dependencies = ( - 385A31B8CC411AD767051347DA77BECB /* PBXTargetDependency */, + 3C59ED849FA57B9726FD044FE4D57B53 /* PBXTargetDependency */, ); name = RxRelay; productName = RxRelay; @@ -7675,11 +7653,11 @@ }; 5C23965029860967865B3429B5E29092 /* DDBasicControlsKit_Private-DDBaseViewController */ = { isa = PBXNativeTarget; - buildConfigurationList = 123DF9164133C4CEA2B1D6F615279277 /* Build configuration list for PBXNativeTarget "DDBasicControlsKit_Private-DDBaseViewController" */; + buildConfigurationList = 162D806A875A5F4C2C0CC37ADEA32A28 /* Build configuration list for PBXNativeTarget "DDBasicControlsKit_Private-DDBaseViewController" */; buildPhases = ( - C837CF652AEAF94A08781D7DF6245666 /* Sources */, - 613DA62256A2BF27132304CFAE239D31 /* Frameworks */, - 9A5394ABFDE4246A127AE065B6268104 /* Resources */, + 02F46CF0E89C1FE321AD4DB9D2770A8A /* Sources */, + B0D3F9C5F1FCE8349AAADFB52098D8FC /* Frameworks */, + 9AC027B0F38B0D8305C8691EA1DD8DA9 /* Resources */, ); buildRules = ( ); @@ -7692,11 +7670,11 @@ }; 6056870867CC4728BCEF2E5EBDD1DCB3 /* DDMAMapKit_Private-DDMAMapKit_Private */ = { isa = PBXNativeTarget; - buildConfigurationList = 562E027EFC698463969F0B8EFB04C81B /* Build configuration list for PBXNativeTarget "DDMAMapKit_Private-DDMAMapKit_Private" */; + buildConfigurationList = E924DFB5B284D17EB484320E97901020 /* Build configuration list for PBXNativeTarget "DDMAMapKit_Private-DDMAMapKit_Private" */; buildPhases = ( - 2D0C2208E571879FF344C75920540CB2 /* Sources */, - B0CA2911E608817E4C030D2C329EF659 /* Frameworks */, - AB30B9B422D2E0064CFC161B9667B869 /* Resources */, + FC3E125A94295E17EF57B3CDDE1E8852 /* Sources */, + 968CCC89618CA00ADDB5DBE8F85DC9C1 /* Frameworks */, + 0560CB003C046C965637B6AEE5DB727C /* Resources */, ); buildRules = ( ); @@ -7753,7 +7731,7 @@ buildRules = ( ); dependencies = ( - ACCA247429589E366AFECD2A3B93E334 /* PBXTargetDependency */, + 20E846B469C977458E609EC3DD47212C /* PBXTargetDependency */, ); name = "Pods-OrderSchedulingNotificationService"; productName = "Pods-OrderSchedulingNotificationService"; @@ -7771,47 +7749,47 @@ buildRules = ( ); dependencies = ( - 5ECA5DA01277C10271EE3E9BB610E11C /* PBXTargetDependency */, - 2991011260700AD5070574665735D38F /* PBXTargetDependency */, - B0BC7FF229C7EB6A93830C07975EE636 /* PBXTargetDependency */, - 088E5F9FC7B365460A1F6592F14C490F /* PBXTargetDependency */, - CD28A000E7DC343CBBE73A65A5B29B60 /* PBXTargetDependency */, - 8AF7F563D9D80245B737DDCB1094BEBD /* PBXTargetDependency */, - 38DC425CDB65EE0D4086B9FD3E1E9084 /* PBXTargetDependency */, - C51B17A0E464B51430708347F8938918 /* PBXTargetDependency */, - EA109BA48DC84C59CB155D962EB9EFB1 /* PBXTargetDependency */, - 24C1A345398D449A5F3C1DB62159EC74 /* PBXTargetDependency */, - 7741D95D36B59C1D406020806ADD3E1C /* PBXTargetDependency */, - 07AE048115F4C952C7423CC9F4E594CE /* PBXTargetDependency */, - 7E4BA4673EF2B57D4B01C3DE0ADE4136 /* PBXTargetDependency */, - 6E6C6CBF520949E1C43CDA6BFD4C3F62 /* PBXTargetDependency */, - 0F2BACD7A00E56B500CCA9CFF04EE820 /* PBXTargetDependency */, - 90C8F458448138BA1676591065575D12 /* PBXTargetDependency */, - 6685131EDF9683EDE4BDFF0A0E7BDAD1 /* PBXTargetDependency */, - 750408CBAB562035210AEA911C669508 /* PBXTargetDependency */, - 1F3276E5C40ED65DBB07D899E5B27F09 /* PBXTargetDependency */, - 8AAAECF8A91296E3F86B91BD9C8D8A45 /* PBXTargetDependency */, - AA136B4E7C3667AE18503AF0DE505E0E /* PBXTargetDependency */, - 3393AAACA373DA8FE2AA0BF45DC84E77 /* PBXTargetDependency */, - C7531587D5C0B820BF4A57360359CEBB /* PBXTargetDependency */, - 018C56E00F6F18351EB26F5816BC647D /* PBXTargetDependency */, - A23BB7069F410F7CCEEB846B5AA8F778 /* PBXTargetDependency */, - D9248A4DF0E125D1E271830EE6BCB640 /* PBXTargetDependency */, - 00F339DC9CF0E678733A13112A7F33D6 /* PBXTargetDependency */, - 76DE7A26183212D0EC6F2D91B0DB8C1E /* PBXTargetDependency */, - EF9E62E51A6D6DFA8F0476BB49ABB9F7 /* PBXTargetDependency */, - 0107FB523CB66CCA868FB8747E05083E /* PBXTargetDependency */, - 0DD6F7BEE5256E48B02794127ED8F3BD /* PBXTargetDependency */, - 9E04F1F97B6390F1CF303274DF5F19D3 /* PBXTargetDependency */, - 686C6B7ECEE25D7E9A804CF884AAA047 /* PBXTargetDependency */, - 61347524C45D8DCFEA139958D915942F /* PBXTargetDependency */, - 103BB61FC0BE6031F480358644C625AA /* PBXTargetDependency */, - 2CA781C3715DBBB74E0CAF0CB9186F6A /* PBXTargetDependency */, - 23029DE5BA2B70D6FD5BC179F592CCC0 /* PBXTargetDependency */, - E597F7FDF8BD84558BF3D54E74BC2BF3 /* PBXTargetDependency */, - 31D306C549DA013B032B46D678F6E2B5 /* PBXTargetDependency */, - 67C77EF9C85D910E35808EDAF75693B5 /* PBXTargetDependency */, - 6C73F26A21207CAB481E6839EBE225FD /* PBXTargetDependency */, + ACD3FAC9020986D8D5F65415C090EC32 /* PBXTargetDependency */, + 815B0673BCA619D9E15F8AE81B48B536 /* PBXTargetDependency */, + F1B3A0618EE8F0E663588A39F265CB81 /* PBXTargetDependency */, + 44E64EBAB94315EEC594FC2611257861 /* PBXTargetDependency */, + 6513D33D65E59132A583FEBE1A190AAB /* PBXTargetDependency */, + 4DC3F958CC023D8C1DBDF54657667346 /* PBXTargetDependency */, + 69E06BE0E33B59ED4DE0A4E985E0D113 /* PBXTargetDependency */, + FB148040C48B2C12957A24A16A2D2E09 /* PBXTargetDependency */, + E5EBDC5319C35CA8A25E739BD0366CE2 /* PBXTargetDependency */, + 907DCA0ACD130E500F0A4E45A900A34B /* PBXTargetDependency */, + 35883EFD50EF6085E9032510B0BFDFC6 /* PBXTargetDependency */, + B3BFED3F220D2AD59629ED5E93B3BDCC /* PBXTargetDependency */, + C230D426F4FB9864BDC3B0DFF13113F5 /* PBXTargetDependency */, + 84F58E7123FB0D988F520B385E87CEBF /* PBXTargetDependency */, + 049F6EC1CF7740B17AFD7C767CD10E41 /* PBXTargetDependency */, + 833BAE8A1EA015ECB047FE312982CDDB /* PBXTargetDependency */, + 9C3CF6A5F444819724FEA737DAACD249 /* PBXTargetDependency */, + DAD71FD8507916366EB8081410C9F742 /* PBXTargetDependency */, + 4CFA29FEF025ED4018C29010D4D50705 /* PBXTargetDependency */, + C071920D2F2887C1E9C5B3FDF3F2CEE9 /* PBXTargetDependency */, + E10AF3B15333E10A4BE626A2E7EB9E53 /* PBXTargetDependency */, + 7739AF89AA0E80E411A88113BCB3A16D /* PBXTargetDependency */, + A0452C6022B4840EB345A7EDC7A03870 /* PBXTargetDependency */, + 5C2904C95BA246EA11EF6B2903D3DF8C /* PBXTargetDependency */, + 317F39D3048A0CB5131AFECE9F363774 /* PBXTargetDependency */, + D41485C3C7FC43B7663172CAA5E8F41F /* PBXTargetDependency */, + 04CD55A42E67FD484262D7393F734155 /* PBXTargetDependency */, + 5738517D139C049F07B34EF78FCBEFCC /* PBXTargetDependency */, + 44B801317910D909951797E4158DC09A /* PBXTargetDependency */, + 7B6C1ADC968557F0E393658034097030 /* PBXTargetDependency */, + 57234C80DBED83A30DE704EAA05C4B5A /* PBXTargetDependency */, + 5AB6DF038F03264C8161637FFE12AF39 /* PBXTargetDependency */, + 91E5F41B8DB1AFA5831A0FDCED1D49B7 /* PBXTargetDependency */, + ED8C5AFE2AA8B7B1C01D163407DA5DA4 /* PBXTargetDependency */, + 907E82ADBBA8FE3064E048502E0384F5 /* PBXTargetDependency */, + EE1946988FB46D6D9BAA964F413567B6 /* PBXTargetDependency */, + 18B49BF2D6213EBD3A27067CEED34243 /* PBXTargetDependency */, + 77923E5B2D8E3E389721FAAF264EBFB5 /* PBXTargetDependency */, + 89F67EA1807EF87C9203BEA09D08B472 /* PBXTargetDependency */, + 487B53BC15CB27C5DA6CCE8ECE09F438 /* PBXTargetDependency */, + A703268D56E2929A4217B21A770D5C73 /* PBXTargetDependency */, ); name = "Pods-OrderScheduling"; productName = "Pods-OrderScheduling"; @@ -7830,8 +7808,8 @@ buildRules = ( ); dependencies = ( - 9F94B72A71C1B72399F6E8FB2BEAD97D /* PBXTargetDependency */, - B8146DD46F882DB65064B499FEF063D5 /* PBXTargetDependency */, + DBD068F4FCB242CBC85083DFEC221F03 /* PBXTargetDependency */, + F5D38CDBB39FA063353FFFE25D2A9F9D /* PBXTargetDependency */, ); name = RxCocoa; productName = RxCocoa; @@ -7840,11 +7818,11 @@ }; 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */ = { isa = PBXNativeTarget; - buildConfigurationList = 6749D8D2073D098876211DF78C11E6EB /* Build configuration list for PBXNativeTarget "DDCategoryKit_Private" */; + buildConfigurationList = 38EB0D5777A17CE7972869E448DAEB68 /* Build configuration list for PBXNativeTarget "DDCategoryKit_Private" */; buildPhases = ( - D432C21B88491E94AE33272968A75C1F /* Headers */, - 5DD957ED7921C7A7874458ABD9AF3D48 /* Sources */, - 4DB5B05385A51FFB6CD9FA9D9D8E3C4D /* Frameworks */, + ED46E30A4582CF124F07EE2405367BFF /* Headers */, + 5638858E827719B9FCCF74ECEE7425A0 /* Sources */, + 046CBA2A398CD183ADE01C76C5C2AE9E /* Frameworks */, ); buildRules = ( ); @@ -7937,13 +7915,13 @@ buildRules = ( ); dependencies = ( - 95C292A68A22FA2A527407777DDCC4D1 /* PBXTargetDependency */, - 02174DE51A36760997019864A9FDDEE9 /* PBXTargetDependency */, - 4BBB146F68289F4D7CC97F6F624715A0 /* PBXTargetDependency */, - E8D73F0D4B0AAB70F84089988E88AAD0 /* PBXTargetDependency */, - B5A89E50FDFBBA2B3EF3AF64101071EC /* PBXTargetDependency */, - 0E6E69BB0E96156D55A30DC698981C8B /* PBXTargetDependency */, - FBD9A37B03F64824D07CF9059246D082 /* PBXTargetDependency */, + 5E14D9EBA16225C33DE6F841CE72BEAB /* PBXTargetDependency */, + 6B27B704C42969169D1F30E30FF401BB /* PBXTargetDependency */, + ECA3FCF5488490409089D7C373D7348F /* PBXTargetDependency */, + 6D5A7B5147EC5B6CB4AC1C38E4DE61C5 /* PBXTargetDependency */, + FCC36C119757F4B0B940D92E721658AA /* PBXTargetDependency */, + A0F616C7AACF7F1AE3B0085FF5DEC2A6 /* PBXTargetDependency */, + 332FABFBE0912787B5B88E25C31D0F4E /* PBXTargetDependency */, ); name = DDMAMapKit_Private; productName = DDMAMapKit_Private; @@ -7980,9 +7958,9 @@ buildRules = ( ); dependencies = ( - D23EA3C839298996F5B4FF63E6B81EEF /* PBXTargetDependency */, - E67AB62A4EC1A7C573ADD88979B2A45D /* PBXTargetDependency */, - 7CB78832587A20087BCCCF3EDD6C44B0 /* PBXTargetDependency */, + 7A91BCABF42EFAAF7BD2DF07E22DE404 /* PBXTargetDependency */, + C5B7DFFF9CC47666CAEBA0A9DEB76527 /* PBXTargetDependency */, + AF14F805E766FB48CC84FC8EDA68F60D /* PBXTargetDependency */, ); name = DDNetworkingOfAlamofireKit_Private; productName = DDNetworkingOfAlamofireKit_Private; @@ -8062,12 +8040,12 @@ }; E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */ = { isa = PBXNativeTarget; - buildConfigurationList = 15936119862F3A65BB6E850B8C8C3C78 /* Build configuration list for PBXNativeTarget "Kingfisher" */; + buildConfigurationList = 1D026A45718C0C20C8ED5C15CA218D6C /* Build configuration list for PBXNativeTarget "Kingfisher" */; buildPhases = ( - 4E182111D8612718A384C6996FB6AE61 /* Headers */, - A7B9A005537C61A346B617BA04B236EF /* Sources */, - 119F8BA009CC14D24A977E51F04A2768 /* Frameworks */, - B8343EFB5BF703F9356DE454992A7189 /* Copy generated compatibility header */, + FE792686F402B83A4DEB89AEFA1F4FDE /* Headers */, + 95A54950E63DEB05ECFEA6BB1E90B4F6 /* Sources */, + 93BB066C3C3E0676D209240F0A3BCECA /* Frameworks */, + 60CF17AF171A293374E82ED466C096DD /* Copy generated compatibility header */, ); buildRules = ( ); @@ -8080,12 +8058,12 @@ }; EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */ = { isa = PBXNativeTarget; - buildConfigurationList = 7041F73EE4D221DB58020276424A1B6A /* Build configuration list for PBXNativeTarget "RxSwift" */; + buildConfigurationList = 4864B887C80983650BB8EB2D48C4028F /* Build configuration list for PBXNativeTarget "RxSwift" */; buildPhases = ( - 54D58BA70E2DDDEEAF5D3CCA85FF958E /* Headers */, - 9C0FA3A5755DCE71B16EC7D598938A26 /* Sources */, - 05779621E771C965CDA89A3162AF9CF8 /* Frameworks */, - 2A3385CE00E19B8E9CC020EACDB8FE3D /* Copy generated compatibility header */, + 5FA0BDB106D5CDC587242F9658134231 /* Headers */, + 9F2C63BFD0193FFB91C24BC9C7664C8C /* Sources */, + 0F5228A2B0F5830C4739B75F14DDA217 /* Frameworks */, + 5D3F256CB0CD086BFBFEA336A83D6806 /* Copy generated compatibility header */, ); buildRules = ( ); @@ -8241,27 +8219,51 @@ /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 9A5394ABFDE4246A127AE065B6268104 /* Resources */ = { + 0560CB003C046C965637B6AEE5DB727C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 94DE529939F7E6CFD088184A63BFF5E5 /* DDBaseViewController.xcassets in Resources */, + E07CE30D4CB7B2045E1983E54259D54A /* car_xingshi.png in Resources */, + E6C25311313440AB703A5E29BB3E7E50 /* car_xingshi@2x.png in Resources */, + D1C94411A828DF36426EEB04ACC7385D /* car_xingshi@3x.png in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - AB30B9B422D2E0064CFC161B9667B869 /* Resources */ = { + 9AC027B0F38B0D8305C8691EA1DD8DA9 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 50683116C8A8EB1785C08D63F1648C0C /* car_xingshi.png in Resources */, - 22DD3D111D50B590F1B02A4EBF49CEE9 /* car_xingshi@2x.png in Resources */, - A7A0B1081163E647C7529D121D8031C7 /* car_xingshi@3x.png in Resources */, + E9EA12936E932E05E380C54600512522 /* DDBaseViewController.xcassets in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ + 00493CEE13608F8846DF7EAD73A13AAC /* 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"; + }; 05406407AF6C66C41D51815A4A87AF57 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8334,30 +8336,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/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"; }; - 24947CD770DDC4235608C6DFFD07A87C /* 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"; - }; 25500B2245ACA87924EEE987F0EBBF41 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8382,30 +8360,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"; }; - 2A3385CE00E19B8E9CC020EACDB8FE3D /* 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; @@ -8495,6 +8449,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"; }; + 5D3F256CB0CD086BFBFEA336A83D6806 /* 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"; + }; 60A83CACD768832E8E6C2AEFD0837240 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8519,7 +8497,7 @@ 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/SwiftyRSA/SwiftyRSA.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/SwiftyRSA/SwiftyRSA-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"; }; - 6A6BFAC73E8D357F00B4440AC6DFCC8B /* Copy generated compatibility header */ = { + 60CF17AF171A293374E82ED466C096DD /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( @@ -8528,20 +8506,20 @@ ); inputPaths = ( "${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h", - "${PODS_ROOT}/Headers/Public/SnapKit/SnapKit.modulemap", - "${PODS_ROOT}/Headers/Public/SnapKit/SnapKit-umbrella.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}/SnapKit-umbrella.h", + "${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/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"; + 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"; }; 734882066F7D5696CA518DF9EE7D2FBC /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; @@ -8615,6 +8593,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/DDUtilsSwiftKit_Private/DDUtilsSwiftKit_Private.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/DDUtilsSwiftKit_Private/DDUtilsSwiftKit_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"; }; + 925B2E4A6DE459177C29E0D5D2941B49 /* 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"; + }; 96C60001B6E911ABE0127B658345B9D2 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8704,30 +8706,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/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"; }; - B8343EFB5BF703F9356DE454992A7189 /* 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"; - }; B96D9CB4B6EE13DAC0F38E6D5F28FA79 /* Copy generated compatibility header */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -8916,6 +8894,13 @@ /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ + 02F46CF0E89C1FE321AD4DB9D2770A8A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 1904E2693C2C29ED89D5B9762AC29E60 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -8964,13 +8949,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2D0C2208E571879FF344C75920540CB2 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; 3364FF6FC5BAA2DDA7C2A5E5FC9561CA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9038,42 +9016,42 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 5DD957ED7921C7A7874458ABD9AF3D48 /* Sources */ = { + 5638858E827719B9FCCF74ECEE7425A0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 83BC80AF7D43B32132550067EB4E159F /* CALayer+DDCategory.m in Sources */, - C8BE9A3149410351948DD415A937C9EA /* DDCategoryKit_Private-dummy.m in Sources */, - 0A63CF97741EC5402E45D6AE7EF3E600 /* NSAttributedString+DDCategory.m in Sources */, - 57A0637C2323655E6D5CED2D0F5DA6D9 /* NSBundle+DDCategory.m in Sources */, - 689AF1114893C59282F92646242F8B86 /* NSMutableAttributedString+DDCategory.m in Sources */, - BB58A878E14BEE3BD8EDD6189D227F04 /* NSMutableParagraphStyle+DDCategory.m in Sources */, - 03F49347022588D854C01F59944A65F6 /* NSObject+DDCategory.m in Sources */, - D8DDFBB3A35C2BE5B3C44219A5C7D3A7 /* NSThread+DDCategory.m in Sources */, - 02F7D99771CF9DB3A5E3691C43959C71 /* NSURL+DDCategory.m in Sources */, - 7F4D207C18AAFAA5FB0A27C776AD697C /* UIApplication+DDCategory.m in Sources */, - 9932CDBFBC922273D6C9AF8B4BA194C4 /* UIBarButtonItem+DDCategory.m in Sources */, - 01D4F59573F4EBC19253B4997C142FDF /* UIButton+DDCategory.m in Sources */, - 86DB5B0B24CDF7E5B9DC49BBADCBB300 /* UICollectionView+DDCategory.m in Sources */, - 568303B3D247378112A34B0B7AC87620 /* UICollectionViewCell+DDCategory.m in Sources */, - C0BC39D0A599009DDEB82A1C17F81184 /* UIFont+DDCategory.m in Sources */, - 8F6B7420DD1D11D5D4541BCB470C006E /* UIImage+DDCategory.m in Sources */, - 6FCA41DDFC81BFA4055D699C6C9F8172 /* UIImageView+DDCategory.m in Sources */, - 80AE5BB1069E14FBEE07D7A3F785E408 /* UILabel+DDCategory.m in Sources */, - 45B27FE47113597587330F91F73E3A48 /* UINavigationBar+DDCategory.m in Sources */, - 82C5D788B9D79C55B6C1049A63E535F2 /* UINavigationController+DDCategory.m in Sources */, - F4EC9C6B2D3C5AF4A3A1A0037A918A85 /* UINavigationItem+DDCategory.m in Sources */, - C209CBE613B7AB6FE3DA1690612A63C1 /* UIScreen+DDCategory.m in Sources */, - F36CA376AA0BCA55321D2B980B86E53B /* UIScrollView+DDCategory.m in Sources */, - E07FC4B573EA935387D3261F3C4ED6A7 /* UISwitch+DDCategory.m in Sources */, - 6BC64D5A73FFE6223CC0F3146F9F59C1 /* UITabBarController+DDCategory.m in Sources */, - 0B40266EFC1644C2B93EEF5A4A73EBD6 /* UITableView+DDCategory.m in Sources */, - 9F47D1C9DD2F26198A7243A42ACECCF0 /* UITableViewCell+DDCategory.m in Sources */, - A152C11A8AF761E13842334978E5D205 /* UITextField+DDCategory.m in Sources */, - B0460454DF0C8363DD030016E61C50F3 /* UITextView+DDCategory.m in Sources */, - 272C6A85490A6EECEB5704075A3C199F /* UIView+DDCategory.m in Sources */, - A5CBC9C918D94A22E0AF4BC60F832D56 /* UIViewController+DDCategory.m in Sources */, - F9DCAC1E9DC61227C751D79AD259DB21 /* UIWindow+DDCategory.m in Sources */, + AD76E0823BE733CC1E002FBF1BC2AE50 /* CALayer+DDCategory.m in Sources */, + 12251AAF8EC8A1FF1BFB365B030D19CD /* DDCategoryKit_Private-dummy.m in Sources */, + AF1C1BAAEE8A641CD516DEA3D1DE30A9 /* NSAttributedString+DDCategory.m in Sources */, + 683BC1392B35D4316ACE1925ED1C6CCD /* NSBundle+DDCategory.m in Sources */, + 7241BABB32B3F312D33F7683C82461C3 /* NSMutableAttributedString+DDCategory.m in Sources */, + 50A65AD0A3814D312D70BD853F3A05CF /* NSMutableParagraphStyle+DDCategory.m in Sources */, + E4BD9C28DA353A9E5DC1881B89BB4F06 /* NSObject+DDCategory.m in Sources */, + 4ADC43C8AFDA76BB3708A6CB6BC0BBD5 /* NSThread+DDCategory.m in Sources */, + 242239DF798489A840B26EC33F3F5D94 /* NSURL+DDCategory.m in Sources */, + 7AC2AEEC49B5EAF037AB1FB8806A2C86 /* UIApplication+DDCategory.m in Sources */, + 636362D9EA734D660CBD6DA487DCC2D3 /* UIBarButtonItem+DDCategory.m in Sources */, + EAAE7A65A7BB8F837B75CA0D05C869F6 /* UIButton+DDCategory.m in Sources */, + E317DBDCFE4041AB9E81DD032E67B4E0 /* UICollectionView+DDCategory.m in Sources */, + 12892EF2990601DA944A65DF856C1C0B /* UICollectionViewCell+DDCategory.m in Sources */, + 07CCE86C8E53C22E52CFAD1C91C29B45 /* UIFont+DDCategory.m in Sources */, + 8D4F017EFFAAB42AFE5BEF5486263A27 /* UIImage+DDCategory.m in Sources */, + B04554D6B425890F1281FA20DC981975 /* UIImageView+DDCategory.m in Sources */, + E3E428F69D3102897E73A39800546374 /* UILabel+DDCategory.m in Sources */, + 27C8D5411BAE1F694760489635B2FF45 /* UINavigationBar+DDCategory.m in Sources */, + B55954EEE456FDEDDBF90F7692764F14 /* UINavigationController+DDCategory.m in Sources */, + 17C41565D21989DEE655AF405B94F200 /* UINavigationItem+DDCategory.m in Sources */, + EFDB078033B7E9875333F75B72C1BA2B /* UIScreen+DDCategory.m in Sources */, + B6DF847DA065C63CF90056990C8D1476 /* UIScrollView+DDCategory.m in Sources */, + E393F511073EAC13747E1D131A84A303 /* UISwitch+DDCategory.m in Sources */, + 19930D4A2B25E5801CCBB603B126AEC5 /* UITabBarController+DDCategory.m in Sources */, + 422409F17E1D8888C76E2CA81AB42AC7 /* UITableView+DDCategory.m in Sources */, + D781F4490C10DB62CD3325AED7C9EE27 /* UITableViewCell+DDCategory.m in Sources */, + B0F7B54EA4F9DFE1A8BA3183C18014CB /* UITextField+DDCategory.m in Sources */, + C0B89620E69D080ED36F3741543A037F /* UITextView+DDCategory.m in Sources */, + 87161646F503BF7D6C9E258EB462B823 /* UIView+DDCategory.m in Sources */, + FAFDF4C22D2BD1559CCFF28406991AF3 /* UIViewController+DDCategory.m in Sources */, + 6EAFC1A2247B438FCC2FB57ACE840384 /* UIWindow+DDCategory.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9219,19 +9197,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 75600482F4E6F7647C31898990F3D61D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A5C172D967EB006F5BE3ACCAEBFCBB9B /* BehaviorRelay.swift in Sources */, - C9F2795F0C32FEA19D2ED6FE1BEDF225 /* Observable+Bind.swift in Sources */, - E5251ECD961D19B16B160961E49890AD /* PublishRelay.swift in Sources */, - 607F69E7D9313D48ABCED09008D8E14A /* ReplayRelay.swift in Sources */, - DA28FD246160F6ACF925E286F9E0B065 /* RxRelay-dummy.m in Sources */, - 4EE2193AA4850C857375E0226EC7BB3F /* Utils.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 7AB490E201D8C635516B7B840E5B3FB2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9241,48 +9206,16 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7B13A5F10317CE227DC583BE376A739A /* Sources */ = { + 85EA30FC3BB560BD84E4E496B794B060 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 861B775409628C66B619E77F522DB27A /* Constraint.swift in Sources */, - 5ABC51355DC4C0B3B10D3024A3E7E069 /* ConstraintAttributes.swift in Sources */, - EA0D63BDE8329C72280A4DD6533FE089 /* ConstraintConfig.swift in Sources */, - 75C1FA82DA118DA3208E28DCA8A8AD05 /* ConstraintConstantTarget.swift in Sources */, - E820EEBEF531A1B6071E9BFC7DA288D0 /* ConstraintDescription.swift in Sources */, - 9FC7ED3A574626EAB89E3CBA40350E0C /* ConstraintDirectionalInsets.swift in Sources */, - 54D9A16950602901B2A9CB2FF4F94273 /* ConstraintDirectionalInsetTarget.swift in Sources */, - 4D768D7F05A1C7D3C916F59AED413ECD /* ConstraintDSL.swift in Sources */, - CDDA78460091FD5B2414D7F07B2B7DB7 /* ConstraintInsets.swift in Sources */, - E5F2553F6FC416BF002BD6831268EEFA /* ConstraintInsetTarget.swift in Sources */, - 9748E831A4C4539A6D589B236F832A04 /* ConstraintItem.swift in Sources */, - 7CAC352F732EACD3F592D7EDAA97DE80 /* ConstraintLayoutGuide.swift in Sources */, - 91869DD3B7F7EE5EBB2D5908A5695AC1 /* ConstraintLayoutGuide+Extensions.swift in Sources */, - C22D68D6305A377F31918BD6D9CCD69E /* ConstraintLayoutGuideDSL.swift in Sources */, - FBB6746B94A475AC97B30EF69148E469 /* ConstraintLayoutSupport.swift in Sources */, - FB9A0DF285D3A0D19037CC4899483705 /* ConstraintLayoutSupportDSL.swift in Sources */, - 27184CB2A8A5537820A353895BD4ED9B /* ConstraintMaker.swift in Sources */, - 8A0D1FDEF23935B8426B0DD33EF48513 /* ConstraintMakerEditable.swift in Sources */, - 32ABFAB077CE43574F9209373878FD61 /* ConstraintMakerExtendable.swift in Sources */, - 9E5DE60858D56AC1F26F66743A7B21D8 /* ConstraintMakerFinalizable.swift in Sources */, - 007AB6C15B6672A5A9601A8B52D008E2 /* ConstraintMakerPrioritizable.swift in Sources */, - 815660FECD771288E39783724086A7FF /* ConstraintMakerRelatable.swift in Sources */, - D5515DF2411C47BB0F12A78EC54A6B5A /* ConstraintMakerRelatable+Extensions.swift in Sources */, - 4B2AFCCA9BE567F592F8116FBA15A4BC /* ConstraintMultiplierTarget.swift in Sources */, - A6ABAE33B9D22F02100966BE903210E0 /* ConstraintOffsetTarget.swift in Sources */, - A375B030497EC2C7E52E3A83D6F797DD /* ConstraintPriority.swift in Sources */, - 839F5CAF972130D70D9F11D992B2E8F1 /* ConstraintPriorityTarget.swift in Sources */, - 4A2FD67A19693B63311D9E0DB18D5287 /* ConstraintRelatableTarget.swift in Sources */, - D9BBAF7B75B55C4F174A1F1D1BC1949E /* ConstraintRelation.swift in Sources */, - FC9E8AFD6979B7D75E32BABB2F755CB7 /* ConstraintView.swift in Sources */, - 856E894487D9C439E27121F88E7C6945 /* ConstraintView+Extensions.swift in Sources */, - B60F0C7D629A5FCB45482FC254F6F15A /* ConstraintViewDSL.swift in Sources */, - 880B4FD7BA7033C8224F63E29E1572A5 /* Debugging.swift in Sources */, - B67415A7B5A199894C0EF493550FF4FB /* LayoutConstraint.swift in Sources */, - 92E1CC691570870D10C937401658C251 /* LayoutConstraintItem.swift in Sources */, - AEF6A2744C52C8D0483348916A4F1087 /* SnapKit-dummy.m in Sources */, - 90069087CDA6A93E23EED727B4A1084A /* Typealiases.swift in Sources */, - E511E77E4856E96445010526D2E3EDA6 /* UILayoutSupport+Extensions.swift in Sources */, + DF7FC6063E9660DF8D289538B2125134 /* BehaviorRelay.swift in Sources */, + EDBF2DA81990AD75C96C785546A0B020 /* Observable+Bind.swift in Sources */, + 4D6BC6600B8B6424D86A4A167047846A /* PublishRelay.swift in Sources */, + B6CBF2AE5040CCF8E27AFED738B5E644 /* ReplayRelay.swift in Sources */, + A256E164E3035EACD4154C4D5544C81A /* RxRelay-dummy.m in Sources */, + 2862606CD649C1CBAA5F4AA304CAE1C1 /* Utils.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9334,6 +9267,75 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 95A54950E63DEB05ECFEA6BB1E90B4F6 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D7D5D849A72CF175A46E9C87F810FFAE /* AnimatedImageView.swift in Sources */, + C1B289E83BB181C98BC990E99E68FBC5 /* AuthenticationChallengeResponsable.swift in Sources */, + AEE3DCA65FC0D962A1983D1EF5B72062 /* AVAssetImageDataProvider.swift in Sources */, + 2287C5BB509DBADC66D80828A939E186 /* Box.swift in Sources */, + 6F1A2D673D8F3EB993C8FA46E7416D8B /* CacheSerializer.swift in Sources */, + 5B35B262F1A59ED958F62EE17B84A57D /* CallbackQueue.swift in Sources */, + BAAF532D103913901437253C9B1EC21F /* CPListItem+Kingfisher.swift in Sources */, + B3B255160FD8882296B36105117F8F77 /* Delegate.swift in Sources */, + 08592C50901B163D432A8365236310A2 /* DiskStorage.swift in Sources */, + 3134DD1CEBD5377DC15CC2A839C41CDC /* ExtensionHelpers.swift in Sources */, + 45F084A3F55EF0F0167224B2188F96F2 /* Filter.swift in Sources */, + CE7215691C13E59A4ABB77F2DA1BC525 /* FormatIndicatedCacheSerializer.swift in Sources */, + 2CD84976B5168609BEBA3877A2479A1B /* GIFAnimatedImage.swift in Sources */, + AFE9C99619478338479FA2EC749A8861 /* GraphicsContext.swift in Sources */, + EFDAD202473F80F1F86AB579EF724B89 /* Image.swift in Sources */, + 339D85A37AB838F7564B9254207DE99F /* ImageBinder.swift in Sources */, + 6A95182C5170DB1A678531A86CD70A16 /* ImageCache.swift in Sources */, + 794DD48330D078E760BEB61471C7BD44 /* ImageContext.swift in Sources */, + 64CD94A1F944E48BADFB3C052F6F82E4 /* ImageDataProcessor.swift in Sources */, + 5AEE4E23BEE70ADEE597F665EBCD1494 /* ImageDataProvider.swift in Sources */, + 9DF40F11620151A5818FCF5DC7EF4EE1 /* ImageDownloader.swift in Sources */, + 9F4A94A593756255DA8899C6CDC441B4 /* ImageDownloaderDelegate.swift in Sources */, + 3A0E2B7223710E58C04C5D77110BA351 /* ImageDrawing.swift in Sources */, + 2D7F5FAC79AC4A2DA11B983E349810C3 /* ImageFormat.swift in Sources */, + 153DE5CB11330B6FB2662353339B13AB /* ImageModifier.swift in Sources */, + 602983DCC2D9CA5C4E5F9EAB1D7316A4 /* ImagePrefetcher.swift in Sources */, + 217C8F0A96A5090C40C04671ED693FA8 /* ImageProcessor.swift in Sources */, + B6E808A6F9BD5EC798D6D3EB3BB83E7B /* ImageProgressive.swift in Sources */, + 05837EAE1BFAD0F1F8FF8E9249F28CB5 /* ImageTransition.swift in Sources */, + F7367786A8702EEF93973DD8B4C059AF /* ImageView+Kingfisher.swift in Sources */, + 611F7E72C62A7D9836A5C8BA014ACAA3 /* Indicator.swift in Sources */, + A583906E3E17020B9C601624EE2928CD /* KF.swift in Sources */, + 637DC4D1436A780B796EA1BAE5D9F812 /* KFAnimatedImage.swift in Sources */, + B93BFE7CE24E673EF0CA9148E11C7D89 /* KFImage.swift in Sources */, + 16CF16446D25611658F054AD8D64B812 /* KFImageOptions.swift in Sources */, + 1E6AB0EB22D31B52A4D692B06F1618AC /* KFImageProtocol.swift in Sources */, + A10E840DA8752438971D036CA1D825D5 /* KFImageRenderer.swift in Sources */, + 11EDD6C24F8B0C87EA75DB126E665375 /* KFOptionsSetter.swift in Sources */, + 632E458328F01C905EE92A0529A94AB7 /* Kingfisher.swift in Sources */, + 816C47D4F5B29FE9219FFC63E49A202B /* Kingfisher-dummy.m in Sources */, + CFB2F64B408066286A8B97937FF5FE32 /* KingfisherError.swift in Sources */, + 11AB235088CD275D409080F1CD0511F3 /* KingfisherManager.swift in Sources */, + 7F00CC21C4CEBAC2157BF0A964284D7A /* KingfisherOptionsInfo.swift in Sources */, + FC46AD8B89342F75FA66DF4201A0850A /* MemoryStorage.swift in Sources */, + 149C942B71CE1447A72F4389653AB87B /* NSButton+Kingfisher.swift in Sources */, + B89B1DCCB280DC9DEC4B2379546B2B6F /* NSTextAttachment+Kingfisher.swift in Sources */, + 40FC8D96E22C2F5E03572425C568E3A3 /* Placeholder.swift in Sources */, + 113449F2555E3D59B58F18DCC4C2F809 /* RedirectHandler.swift in Sources */, + A7C3789391E1E66DE92D95D6F57D0B05 /* RequestModifier.swift in Sources */, + 520D82BBE670B4E930D1B394FA3741D1 /* Resource.swift in Sources */, + 4AF0A14FFEF208DB224243AD157C1620 /* Result.swift in Sources */, + 9BAB2527761194F142A0019EF5949679 /* RetryStrategy.swift in Sources */, + 8B0CFF8D26F4A367D95A9DCEA12EEA65 /* Runtime.swift in Sources */, + B3C04262B952032CFD122763CC4DAB3C /* SessionDataTask.swift in Sources */, + CD8951BE0E2826BE9EF167B81CFEB1E3 /* SessionDelegate.swift in Sources */, + 46B324EC5E73894A704F258E4EDD51A3 /* SizeExtensions.swift in Sources */, + 0CC9F1CC0F792E1F8654B5C12ADD37B7 /* Source.swift in Sources */, + 23278BD64DE695FABB0068DE42C64E5B /* Storage.swift in Sources */, + CB643F6A4F1AB3B77F69127BDC8184FC /* String+MD5.swift in Sources */, + F0CBAC911BFC2128051F421FAE5725E3 /* TVMonogramView+Kingfisher.swift in Sources */, + 7EBA339DC884CA152138B594D55BDFB9 /* UIButton+Kingfisher.swift in Sources */, + 0DB6B5E1DF5C6AECD07329C6038DCD88 /* WKInterfaceImage+Kingfisher.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 976DAE155E51E8CEA1B72656DB45AA07 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9430,240 +9432,171 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 9C0FA3A5755DCE71B16EC7D598938A26 /* Sources */ = { + 9F2C63BFD0193FFB91C24BC9C7664C8C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8D9BF3A8C0FF00DD92FB822463511085 /* AddRef.swift in Sources */, - 98098C8A3F199F3E87B4DF8DAA4B9EFE /* Amb.swift in Sources */, - 6B3B203D335CE4201E3CBB15DC28CF80 /* AnonymousDisposable.swift in Sources */, - 824EC46BDB0A2DC05A2036B8556BDFC1 /* AnonymousObserver.swift in Sources */, - 33FA38FABBE076CA206A60CDC6C13505 /* AnyObserver.swift in Sources */, - B367B3DA684836AC6C37B334533E8265 /* AsMaybe.swift in Sources */, - 161A175EF28B75C2705F6B0444A8168E /* AsSingle.swift in Sources */, - A8286173F12D8749B3B5CF0CF0CF527A /* AsyncLock.swift in Sources */, - 478EC96FFD402B504517C9A5F6F5FC08 /* AsyncSubject.swift in Sources */, - 28F4691D456DF658C7D3995CF649A5DA /* AtomicInt.swift in Sources */, - DA969E7022B6C5B0F90E66660E914D30 /* Bag.swift in Sources */, - 92EDFA4F4C858B454161D4634B3B9F2B /* Bag+Rx.swift in Sources */, - A8A016E76D5AC0E630885430E3560887 /* BehaviorSubject.swift in Sources */, - E5454FCA68CD84211779C75BE433F4E5 /* BinaryDisposable.swift in Sources */, - D9432E91D0DDF77075A60BEB6EA1565A /* Binder.swift in Sources */, - E7B869F8E21E960070EE15A7084CCEDE /* BooleanDisposable.swift in Sources */, - 82D903ACDA9DF5CE0FDA6DC4D92FAA02 /* Buffer.swift in Sources */, - 1B786F5EACB4F35B35F882A1DD2096F4 /* Cancelable.swift in Sources */, - 638CB4E100033345DBD27B66C19DA582 /* Catch.swift in Sources */, - 0805E0FB391A1881385C5E015A3A83E1 /* CombineLatest.swift in Sources */, - BFB0C5B39B6A260FB765DAC8F7EAB914 /* CombineLatest+arity.swift in Sources */, - E65CB5D16627FAAC56DAFAE9969F61B2 /* CombineLatest+Collection.swift in Sources */, - 1508C2BD698331D7B1EBC514D41DA0A2 /* CompactMap.swift in Sources */, - 6190183F92C453615419F55F3BD08E87 /* Completable.swift in Sources */, - E5690EF9D5070931876754C046B11288 /* Completable+AndThen.swift in Sources */, - 6CDA31D3C8E731309F01B987177B73FE /* CompositeDisposable.swift in Sources */, - 7A82EFD927CC0F6EE14B185490BDA0BB /* Concat.swift in Sources */, - 947C7F7FF46FA942751276C598174CFC /* ConcurrentDispatchQueueScheduler.swift in Sources */, - 7D14FB4DACB91F024A5EABFF36E101E1 /* ConcurrentMainScheduler.swift in Sources */, - A679A4A9DBE57A9B857CCD12E7699289 /* ConnectableObservableType.swift in Sources */, - 150C28155BF8CF59C73A6B0358ECD72A /* Create.swift in Sources */, - E8DB9ED6C0EC9C1B4274D2D2AE657D2A /* CurrentThreadScheduler.swift in Sources */, - 0F5CA6C679D45D3382D87A90E92DA143 /* Date+Dispatch.swift in Sources */, - A050509EC2602DB8BED3F7FE050509AB /* Debounce.swift in Sources */, - 1C255CB13861F1833DBA77964611EB32 /* Debug.swift in Sources */, - 69C160D5BE01F3377DFD24D2122A9C65 /* Decode.swift in Sources */, - F8BEC20DBF5DECBE816381A4126D56F2 /* DefaultIfEmpty.swift in Sources */, - 08F8EFD283376EC9FB133B65EDC7CB0A /* Deferred.swift in Sources */, - 967FBE349AD0E4C53B6EEB6575FC051A /* Delay.swift in Sources */, - 737617367A663955CE8E903DAD1C7159 /* DelaySubscription.swift in Sources */, - E115E5DF79563D8FE279888939171F31 /* Dematerialize.swift in Sources */, - 3D8EEB102DD4A3A48C9E31AC98C92BEA /* DispatchQueue+Extensions.swift in Sources */, - 4630F2467021E70770DCA52953A02D3B /* DispatchQueueConfiguration.swift in Sources */, - 7F1340DA47ECB0A1DC7CA72DA1901E44 /* Disposable.swift in Sources */, - 23656DAAD6CA1B44B05E735F99720821 /* Disposables.swift in Sources */, - BBB7E00FB3E015E93D96B97520101A9C /* DisposeBag.swift in Sources */, - 0D7F3A17B7CDD4079F6555A2A6105A13 /* DisposeBase.swift in Sources */, - 999790F009DC67E8D5CF080C4C9C0B65 /* DistinctUntilChanged.swift in Sources */, - 748A364CF094F96B550366CBB186E41A /* Do.swift in Sources */, - 341A0FB184D57DE4398955E87AA2F02E /* ElementAt.swift in Sources */, - 4AAC23ABC7AA59943802AB81FC2C9020 /* Empty.swift in Sources */, - 81FE5B0BFC0DA1D15432688A08CC9334 /* Enumerated.swift in Sources */, - 567D6DD5F3CD77BFD2EBB69187FE05A0 /* Error.swift in Sources */, - 6B9EF973DA7E48C11046DD7F06009BE1 /* Errors.swift in Sources */, - 2CD4AA5E579EB6A50BC8C0E2752663EC /* Event.swift in Sources */, - C9043BA7AF2E577056F83AF6085CE568 /* Filter.swift in Sources */, - 32191A95E5D1D0E00BCF8BD077072280 /* First.swift in Sources */, - 521DD709D23F5A3F8FBA7FF6A964DA2E /* Generate.swift in Sources */, - 875E27FB11EE0F1F4A994E9F84868244 /* GroupBy.swift in Sources */, - 7293ABFCA8C8B89CFCC760E539AEF304 /* GroupedObservable.swift in Sources */, - A7D732BCD6095E20082A24707C117912 /* HistoricalScheduler.swift in Sources */, - 811C9A2E83585BC123F9A759F78FE3D1 /* HistoricalSchedulerTimeConverter.swift in Sources */, - 968275C7F081A3E15A8475CA7DC7BC6C /* ImmediateSchedulerType.swift in Sources */, - 0BE6D5F00195B60DA630E0A166175168 /* Infallible.swift in Sources */, - D337DCD5C2F670076386AB6884CFCB6A /* Infallible+CombineLatest+arity.swift in Sources */, - 31BD81A2884D5C5B88D885AB73E66D4D /* Infallible+Concurrency.swift in Sources */, - DB59F04D0156C443BB07E85B8CC84177 /* Infallible+Create.swift in Sources */, - D3E0F4338E5998CBE90232D0EA51201A /* Infallible+Operators.swift in Sources */, - 07268E64E67A3CD3437C4E396FF8B847 /* Infallible+Zip+arity.swift in Sources */, - 20189A8CEA3D9133A230F3390C2C54B4 /* InfiniteSequence.swift in Sources */, - 1E234BFFFCD5B002184D6D3474DC259E /* InvocableScheduledItem.swift in Sources */, - AEDA0A0209F58180777AD7371CB0BE81 /* InvocableType.swift in Sources */, - F5D507923894C1C3619E377063D3187D /* Just.swift in Sources */, - AA9CB06A7DC4EA362B3BD579C8182DBD /* Lock.swift in Sources */, - BA13D082E2D8C9CC3A2594E1926B1279 /* LockOwnerType.swift in Sources */, - 1B86EFDE6D30AAFFE138E1265122CA9A /* MainScheduler.swift in Sources */, - 0A9F482C0FC3265F693489AC45825ED9 /* Map.swift in Sources */, - 68B47A93890C8366EED81AEA3B590CC7 /* Materialize.swift in Sources */, - 8C0AF30595CA159608D53739512AD139 /* Maybe.swift in Sources */, - B434048AFE0E75530B3815F775B4B230 /* Merge.swift in Sources */, - 6D3627B8D626B89FE0B1F6FFF90D3878 /* Multicast.swift in Sources */, - C048EEF37D424C21BB5BBF5AABC5B852 /* Never.swift in Sources */, - AF0A903B5FB71B4FE72664C3813349D4 /* NopDisposable.swift in Sources */, - C8F794766E85D3691138CC9BB0DB15A2 /* Observable.swift in Sources */, - 02070451CE821D45E1C03FA4E1B0797F /* Observable+Concurrency.swift in Sources */, - 9C31D5A61DB6D88845781094EA815257 /* ObservableConvertibleType.swift in Sources */, - 5E5CFE3393CAE39EFDCB3909193DD10C /* ObservableConvertibleType+Infallible.swift in Sources */, - F781BF97A398896AC04F77060ADEEBB4 /* ObservableType.swift in Sources */, - 701D612752F9A703971CAC2C803BAB38 /* ObservableType+Extensions.swift in Sources */, - 6A0D347CD72983F789D42015A4C98CB1 /* ObservableType+PrimitiveSequence.swift in Sources */, - B0AEE4378359080F2CC21FF98938FFE8 /* ObserveOn.swift in Sources */, - 8AB0D1E3AF7A5AA5C5DA523A2A79858E /* ObserverBase.swift in Sources */, - 537F15E26603218DCC1D7193F4FB0C9F /* ObserverType.swift in Sources */, - E9FA06E03431D820001F034C08AEF195 /* OperationQueueScheduler.swift in Sources */, - 94A21473C70C3AC33AC1626B06014B9A /* Optional.swift in Sources */, - CEFC0AC99103E1F06BF80AF96D385533 /* Platform.Darwin.swift in Sources */, - 70D83519B4B265A3013DB754C8A4B901 /* Platform.Linux.swift in Sources */, - D79653B6024C6CA7FF6E1B8570028C20 /* PrimitiveSequence.swift in Sources */, - 1EEEBBE30DC7921A7842C22447CAAB2F /* PrimitiveSequence+Concurrency.swift in Sources */, - AE8E8A7E0C16810EDF0D9C7D25A009F2 /* PrimitiveSequence+Zip+arity.swift in Sources */, - DDACD375C0C5111047E2307DAF73DCE6 /* PriorityQueue.swift in Sources */, - 7281A5DFC4AC7D1F62AF44943C10B361 /* Producer.swift in Sources */, - 86144CFC34DE6A3DE7F3CD4CFDFADC9F /* PublishSubject.swift in Sources */, - B8999F9AEDF4D3AC57B186C9B8FEE0CA /* Queue.swift in Sources */, - AE208AEF1CA4455FFF88AE05CF8546B3 /* Range.swift in Sources */, - 3DCED093909BD1B85FF12C8281183CB0 /* Reactive.swift in Sources */, - 98D29CF8E516F6FCDEC453AF63CE01DE /* RecursiveLock.swift in Sources */, - 2AF8AF604A272C0C4BB37CE14D27D1D9 /* RecursiveScheduler.swift in Sources */, - 18E4DFFF2ECBE2E968AD95E4B0C913AC /* Reduce.swift in Sources */, - 8A7B8BA563A699B6B65542C79C2BE291 /* RefCountDisposable.swift in Sources */, - 0A48365168E380D8C829E264AD65BBAA /* Repeat.swift in Sources */, - EC2A5CE9FC7D5E2ECAFB585B8052D17B /* ReplaySubject.swift in Sources */, - 909B008FAA370989E2B72FC086CB80CB /* RetryWhen.swift in Sources */, - AA858A4709B9E35ECBAE115A703CF95E /* Rx.swift in Sources */, - FF03AAD5CAF6A8B6906B0DA14DF6688B /* RxMutableBox.swift in Sources */, - 79E0DAF50845A6D1EAFD7D91D7770187 /* RxSwift-dummy.m in Sources */, - A60337C2CD0592E0D320A5F26140D089 /* Sample.swift in Sources */, - 527B2370D6731A168E069E93814E6ACA /* Scan.swift in Sources */, - B0A85819E926855DF9F3763A256D8CC5 /* ScheduledDisposable.swift in Sources */, - EB061656E2E1828A3752CE8ED124EA6C /* ScheduledItem.swift in Sources */, - C7D99B25D93126E3CD935F97EF1B1A6C /* ScheduledItemType.swift in Sources */, - 901325CBB6F28FC1B74C624BFBB9F93D /* SchedulerServices+Emulation.swift in Sources */, - 3C135A7BFDAF0683DDEAD3F3B35B22FD /* SchedulerType.swift in Sources */, - 07B9885934C75EB3E6850A2C46F4896A /* Sequence.swift in Sources */, - 1BB3F58335FA1580C8E33B7BF9552D1B /* SerialDispatchQueueScheduler.swift in Sources */, - EFD701EE0CC2AC793F1418A972229E72 /* SerialDisposable.swift in Sources */, - 7CF30055D9C88997ADB663E49F04C4DE /* ShareReplayScope.swift in Sources */, - F826069C26DB2285834D7AD2CFF5DE03 /* Single.swift in Sources */, - E466AAD571AA87F0A8EF43EA49C4BFEF /* SingleAssignmentDisposable.swift in Sources */, - A2E808AAC56115B857623E66B779B564 /* SingleAsync.swift in Sources */, - 65BED936CD021991A0B643B97ECF9D43 /* Sink.swift in Sources */, - B0F92EFC5279A3CC616D9F933ABC4E0E /* Skip.swift in Sources */, - AE3C74701C55A2C9DC7BBB2CADFC0BF6 /* SkipUntil.swift in Sources */, - 56A09E981BD164D088D33F846A063CCC /* SkipWhile.swift in Sources */, - 89EE70BDD7951D7481D3C66D02A3BCBD /* StartWith.swift in Sources */, - 8CD30B0BDB4A020DCAAAD4D848E9C968 /* SubjectType.swift in Sources */, - 0C4E880F49B0F01DD8DF4392093AE787 /* SubscribeOn.swift in Sources */, - 6D66B157F2C2C7D11C02BAD169291CD8 /* SubscriptionDisposable.swift in Sources */, - DCD5B55F19DB19CBC5DC0ED09FE9310E /* SwiftSupport.swift in Sources */, - EF48C2C6207D901870856D25C606C268 /* Switch.swift in Sources */, - 66AE8AA7CA1BCD7EDA9110232BD000F7 /* SwitchIfEmpty.swift in Sources */, - 88C6F8BBF59051ECABC820EEEC62B9FD /* SynchronizedDisposeType.swift in Sources */, - 7D10A506462A02D4921F5C1E7D8B737D /* SynchronizedOnType.swift in Sources */, - 718A1B75242F781D6C7E88A3EDE3476E /* SynchronizedUnsubscribeType.swift in Sources */, - 62903FEC56800C8FB41040C23E1F77B7 /* TailRecursiveSink.swift in Sources */, - D24C91FBCF577978F8F7818B05D09FCC /* Take.swift in Sources */, - 81CF2F90F9E50167C955BC597B1729B6 /* TakeLast.swift in Sources */, - 337092E1418D3A026C0DD4056E566861 /* TakeWithPredicate.swift in Sources */, - 67430BE95E8B0E11731B68E2800C9308 /* Throttle.swift in Sources */, - 32830CEAF4535DE977580E789F24760E /* Timeout.swift in Sources */, - 5B4158DD9189A65A3EBB0E711814A309 /* Timer.swift in Sources */, - DE19B14E27B3F5EEF19205896C5A9C78 /* ToArray.swift in Sources */, - EBF88D388EFDDCB7005D2B8B75D7D528 /* Using.swift in Sources */, - C58CE7694D876C745A7D4DAB9004F3C4 /* VirtualTimeConverterType.swift in Sources */, - CCD6C074CEF0BBED851493BB3F6ABC5D /* VirtualTimeScheduler.swift in Sources */, - EE647CD3B5E1CD9CE1C2F7A02392E651 /* Window.swift in Sources */, - 8DA36FCE31A679515EFD8B1C622A7DA5 /* WithLatestFrom.swift in Sources */, - 26795A0BA75CDFF95FF68AA47A8FA8EA /* WithUnretained.swift in Sources */, - CF6802DBAADD71B71CB3B580389EDCB3 /* Zip.swift in Sources */, - 558597156934A37271A804BBC2058DAF /* Zip+arity.swift in Sources */, - 54B149AEC25A87FC292DE4908FC12FD1 /* Zip+Collection.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A7B9A005537C61A346B617BA04B236EF /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - F50E3C6B9DC4A1AB72B4A64CB0ECFF12 /* AnimatedImageView.swift in Sources */, - 5C11500E97014B2156025DCB5AEA19EC /* AuthenticationChallengeResponsable.swift in Sources */, - FF94689E991BEE3225A1EA5FB666BA2A /* AVAssetImageDataProvider.swift in Sources */, - 1AEC7FEC5BD730C2FA817BAD4BE06FE6 /* Box.swift in Sources */, - 60B20E80F87F27E75DEA03156974E0F9 /* CacheSerializer.swift in Sources */, - 1BD5A32C94ADBAD9D8831EDE764CA273 /* CallbackQueue.swift in Sources */, - FF6EDE90ECC0AB65FC2BDAF6F4D6F9E5 /* CPListItem+Kingfisher.swift in Sources */, - 5F6C8E94AF9E38470F1F5FAD64C24055 /* Delegate.swift in Sources */, - 01EC61F5E637274D4A163913FF389479 /* DiskStorage.swift in Sources */, - 15ACC15C516BDF3E1A2331158B73E281 /* ExtensionHelpers.swift in Sources */, - E02542D827E181A84B1371501D90D3D4 /* Filter.swift in Sources */, - 54EB2D29BB3EBA2F93E5303074F5B987 /* FormatIndicatedCacheSerializer.swift in Sources */, - 533639C7340E31F53672214A4DE43316 /* GIFAnimatedImage.swift in Sources */, - F3ADD3C9B0A9E40D1F76AB90B11836E2 /* GraphicsContext.swift in Sources */, - 23939D0CF802892C750ED41964060E15 /* Image.swift in Sources */, - 986EB69691079B11749E7C9B59BC7114 /* ImageBinder.swift in Sources */, - B488A6AA47F941EF0AFE043050E09692 /* ImageCache.swift in Sources */, - 28A1424759D095E30EDCA07ED22189A3 /* ImageContext.swift in Sources */, - CFD4AD62F684CCDDB885B7840F7B3E71 /* ImageDataProcessor.swift in Sources */, - F556A034452D6857FDC7D08CB07291D6 /* ImageDataProvider.swift in Sources */, - 2D1E54F9DCFEFCC65ED0A2F70C00F480 /* ImageDownloader.swift in Sources */, - A54493E4474FBD0A8F08DFD70D849A82 /* ImageDownloaderDelegate.swift in Sources */, - 98A114F283EB9A4BA3D55C519B6C77AD /* ImageDrawing.swift in Sources */, - 347E3DBFAA1453009AEAD471F0C36B70 /* ImageFormat.swift in Sources */, - 27408F529F2448D2C5F5A64BEC93A594 /* ImageModifier.swift in Sources */, - C532F8CE4A5D58C3EA2EEA4A77197403 /* ImagePrefetcher.swift in Sources */, - BFF17ACCAD0EDF9C373A4D2CA20EEF59 /* ImageProcessor.swift in Sources */, - D25843C083BE37F7D9579B6983A424E8 /* ImageProgressive.swift in Sources */, - 992049D3EE75635F0D75846549850284 /* ImageTransition.swift in Sources */, - 0649EE1B50B4C275D251820B2B3D8B90 /* ImageView+Kingfisher.swift in Sources */, - 2334435867395114202DCDE45DA3DED5 /* Indicator.swift in Sources */, - 9B4069DA5EA636E23E81F1313DE11D74 /* KF.swift in Sources */, - 738337670D9EE179710E506D02EF963D /* KFAnimatedImage.swift in Sources */, - 79980E7A30DC97BA8D5BCE44B05CDE0D /* KFImage.swift in Sources */, - 82BA1FDD75004F5AEBEA51C70E276688 /* KFImageOptions.swift in Sources */, - 2A3EDFB16C0CC9B885D06DA82DF22023 /* KFImageProtocol.swift in Sources */, - 9DDEA3182B9F7D8CC39F35FC3C054AAF /* KFImageRenderer.swift in Sources */, - A65C92A0E34BB1F06B9D952EAC6943EF /* KFOptionsSetter.swift in Sources */, - 98FD8009CA41D7F8615734AD58B1BC55 /* Kingfisher.swift in Sources */, - 879B01381BC507FA5BAFD68194E65C80 /* Kingfisher-dummy.m in Sources */, - 6CE3D48BE3820932D7CFCB809536DCDC /* KingfisherError.swift in Sources */, - ADD89E299179396F528B56309E8DC500 /* KingfisherManager.swift in Sources */, - 0705995CD21541E3DC5E1A6A55F17133 /* KingfisherOptionsInfo.swift in Sources */, - CD4552681364820D0CC05139CDC19BC8 /* MemoryStorage.swift in Sources */, - CCED752EE10472C0324044FC4B9FA99A /* NSButton+Kingfisher.swift in Sources */, - E800043D1A69CDED18A91CFBE4A46851 /* NSTextAttachment+Kingfisher.swift in Sources */, - 1407EAE2457FA01EDEFB9BAD6418F566 /* Placeholder.swift in Sources */, - 52B912B7BEDC2F753DFEF70FB308B16A /* RedirectHandler.swift in Sources */, - 5709846A51BD5E0B04123E9DDCEE5C9E /* RequestModifier.swift in Sources */, - 263558AFEBC2825A92503CC6447FD023 /* Resource.swift in Sources */, - 646EC53D580DA2B0F27ECED432FD896E /* Result.swift in Sources */, - 185B0D419A33CA0454FDAF84316CC25C /* RetryStrategy.swift in Sources */, - 8E1EC31D1564C6B1E83C995B882981D4 /* Runtime.swift in Sources */, - A4ED8FE52D6474620046D4A7A6F1B785 /* SessionDataTask.swift in Sources */, - 3CAF136BE87234D71267979B45D6E67B /* SessionDelegate.swift in Sources */, - A866EDDE2568DEB79F53006E7F24F45A /* SizeExtensions.swift in Sources */, - E97C38FB746D8CE552ACAB943D7113F3 /* Source.swift in Sources */, - 962AB86D9403D69DE60BEA87DDE504CB /* Storage.swift in Sources */, - 462B09F7F53D96E61024046A2F06ECD9 /* String+MD5.swift in Sources */, - 8408F2B1DD16A7D29C771F7B1A5FAF6E /* TVMonogramView+Kingfisher.swift in Sources */, - F511265554632CF3316BED7F98787046 /* UIButton+Kingfisher.swift in Sources */, - 968D57E322826A7265C64F108CB6814B /* WKInterfaceImage+Kingfisher.swift in Sources */, + FFB73205BFE1E62DA077A3F96AE35012 /* AddRef.swift in Sources */, + 35B750040F955CD43A5356CCDB855884 /* Amb.swift in Sources */, + A23316464128F5761923CA0DAFF0F53E /* AnonymousDisposable.swift in Sources */, + CE0F45A1B0B179FC61EFCDCA4A23EF57 /* AnonymousObserver.swift in Sources */, + 85009E6683793653854800667D2B1785 /* AnyObserver.swift in Sources */, + 34DB33F3EDE087D762F6EE5AAAA7E1B5 /* AsMaybe.swift in Sources */, + 27F6C0BEE3F135D3F986B933CCE51CA0 /* AsSingle.swift in Sources */, + 792446A77D8069F8624AAC79E8409FCB /* AsyncLock.swift in Sources */, + 220574BD646D0F560EC58F7A92D5DBD0 /* AsyncSubject.swift in Sources */, + B71152709B956F54CCBB7A6F5EDBAC68 /* AtomicInt.swift in Sources */, + 656FAF47693B8206511951C1DF2D9CBE /* Bag.swift in Sources */, + 3CDACAC9E75A9E69F02B42B2D1C56B27 /* Bag+Rx.swift in Sources */, + C17721B52C2508B70D02605016E9D6C8 /* BehaviorSubject.swift in Sources */, + 3A4EF42201CDEC7D5815443CF67E0F09 /* BinaryDisposable.swift in Sources */, + D88C06AEB111734BAF5FBCCA256A5D2E /* Binder.swift in Sources */, + 04177031848602252135AA81165B8366 /* BooleanDisposable.swift in Sources */, + 783D920333B6B4B083625B41ED6B6735 /* Buffer.swift in Sources */, + D67DD808CEBAD7F92D692B574F73DE93 /* Cancelable.swift in Sources */, + 9111E0D8432FAD69045CDE6E0C92D0CC /* Catch.swift in Sources */, + 21E99FED49147D0F9A608AC646CE78F5 /* CombineLatest.swift in Sources */, + 65C088CFD6FFB712E43AC260421BADF3 /* CombineLatest+arity.swift in Sources */, + 75BF05F0CC4E919BAD4828533BE7F65B /* CombineLatest+Collection.swift in Sources */, + 0A6572E7A523E998FCD8732236E16AFE /* CompactMap.swift in Sources */, + 3F47273BBC147327BCC5270A29ED1387 /* Completable.swift in Sources */, + 6F79E710B8E8A20F0BA00F15F9D03E4C /* Completable+AndThen.swift in Sources */, + 5D2DD5EB76769B9EB4AD52992EC29C6E /* CompositeDisposable.swift in Sources */, + 7C4346BBA2B8B8F70FF7A185B63EB9DB /* Concat.swift in Sources */, + 467D4EE85BC0B82D9338DFB1CB37E5B0 /* ConcurrentDispatchQueueScheduler.swift in Sources */, + 7EA7149F92436C4ABEA394CD2F270F6A /* ConcurrentMainScheduler.swift in Sources */, + A63175D60788EBB5FC5A203F683F548C /* ConnectableObservableType.swift in Sources */, + 2629F4B4BB44F29B18925FA447D3D1DF /* Create.swift in Sources */, + 87B6A24DA5DF849DAB52EA90AD726431 /* CurrentThreadScheduler.swift in Sources */, + 41929FC0F76D38940ACF7C6C56735C0B /* Date+Dispatch.swift in Sources */, + 6D03CC06F12EF550B8B756CB4F7DB26B /* Debounce.swift in Sources */, + 210F49707DD9DBE8B45D3D6671CE2154 /* Debug.swift in Sources */, + 0B92D11F4A4F9B04C06C917F3A4A0442 /* Decode.swift in Sources */, + 9B75B2768CE5EF132C4B6E451C50C7ED /* DefaultIfEmpty.swift in Sources */, + BA6FA6DAD56C74252C1BB4774FC719B0 /* Deferred.swift in Sources */, + 350DE16889C579B6F6A25063F2F8EB8D /* Delay.swift in Sources */, + 727E42D377DEFB1F57200CBD121222F7 /* DelaySubscription.swift in Sources */, + 7035ACB419535A7B6C484D238A612BE4 /* Dematerialize.swift in Sources */, + B4ABDE535D907DA03582DFD0390F21DF /* DispatchQueue+Extensions.swift in Sources */, + 4F83B72978BA10799657F54BF4E61AF1 /* DispatchQueueConfiguration.swift in Sources */, + 2E79DAC320EF92181E82D10CF39B627E /* Disposable.swift in Sources */, + 2B950052FCD0FC8888AFCDB34EC1D89A /* Disposables.swift in Sources */, + FC16BF2E23D7664C890EBD6C6C6A12A5 /* DisposeBag.swift in Sources */, + 70F02A673E4FB5B97499E3F6D615CF4B /* DisposeBase.swift in Sources */, + 48ABC57D2D89E310C169F45DC8EABD23 /* DistinctUntilChanged.swift in Sources */, + 367AFD3796B3274A848E43700C089BDE /* Do.swift in Sources */, + B4EE3E3D890100C5AFA0ED7290B5A396 /* ElementAt.swift in Sources */, + 95A807A3166F331195AAC00010B70703 /* Empty.swift in Sources */, + 03124F72EF06C7536F370EDCBDDE884F /* Enumerated.swift in Sources */, + A0A9D02A68DF6DD689AEA26EE76AF891 /* Error.swift in Sources */, + A3B9158367275223AB4967AA05D0CC4C /* Errors.swift in Sources */, + 04F76D53D4FE82D8CF7171010FF955DC /* Event.swift in Sources */, + 44EF5606E69638A6745A03132AC2F3B8 /* Filter.swift in Sources */, + B59FE62F5E445635ED136AF84E76A724 /* First.swift in Sources */, + 0B6874DD516C1B5682A9DF3ADC1FA97A /* Generate.swift in Sources */, + 252E57AFD2DEE7B0073115B49A524DC8 /* GroupBy.swift in Sources */, + 59E2A301C7D9D99C8175B271BDFE40B5 /* GroupedObservable.swift in Sources */, + 37EAAF1E2438D10B67FB93C216B08784 /* HistoricalScheduler.swift in Sources */, + AD49CC70CD7F4D736EA600D72EA61F64 /* HistoricalSchedulerTimeConverter.swift in Sources */, + 88248746579354180F9A84AFC5445FE4 /* ImmediateSchedulerType.swift in Sources */, + E85D1D1E36A4822B39A55D63E2B9F73A /* Infallible.swift in Sources */, + 8E70E01111277D53396B3D151C3F321F /* Infallible+CombineLatest+arity.swift in Sources */, + 1682E5C6B1986F5AC5B85F9CDAA1B655 /* Infallible+Concurrency.swift in Sources */, + 7E747A6BADFA9D3673259C768DB2F13D /* Infallible+Create.swift in Sources */, + 58EC762555C4067AD919B935D93F5E3F /* Infallible+Operators.swift in Sources */, + 43D29A93EDF3396DB7784752D1F35A92 /* Infallible+Zip+arity.swift in Sources */, + 5D3DDCB7D5EAD124482FDE8694A6464C /* InfiniteSequence.swift in Sources */, + B697778E01573152A6019466B54D134C /* InvocableScheduledItem.swift in Sources */, + BD22742FFE04F47ABAB9DB8CA7979C6B /* InvocableType.swift in Sources */, + F6E8AD2760C006453509EE8847788AF1 /* Just.swift in Sources */, + 158ABB7F33D7D0DB9732BE8735F8C4AE /* Lock.swift in Sources */, + ACB3FE20E856929E036CA6E73A1955AE /* LockOwnerType.swift in Sources */, + E07A33D6350496FBE035CB6E87A58D23 /* MainScheduler.swift in Sources */, + A95BA26F0C63FBC108E205FC57B414DA /* Map.swift in Sources */, + 87E6E2F2D8E4936810DBAFF637E6FD3D /* Materialize.swift in Sources */, + 866739281FCB4D9C164C4A61322FE806 /* Maybe.swift in Sources */, + 64893E98B959886000BA45B3DEF3BA5C /* Merge.swift in Sources */, + 767B34150A7EC0ECEAB57A811942BCE7 /* Multicast.swift in Sources */, + 1478369EC15DF7726A9A14355F576E21 /* Never.swift in Sources */, + C34FE87B80895211485E9AB9298A5318 /* NopDisposable.swift in Sources */, + EEA669C01B476133983515D590C6F707 /* Observable.swift in Sources */, + 054300BE7C77B1D601717D0D11219E1F /* Observable+Concurrency.swift in Sources */, + 6D42059AC8748D951DF47484C42BAD3E /* ObservableConvertibleType.swift in Sources */, + 2EA54986168480B85D657D590E556229 /* ObservableConvertibleType+Infallible.swift in Sources */, + C8C6AE75A2CC76D4AB883628ACC1D2AD /* ObservableType.swift in Sources */, + 126031E3EAB484C7F6C093D1F8456D80 /* ObservableType+Extensions.swift in Sources */, + 2B33DE72B5F7194283CD3DD4A4473726 /* ObservableType+PrimitiveSequence.swift in Sources */, + BA88EA9B56B8B66E7CF2F282BA496330 /* ObserveOn.swift in Sources */, + 1F983B34AC2EADE1310A476567259DC5 /* ObserverBase.swift in Sources */, + 1121FDE3C4A93E9DBACD2F97EF58320A /* ObserverType.swift in Sources */, + D8423F6023580C058F1DDFFFD1779656 /* OperationQueueScheduler.swift in Sources */, + 41225DBFBE08DB3C547663BDCEF25E5E /* Optional.swift in Sources */, + C254DB6AE2A08936E464E24A411F2481 /* Platform.Darwin.swift in Sources */, + 0E707BDCE910931921EA8898DDBE7919 /* Platform.Linux.swift in Sources */, + EBE1011A4311FAA0C0D0B82BA0CF8132 /* PrimitiveSequence.swift in Sources */, + D6FBE35DB2D7D8D6021E703699172565 /* PrimitiveSequence+Concurrency.swift in Sources */, + 7E32D9B167099CE8AD829C38B357DE40 /* PrimitiveSequence+Zip+arity.swift in Sources */, + 79C420380639474B11D13E1FF1E80D0C /* PriorityQueue.swift in Sources */, + 86FD36F607B71D5C4B50DBFC30FA5C23 /* Producer.swift in Sources */, + 13AA898FB96076ED4D2B2A9B529036CB /* PublishSubject.swift in Sources */, + CE0C0F52BFDF580D264F9202A6BBE938 /* Queue.swift in Sources */, + 4F585941A445D7844040321705205821 /* Range.swift in Sources */, + 8ED4D4F8A906D49E93D5479E4375A3F2 /* Reactive.swift in Sources */, + 317855D5F00F5D17E1B4BE94BFBBE936 /* RecursiveLock.swift in Sources */, + 6B53DAE351695E193CE14AA47F739F49 /* RecursiveScheduler.swift in Sources */, + 37A034F160E2FAAA145ABACA1FCAA74B /* Reduce.swift in Sources */, + BEEDC7C8F0BE1AF9AFEC1B010A852A08 /* RefCountDisposable.swift in Sources */, + 2DD0FBA0F581E85B661ECC806DCE619B /* Repeat.swift in Sources */, + E8B4A75393B9AD18F9E08CD7B831B06D /* ReplaySubject.swift in Sources */, + 181186CFF54E2403AFBFE5647A2D6269 /* RetryWhen.swift in Sources */, + 201DCB4609837224A5A37D44B53026D8 /* Rx.swift in Sources */, + 72F356CD21125C06DA4581B8EFF5C612 /* RxMutableBox.swift in Sources */, + 98A4DD0AD7BE9B76EC219C7E3B54C8E7 /* RxSwift-dummy.m in Sources */, + 4D3F08725A59FE09F4638268BA669B97 /* Sample.swift in Sources */, + 34F7EA493734DA89520E55955E5A0DBF /* Scan.swift in Sources */, + A2C3F9B0AC38882D651BEC7E7D8F8122 /* ScheduledDisposable.swift in Sources */, + 97D0D404F9759A62A9AA003ADF18B277 /* ScheduledItem.swift in Sources */, + 5502A274E4ECD80E19C7051A6FD195B2 /* ScheduledItemType.swift in Sources */, + 35EFB687EAD4B6CC33E2D5F4765EF4AA /* SchedulerServices+Emulation.swift in Sources */, + EAFB2E51C63313485F6E30594EDFA35C /* SchedulerType.swift in Sources */, + 699FD0DDE23477ADD43B01223B63D5CF /* Sequence.swift in Sources */, + 4F26CB68EB35DAA7A17B98DA6EBC9B16 /* SerialDispatchQueueScheduler.swift in Sources */, + 87D72228C0AE800DB239910BC8A94B0D /* SerialDisposable.swift in Sources */, + BF33F6BBCCC819D447312CE8ECC76F83 /* ShareReplayScope.swift in Sources */, + E414A7D74C5C1781D5E34BC7584F3B17 /* Single.swift in Sources */, + 9D778B13DFA3F4051BB2842D61D3BF6C /* SingleAssignmentDisposable.swift in Sources */, + 54057CFDEEAA2F443A55EB066CB567F7 /* SingleAsync.swift in Sources */, + 3C6EB76A28ED5AA81C4EA0A62ADCD8CE /* Sink.swift in Sources */, + 37503C1DE9265411ACB8A7E8E3190128 /* Skip.swift in Sources */, + 79353E2CE471FF7BFA255368F3A3323E /* SkipUntil.swift in Sources */, + BA66672373B911EF7E9294E585BE2469 /* SkipWhile.swift in Sources */, + C8BAF555CCD51F9E3DB61C1BFBA98C57 /* StartWith.swift in Sources */, + FF151DDFF38D867F4C13771E00996959 /* SubjectType.swift in Sources */, + 8E14E44508EA01AA0C2F3E7699D0FCD3 /* SubscribeOn.swift in Sources */, + A2DD327EE020E9CB1F25B7D075078F08 /* SubscriptionDisposable.swift in Sources */, + B9C9ABA204D0FDC45DEEFF82BB0D199D /* SwiftSupport.swift in Sources */, + 31DC9ADFF2E15EE5623A797A393C8952 /* Switch.swift in Sources */, + CE62E1D7E4274641C080C9AEC8E83D91 /* SwitchIfEmpty.swift in Sources */, + 63E331ECB295DB90E3C240226034B7F8 /* SynchronizedDisposeType.swift in Sources */, + 10706A4AAB6CA0EABD99A968ABD8509D /* SynchronizedOnType.swift in Sources */, + 5F76B07236861DA2649B62BAED302E71 /* SynchronizedUnsubscribeType.swift in Sources */, + 6F219D11D5269BC45B463722F17CC0D6 /* TailRecursiveSink.swift in Sources */, + 855086250E9FC191DBAB2C9A271494E3 /* Take.swift in Sources */, + C9F396942C9C75CE1F92E278B08B72D2 /* TakeLast.swift in Sources */, + BB5B24B08293ACDFCB6BC990AE38AA28 /* TakeWithPredicate.swift in Sources */, + 0AFC7C512782A44F5F97A173D3DB6E6F /* Throttle.swift in Sources */, + 1E7FF8DBFF064CCB162745E76BDC72B6 /* Timeout.swift in Sources */, + 6777B592AC9488AD68703660ABCFD16D /* Timer.swift in Sources */, + 245998E286CF524C5B424CA339520E00 /* ToArray.swift in Sources */, + 6ED53F14FE28A988F44B3EDF4865365C /* Using.swift in Sources */, + 40736D23F2F2F3C6B16BC375529FD544 /* VirtualTimeConverterType.swift in Sources */, + 9A12B0C3033761725B94A2B341C63029 /* VirtualTimeScheduler.swift in Sources */, + B35361D59F4A20080477F63DD22F76EA /* Window.swift in Sources */, + A6017DE1CDE42AE66DB28716879E1B44 /* WithLatestFrom.swift in Sources */, + 4B903D01EADC5277CE0807F254D570B8 /* WithUnretained.swift in Sources */, + 04627B60DC22B385B394FFA6FCABDF32 /* Zip.swift in Sources */, + E08BEB9077BB6AFF3D3924940A2F0E5F /* Zip+arity.swift in Sources */, + 4D2325B4C3D859169D1BC869B6E430E1 /* Zip+Collection.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -9677,6 +9610,51 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + AA32A31DC2A9084146DDDA0F4C7A4052 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 5360742E9D7DCE8499CD82397481B6C7 /* Constraint.swift in Sources */, + FA71D909F384F5837CDE59FAFB4F006A /* ConstraintAttributes.swift in Sources */, + BAB56CA5866822D64DB6936E197F590D /* ConstraintConfig.swift in Sources */, + 56777054BB8DD06D810BC35C3FDB9EE1 /* ConstraintConstantTarget.swift in Sources */, + 8F6C6C87251B8DC0F7115D0F6F0CE66E /* ConstraintDescription.swift in Sources */, + 133DE7E32B43FA8A2F6866B410772E24 /* ConstraintDirectionalInsets.swift in Sources */, + C8C9AFC10ECC9B37C45D0CB3F2982976 /* ConstraintDirectionalInsetTarget.swift in Sources */, + 5ABDAA4FF178EB851CCB2DB80EE56957 /* ConstraintDSL.swift in Sources */, + C937FAAF47980A57D5304E8F57834E3A /* ConstraintInsets.swift in Sources */, + D4F8592FD0D34487E8B7AE1A8DBE70EB /* ConstraintInsetTarget.swift in Sources */, + BD9CD207CEBF89BFAB1A91DD8BD28856 /* ConstraintItem.swift in Sources */, + 414AB08D97926FD48D8F53A55648C3ED /* ConstraintLayoutGuide.swift in Sources */, + DB59C0246A9B17E692606871D09C6FE1 /* ConstraintLayoutGuide+Extensions.swift in Sources */, + 6C28E9419DF813E4F8D0AF3495936CB9 /* ConstraintLayoutGuideDSL.swift in Sources */, + 95B4BE014268F6B5298CAF95E359807F /* ConstraintLayoutSupport.swift in Sources */, + 372B67097EA2150B5AF1C739C6B32DED /* ConstraintLayoutSupportDSL.swift in Sources */, + 717F7C2B82068EC8C678196C1163CFB2 /* ConstraintMaker.swift in Sources */, + 30BB7C6430A2B582DF78FA630BF7FA2C /* ConstraintMakerEditable.swift in Sources */, + C03CE4C033E7B4F00C02508BC4E7D135 /* ConstraintMakerExtendable.swift in Sources */, + DC4FF13885DE12A4891629B6E2724847 /* ConstraintMakerFinalizable.swift in Sources */, + 6B8C01A7118166BB22E1CB290C7892CA /* ConstraintMakerPrioritizable.swift in Sources */, + DAE8BA9F7C97C7BD3FBE5D07A29E4C24 /* ConstraintMakerRelatable.swift in Sources */, + 8FA4BF924710A8BAA660BF02B8BF7789 /* ConstraintMakerRelatable+Extensions.swift in Sources */, + 09A7BC6E4F7A7E07A31EC29DF349645A /* ConstraintMultiplierTarget.swift in Sources */, + DE2FDB7E8D913DD9CB530D47DA116ED7 /* ConstraintOffsetTarget.swift in Sources */, + 3E760F1E447D237A0A3BC6293C159944 /* ConstraintPriority.swift in Sources */, + 5F7EA1365A5B77FBC27F52654628DC31 /* ConstraintPriorityTarget.swift in Sources */, + D77CDC3644E7CA3679CC690E691C7D4A /* ConstraintRelatableTarget.swift in Sources */, + 81F8C8EB633C6FCD3E89E8A27813A825 /* ConstraintRelation.swift in Sources */, + 6F2010F8F1E7179F227BC35C550C4915 /* ConstraintView.swift in Sources */, + 1913969CF05751BEDA31EF6EE7C684DA /* ConstraintView+Extensions.swift in Sources */, + 5D11AC3B4B8825EB526924266D467239 /* ConstraintViewDSL.swift in Sources */, + 43F6105765D915CF37B8900BA2C9FA86 /* Debugging.swift in Sources */, + 8482273A5EDD767C705E9B8BD2AE26C5 /* LayoutConstraint.swift in Sources */, + 71DB10940DB22B16A264B380FC269808 /* LayoutConstraintItem.swift in Sources */, + 80A081B2EEB193DD2B447C29A6921817 /* SnapKit-dummy.m in Sources */, + A85E7DB7A2F420AD3D68860CBDAAC5B1 /* Typealiases.swift in Sources */, + 52239E0B7EA18D91A2395728B2A9702C /* UILayoutSupport+Extensions.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; C03E608B00E0D64F8CAFEB03DFD443F2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9808,13 +9786,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C837CF652AEAF94A08781D7DF6245666 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; CAB25926C077F5422787F0F64A3A79ED /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -9984,6 +9955,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + FC3E125A94295E17EF57B3CDDE1E8852 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; FEADC5AA31171CC91CC5DAEC030F2B0E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -10066,420 +10044,447 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 00F339DC9CF0E678733A13112A7F33D6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDZFPlayerKit_Private; - target = 2864923095274ACF5E5F99312F360AEB /* DDZFPlayerKit_Private */; - targetProxy = D77437482AFCF7373637C418512A6AA9 /* PBXContainerItemProxy */; - }; - 0107FB523CB66CCA868FB8747E05083E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JCore; - target = D504B99928659EA67A1C3A9E981EB8FF /* JCore */; - targetProxy = AAF8F6A4DD8EC59820EA08FDED6B0C17 /* PBXContainerItemProxy */; - }; - 018C56E00F6F18351EB26F5816BC647D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDUIGestureRecognizer; - target = 67F8329E1ABF625D93A19CDE570535BB /* DDUIGestureRecognizer */; - targetProxy = 3A3BDF8CEE9625642A7E8D9E94DDA674 /* PBXContainerItemProxy */; - }; - 02174DE51A36760997019864A9FDDEE9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapNavi-NO-IDFA"; - target = E94C558142469C11984D67CA883BAB1F /* AMapNavi-NO-IDFA */; - targetProxy = 9F3B46B554E0891500123336B328BADB /* PBXContainerItemProxy */; - }; - 07AE048115F4C952C7423CC9F4E594CE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDCategoryKit_Private; - target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; - targetProxy = 695C7A109DFD5075A4FAA496B6EC2CE2 /* PBXContainerItemProxy */; - }; - 088E5F9FC7B365460A1F6592F14C490F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapSearch-NO-IDFA"; - target = 4F1379598302C9160590B3650C10E1A5 /* AMapSearch-NO-IDFA */; - targetProxy = F42449BAC65F4969FE1BE1C7226D487B /* PBXContainerItemProxy */; - }; - 0DD6F7BEE5256E48B02794127ED8F3BD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JPush; - target = 5FB6AB0A09E7A2F2BE11AD6BAEFD9AED /* JPush */; - targetProxy = 4BA4A056FB162E17311A24CFD9BF1299 /* PBXContainerItemProxy */; - }; - 0E6E69BB0E96156D55A30DC698981C8B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDLogKit_Private; - target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; - targetProxy = 54B78C2F81056D823394CA949762D1C9 /* PBXContainerItemProxy */; - }; - 0F2BACD7A00E56B500CCA9CFF04EE820 /* PBXTargetDependency */ = { + 049F6EC1CF7740B17AFD7C767CD10E41 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = DDDateKit_Private; target = FA849029E6A899F45F613165943A6C68 /* DDDateKit_Private */; - targetProxy = 9BFE18006629DF2BD8BD758CF3047457 /* PBXContainerItemProxy */; + targetProxy = DB1587856D8AAADC8BCADA20A6A25046 /* PBXContainerItemProxy */; }; - 103BB61FC0BE6031F480358644C625AA /* PBXTargetDependency */ = { + 04CD55A42E67FD484262D7393F734155 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RxCocoa; - target = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6 /* RxCocoa */; - targetProxy = B25CACFCB1A6909C448C9F87C0EA1F01 /* PBXContainerItemProxy */; + name = DDZFPlayerKit_Private; + target = 2864923095274ACF5E5F99312F360AEB /* DDZFPlayerKit_Private */; + targetProxy = 0A390DFEAE32C0CC1A6654C3EE59245F /* PBXContainerItemProxy */; }; - 1F3276E5C40ED65DBB07D899E5B27F09 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDNetworkingOfAlamofireKit_Private; - target = B68A4B40517CF9B14050FA0A4A618B04 /* DDNetworkingOfAlamofireKit_Private */; - targetProxy = 7107AB461D045749CB5FBC020F7DD8A3 /* PBXContainerItemProxy */; - }; - 23029DE5BA2B70D6FD5BC179F592CCC0 /* PBXTargetDependency */ = { + 18B49BF2D6213EBD3A27067CEED34243 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RxSwift; target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; - targetProxy = D6502FF1746E35A9900D5D24DF1E8C96 /* PBXContainerItemProxy */; + targetProxy = 841F97BAD32A8C9A48CEB8A2060F4935 /* PBXContainerItemProxy */; }; - 24C1A345398D449A5F3C1DB62159EC74 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDAutoUIKit_Private; - target = 53463808DD395EFE0C9E0CDCB79A6C0A /* DDAutoUIKit_Private */; - targetProxy = 06BDB4456C4892C22D4D307406640EC2 /* PBXContainerItemProxy */; - }; - 2991011260700AD5070574665735D38F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapLocation-NO-IDFA"; - target = 4BD4E22D3419D68A85BDD6119CB37C6C /* AMapLocation-NO-IDFA */; - targetProxy = A73AE7F7CE102854A50BF3AAB726DF87 /* PBXContainerItemProxy */; - }; - 29CBFB8B196E30E5A5C8856E18369542 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDCategoryKit_Private; - target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; - targetProxy = 56F79EF773DAB384316935E34167D88F /* PBXContainerItemProxy */; - }; - 2AE91D6196566D9642D528C7C09C39D4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapFoundation-NO-IDFA"; - target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; - targetProxy = 018E4B13C8C80AF4FB74E0ECF5C4E420 /* PBXContainerItemProxy */; - }; - 2CA781C3715DBBB74E0CAF0CB9186F6A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxRelay; - target = 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */; - targetProxy = 704B7A08A703401A5AF909F376BB7C8A /* PBXContainerItemProxy */; - }; - 31D306C549DA013B032B46D678F6E2B5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SwiftEntryKit; - target = FEA6FF0588A91CCD972EDCD698B85647 /* SwiftEntryKit */; - targetProxy = 51858F03540F59274375C071842ED937 /* PBXContainerItemProxy */; - }; - 3393AAACA373DA8FE2AA0BF45DC84E77 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDTimerSwiftKit_Private; - target = 0D4DC618BC2D969E8743E01C79FFB7BD /* DDTimerSwiftKit_Private */; - targetProxy = 54FDD3BAC77F7A43CA7B56EF9E2BEC06 /* PBXContainerItemProxy */; - }; - 385A31B8CC411AD767051347DA77BECB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxSwift; - target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; - targetProxy = 406B6DFAEDC36CCE81E8E611F3865B89 /* PBXContainerItemProxy */; - }; - 38DC425CDB65EE0D4086B9FD3E1E9084 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = BRPickerView; - target = D505645C3F99EB1E8B6529D64D2C3E1C /* BRPickerView */; - targetProxy = 0FBC24C80EB201C47A891FF40D563A3B /* PBXContainerItemProxy */; - }; - 4BBB146F68289F4D7CC97F6F624715A0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapSearch-NO-IDFA"; - target = 4F1379598302C9160590B3650C10E1A5 /* AMapSearch-NO-IDFA */; - targetProxy = 18884CEB5A6BE80D3F38654922A03AFA /* PBXContainerItemProxy */; - }; - 5ECA5DA01277C10271EE3E9BB610E11C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapFoundation-NO-IDFA"; - target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; - targetProxy = 69A2B7CBBB14894BDBF6F794A5EA6AB5 /* PBXContainerItemProxy */; - }; - 61347524C45D8DCFEA139958D915942F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MJRefresh; - target = 6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */; - targetProxy = 59601EB996A58E69013231EDEC7768DD /* PBXContainerItemProxy */; - }; - 6685131EDF9683EDE4BDFF0A0E7BDAD1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDLogKit_Private; - target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; - targetProxy = 3D6FE7D06AE4F0C1FADA3B06F3476AAE /* PBXContainerItemProxy */; - }; - 67C77EF9C85D910E35808EDAF75693B5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SwiftyRSA; - target = 92A1C13902E7ACDA3ABB5BA1FEACC86C /* SwiftyRSA */; - targetProxy = 687FB4F38DB098417CC67F46B9A7E088 /* PBXContainerItemProxy */; - }; - 686C6B7ECEE25D7E9A804CF884AAA047 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Kingfisher; - target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; - targetProxy = 8693AB63183470CD0B43D904BC8616AF /* PBXContainerItemProxy */; - }; - 6C73F26A21207CAB481E6839EBE225FD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ZLPhotoBrowser; - target = 2FAF03761A44702490259F857A848B42 /* ZLPhotoBrowser */; - targetProxy = FE8D792C34D6E80AC2104A44F3F58E07 /* PBXContainerItemProxy */; - }; - 6E6C6CBF520949E1C43CDA6BFD4C3F62 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDControlsKit_Private; - target = 035D1842293C4AA08F442FFD899F7F28 /* DDControlsKit_Private */; - targetProxy = 31969F647953BC34A4DEABC5E73F235E /* PBXContainerItemProxy */; - }; - 709DD5367830DAF1A9AFEE802CC54330 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Kingfisher; - target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; - targetProxy = A8CF617882CC4FD91D3197BDC2700279 /* PBXContainerItemProxy */; - }; - 750408CBAB562035210AEA911C669508 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDMAMapKit_Private; - target = B41F58F2856AB275B4CF75F359937653 /* DDMAMapKit_Private */; - targetProxy = 3E170BDA86D113DFCD700D3274BB830A /* PBXContainerItemProxy */; - }; - 76DE7A26183212D0EC6F2D91B0DB8C1E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "ESTabBarController-swift"; - target = 3F83465BA81F6E581B3A431642D2992E /* ESTabBarController-swift */; - targetProxy = 57074832AA04941A9D2717BEB6BE6947 /* PBXContainerItemProxy */; - }; - 7741D95D36B59C1D406020806ADD3E1C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDBasicControlsKit_Private; - target = 087B100C5691B6A3C04A45198E6C32F6 /* DDBasicControlsKit_Private */; - targetProxy = 95873915BAB5320576F290731FC0336C /* PBXContainerItemProxy */; - }; - 7767D76F3711E0588664662FD611A83F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SnapKit; - target = 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */; - targetProxy = 75FEC6FE28D872E5BF72183D7130D984 /* PBXContainerItemProxy */; - }; - 7AEAE681AF0C1568AE38527190C050F6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDLogKit_Private; - target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; - targetProxy = 40B6B4E383DEF92AFD119203CF1EA81D /* PBXContainerItemProxy */; - }; - 7CB78832587A20087BCCCF3EDD6C44B0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxSwift; - target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; - targetProxy = C45DED695CBD6EB133BC9C0C4550C7B0 /* PBXContainerItemProxy */; - }; - 7DE31320F91CB39DA515FA66C60DB142 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "DDBasicControlsKit_Private-DDBaseViewController"; - target = 5C23965029860967865B3429B5E29092 /* DDBasicControlsKit_Private-DDBaseViewController */; - targetProxy = 7BA13F98D4FD6636F5AAAA5388A63A3A /* PBXContainerItemProxy */; - }; - 7E4BA4673EF2B57D4B01C3DE0ADE4136 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDColorKit_Private; - target = BFED7668E8D0960F3873C9C1329EB63F /* DDColorKit_Private */; - targetProxy = 6082BE2998841AB825AD4ED5BEF974EB /* PBXContainerItemProxy */; - }; - 8AAAECF8A91296E3F86B91BD9C8D8A45 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDPersistenceKit_Private; - target = F8AE53003F66B148774CFC6EBDEB9425 /* DDPersistenceKit_Private */; - targetProxy = 2DE610190C70D85AD30BAE1A536B6B98 /* PBXContainerItemProxy */; - }; - 8AF7F563D9D80245B737DDCB1094BEBD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Alamofire; - target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; - targetProxy = 49268FF46A35E2A8E585E6EE51250BCC /* PBXContainerItemProxy */; - }; - 90C8F458448138BA1676591065575D12 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDFontKit_Private; - target = 8F3F4D8426620E7E4A06FE4BCDB96FDE /* DDFontKit_Private */; - targetProxy = 6D9E8C50B604AA9DB2E8B330C7B07853 /* PBXContainerItemProxy */; - }; - 9315646DFB230943AE08D7DC6AB64996 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapFoundation-NO-IDFA"; - target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; - targetProxy = 94ACD963CADE0ABA885BA32469BE3648 /* PBXContainerItemProxy */; - }; - 95C292A68A22FA2A527407777DDCC4D1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapLocation-NO-IDFA"; - target = 4BD4E22D3419D68A85BDD6119CB37C6C /* AMapLocation-NO-IDFA */; - targetProxy = 1A0443A40EAAA8FA22D4C133F3EED02B /* PBXContainerItemProxy */; - }; - 9E04F1F97B6390F1CF303274DF5F19D3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JXCategoryView; - target = 8BEAFAA726C1965864B79B4B441AA513 /* JXCategoryView */; - targetProxy = 48C936B7CAC733971AEC00755AB5BCC4 /* PBXContainerItemProxy */; - }; - 9E149376349FE2CE9A47B96108E27A09 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapFoundation-NO-IDFA"; - target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; - targetProxy = CF3A0FEACE16DF220DDD0B2A2948B02E /* PBXContainerItemProxy */; - }; - 9F94B72A71C1B72399F6E8FB2BEAD97D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxRelay; - target = 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */; - targetProxy = CE8E38C3061FAA96699A2F23752C3222 /* PBXContainerItemProxy */; - }; - A23BB7069F410F7CCEEB846B5AA8F778 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDUtilsSwiftKit_Private; - target = A8B712B20F60AB02004557B884A28FD4 /* DDUtilsSwiftKit_Private */; - targetProxy = E8D3EF6A36B62B2FE29FFDD4882FB783 /* PBXContainerItemProxy */; - }; - AA136B4E7C3667AE18503AF0DE505E0E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDProgressHUDKit_Private; - target = 387C7767E705FE68450F97CBA4348CC0 /* DDProgressHUDKit_Private */; - targetProxy = 02556E119549DE39A31930F5231C1D2D /* PBXContainerItemProxy */; - }; - ACCA247429589E366AFECD2A3B93E334 /* PBXTargetDependency */ = { + 20E846B469C977458E609EC3DD47212C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = JPushExtension; target = 609276B985CD7549B9F1DEE4969208FF /* JPushExtension */; - targetProxy = 549954DFE96A16878CD265EC2F97D6B3 /* PBXContainerItemProxy */; + targetProxy = E5F3AA6AAF271D0BFCB2A8F8CCE346D0 /* PBXContainerItemProxy */; }; - B0BC7FF229C7EB6A93830C07975EE636 /* PBXTargetDependency */ = { + 317F39D3048A0CB5131AFECE9F363774 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "AMapNavi-NO-IDFA"; - target = E94C558142469C11984D67CA883BAB1F /* AMapNavi-NO-IDFA */; - targetProxy = 227402276234B4F2FC2951ECABBC2CB2 /* PBXContainerItemProxy */; + name = DDUtilsSwiftKit_Private; + target = A8B712B20F60AB02004557B884A28FD4 /* DDUtilsSwiftKit_Private */; + targetProxy = 93778F9EFFD61D31666866C823F12C54 /* PBXContainerItemProxy */; }; - B5A89E50FDFBBA2B3EF3AF64101071EC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDCategoryKit_Private; - target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; - targetProxy = 71E27BD651849CB89DA5BEC2D729A100 /* PBXContainerItemProxy */; - }; - B6FE5ECC6A7973DBA91A91E669237939 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = JCore; - target = D504B99928659EA67A1C3A9E981EB8FF /* JCore */; - targetProxy = 66625EFBE17F1152FB23F8FB6D96E79E /* PBXContainerItemProxy */; - }; - B8146DD46F882DB65064B499FEF063D5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RxSwift; - target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; - targetProxy = 0E2BE12E0336005E617045EC58D4B6F7 /* PBXContainerItemProxy */; - }; - C51B17A0E464B51430708347F8938918 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Bugly; - target = 4A68CFD979D413A619DF631BB121D98F /* Bugly */; - targetProxy = CEC15D5E20091ECF447E88D300EDE43F /* PBXContainerItemProxy */; - }; - C7531587D5C0B820BF4A57360359CEBB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDToastKit_Private; - target = CFF5B7CDF57A32781D2AD4CC98E95B29 /* DDToastKit_Private */; - targetProxy = FF91BFAC66C7EA089CDA4351C0D52841 /* PBXContainerItemProxy */; - }; - CCD946E7CF6A0072F537025D9953CA7E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDBasicControlsKit_Private; - target = 087B100C5691B6A3C04A45198E6C32F6 /* DDBasicControlsKit_Private */; - targetProxy = 038FFE15342969D554372D03BAFD2077 /* PBXContainerItemProxy */; - }; - CD28A000E7DC343CBBE73A65A5B29B60 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapTrack-NO-IDFA"; - target = 2160840D78FCB958CABE1B88300E38C5 /* AMapTrack-NO-IDFA */; - targetProxy = FF8F8C808D9F7CF590E475192D2E9169 /* PBXContainerItemProxy */; - }; - D23EA3C839298996F5B4FF63E6B81EEF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Alamofire; - target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; - targetProxy = F5168C4646AE98A100A6E7C56AA92AD8 /* PBXContainerItemProxy */; - }; - D9248A4DF0E125D1E271830EE6BCB640 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDWebImageKit_Private; - target = 477926D6FB1DCEFB352517A19636405D /* DDWebImageKit_Private */; - targetProxy = 62F595B7130A3318AE60B372EBC452AD /* PBXContainerItemProxy */; - }; - DC084FF83353C0C8D1D42A6172AC15AC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDCategoryKit_Private; - target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; - targetProxy = 1245407273BA707BA2E72A68564A1DE2 /* PBXContainerItemProxy */; - }; - E597F7FDF8BD84558BF3D54E74BC2BF3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = SnapKit; - target = 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */; - targetProxy = 8B0847C3C1D5841A70D880D5AA6328B9 /* PBXContainerItemProxy */; - }; - E67AB62A4EC1A7C573ADD88979B2A45D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDLogKit_Private; - target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; - targetProxy = 973368B34650D552EEFB47B66553225F /* PBXContainerItemProxy */; - }; - E8D73F0D4B0AAB70F84089988E88AAD0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapTrack-NO-IDFA"; - target = 2160840D78FCB958CABE1B88300E38C5 /* AMapTrack-NO-IDFA */; - targetProxy = E3FDAB50E72578EE1738337360170B85 /* PBXContainerItemProxy */; - }; - EA109BA48DC84C59CB155D962EB9EFB1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DDAudioPlayerKit_Private; - target = E72BE4C94039A951B47CCC942F6B4B8F /* DDAudioPlayerKit_Private */; - targetProxy = 2E3D31D4B90DB4248E4C8827E54DC70E /* PBXContainerItemProxy */; - }; - EB5355336D507988AEA7D1E4703EC8A9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapFoundation-NO-IDFA"; - target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; - targetProxy = 31F4EE0A69FFDB21712DAEC0AB538E9D /* PBXContainerItemProxy */; - }; - EEFA1BDE1B99B6582FBFAB32234A4035 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "AMapLocation-NO-IDFA"; - target = 4BD4E22D3419D68A85BDD6119CB37C6C /* AMapLocation-NO-IDFA */; - targetProxy = 51CC0DFA99277C07B8A4097CB3CC00B9 /* PBXContainerItemProxy */; - }; - EF9E62E51A6D6DFA8F0476BB49ABB9F7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = IQKeyboardManagerSwift; - target = B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */; - targetProxy = 4B83A266FCB47B665B4212A4C9CE46E8 /* PBXContainerItemProxy */; - }; - FBD9A37B03F64824D07CF9059246D082 /* PBXTargetDependency */ = { + 332FABFBE0912787B5B88E25C31D0F4E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "DDMAMapKit_Private-DDMAMapKit_Private"; target = 6056870867CC4728BCEF2E5EBDD1DCB3 /* DDMAMapKit_Private-DDMAMapKit_Private */; - targetProxy = 23A3596F485B5DCC8E6A77A196FC779A /* PBXContainerItemProxy */; + targetProxy = C4A67242D60B0309861B79B065F1FAAD /* PBXContainerItemProxy */; + }; + 35883EFD50EF6085E9032510B0BFDFC6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDBasicControlsKit_Private; + target = 087B100C5691B6A3C04A45198E6C32F6 /* DDBasicControlsKit_Private */; + targetProxy = 184CD9C1B96CCF3BB3CC4C84C9E46DF1 /* PBXContainerItemProxy */; + }; + 3C59ED849FA57B9726FD044FE4D57B53 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxSwift; + target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; + targetProxy = 211262416FF7BDC60F2023F00A458E5F /* PBXContainerItemProxy */; + }; + 44B801317910D909951797E4158DC09A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = IQKeyboardManagerSwift; + target = B490E7485944099E16C9CBD79119D1D4 /* IQKeyboardManagerSwift */; + targetProxy = ABEAAD9E0A014A51CD7BCEB5732D9620 /* PBXContainerItemProxy */; + }; + 44E64EBAB94315EEC594FC2611257861 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapSearch-NO-IDFA"; + target = 4F1379598302C9160590B3650C10E1A5 /* AMapSearch-NO-IDFA */; + targetProxy = 265156BBC09644F611AFAAB77957B511 /* PBXContainerItemProxy */; + }; + 487B53BC15CB27C5DA6CCE8ECE09F438 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SwiftyRSA; + target = 92A1C13902E7ACDA3ABB5BA1FEACC86C /* SwiftyRSA */; + targetProxy = 587707028C51A77E3C6E4E3A88050258 /* PBXContainerItemProxy */; + }; + 4CFA29FEF025ED4018C29010D4D50705 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDNetworkingOfAlamofireKit_Private; + target = B68A4B40517CF9B14050FA0A4A618B04 /* DDNetworkingOfAlamofireKit_Private */; + targetProxy = 99DB62CE63F5855521D4B24E850117A6 /* PBXContainerItemProxy */; + }; + 4D69279835C93CF704DEEEE5EA52D913 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDLogKit_Private; + target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; + targetProxy = 4EA1571027BA9C67444DBCEB26514581 /* PBXContainerItemProxy */; + }; + 4DC3F958CC023D8C1DBDF54657667346 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Alamofire; + target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; + targetProxy = 24D0CE8AB252868DC32A3B0F98FEA4D0 /* PBXContainerItemProxy */; + }; + 57234C80DBED83A30DE704EAA05C4B5A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JPush; + target = 5FB6AB0A09E7A2F2BE11AD6BAEFD9AED /* JPush */; + targetProxy = BFE7828DD48146992ABC152C79A309D5 /* PBXContainerItemProxy */; + }; + 5738517D139C049F07B34EF78FCBEFCC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "ESTabBarController-swift"; + target = 3F83465BA81F6E581B3A431642D2992E /* ESTabBarController-swift */; + targetProxy = C25C988EC940DB688FFE80F15A441C6B /* PBXContainerItemProxy */; + }; + 5AB6DF038F03264C8161637FFE12AF39 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JXCategoryView; + target = 8BEAFAA726C1965864B79B4B441AA513 /* JXCategoryView */; + targetProxy = AAB1C969C7DED82089DB867EE41E40DD /* PBXContainerItemProxy */; + }; + 5C2904C95BA246EA11EF6B2903D3DF8C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDUIGestureRecognizer; + target = 67F8329E1ABF625D93A19CDE570535BB /* DDUIGestureRecognizer */; + targetProxy = E910D185EB77931E7DA20A761EB30A88 /* PBXContainerItemProxy */; + }; + 5E14D9EBA16225C33DE6F841CE72BEAB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapLocation-NO-IDFA"; + target = 4BD4E22D3419D68A85BDD6119CB37C6C /* AMapLocation-NO-IDFA */; + targetProxy = 68AA75EC7F1DFFBA5897F56578704553 /* PBXContainerItemProxy */; + }; + 6513D33D65E59132A583FEBE1A190AAB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapTrack-NO-IDFA"; + target = 2160840D78FCB958CABE1B88300E38C5 /* AMapTrack-NO-IDFA */; + targetProxy = 3D89939527CE9B8ABC5699D0865BE4B6 /* PBXContainerItemProxy */; + }; + 68959D01EE1A22C98A70F2FEE298700E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapFoundation-NO-IDFA"; + target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; + targetProxy = 94FBC7C52ADED6B9382BD1FBAC44DC26 /* PBXContainerItemProxy */; + }; + 694008D2BDA96DBB7A9A153857EE266D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDBasicControlsKit_Private; + target = 087B100C5691B6A3C04A45198E6C32F6 /* DDBasicControlsKit_Private */; + targetProxy = CD676DB6466F376677658F5A32D9ABA9 /* PBXContainerItemProxy */; + }; + 69E06BE0E33B59ED4DE0A4E985E0D113 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BRPickerView; + target = D505645C3F99EB1E8B6529D64D2C3E1C /* BRPickerView */; + targetProxy = C7EF3102375B57D19A25429B356D81EB /* PBXContainerItemProxy */; + }; + 6B27B704C42969169D1F30E30FF401BB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapNavi-NO-IDFA"; + target = E94C558142469C11984D67CA883BAB1F /* AMapNavi-NO-IDFA */; + targetProxy = 8637D837F45C8FE06E5D34806CCE26B5 /* PBXContainerItemProxy */; + }; + 6D5A7B5147EC5B6CB4AC1C38E4DE61C5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapTrack-NO-IDFA"; + target = 2160840D78FCB958CABE1B88300E38C5 /* AMapTrack-NO-IDFA */; + targetProxy = 3D02BF6752A42A9DBB3E3660AE759D79 /* PBXContainerItemProxy */; + }; + 6E997D94C0776BAA94F1DD8961A88E08 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapFoundation-NO-IDFA"; + target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; + targetProxy = 828908CB7D25AA2D988DB6765C77F9CF /* PBXContainerItemProxy */; + }; + 74D8B4A4B63B7E6A734C12BB5E04ABBF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SnapKit; + target = 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */; + targetProxy = AD2CC6F01BB732A0DE62186510D5F359 /* PBXContainerItemProxy */; + }; + 7739AF89AA0E80E411A88113BCB3A16D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDTimerSwiftKit_Private; + target = 0D4DC618BC2D969E8743E01C79FFB7BD /* DDTimerSwiftKit_Private */; + targetProxy = E2C012DCB30CA7BA6E03424DC3F78B88 /* PBXContainerItemProxy */; + }; + 77923E5B2D8E3E389721FAAF264EBFB5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SnapKit; + target = 19622742EBA51E823D6DAE3F8CDBFAD4 /* SnapKit */; + targetProxy = 8DC2C7A4203B4827BD74DBECD8A4BA85 /* PBXContainerItemProxy */; + }; + 7A91BCABF42EFAAF7BD2DF07E22DE404 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Alamofire; + target = EAAA1AD3A8A1B59AB91319EE40752C6D /* Alamofire */; + targetProxy = FEB7747699ECE774264837437979EDF9 /* PBXContainerItemProxy */; + }; + 7B6C1ADC968557F0E393658034097030 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JCore; + target = D504B99928659EA67A1C3A9E981EB8FF /* JCore */; + targetProxy = 11DCFBBBE82829EB55DDA82634A02657 /* PBXContainerItemProxy */; + }; + 815B0673BCA619D9E15F8AE81B48B536 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapLocation-NO-IDFA"; + target = 4BD4E22D3419D68A85BDD6119CB37C6C /* AMapLocation-NO-IDFA */; + targetProxy = 84AAF9133452420D2363ED643866FAE4 /* PBXContainerItemProxy */; + }; + 832B6C641E5860F0ACB886E6D5AB849B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapFoundation-NO-IDFA"; + target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; + targetProxy = CCF4EF35D4A25917EEA87B1F0A43E9A1 /* PBXContainerItemProxy */; + }; + 833BAE8A1EA015ECB047FE312982CDDB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDFontKit_Private; + target = 8F3F4D8426620E7E4A06FE4BCDB96FDE /* DDFontKit_Private */; + targetProxy = 12BD3DB13AF3145E2C5DA5B5B2A64BFA /* PBXContainerItemProxy */; + }; + 84F58E7123FB0D988F520B385E87CEBF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDControlsKit_Private; + target = 035D1842293C4AA08F442FFD899F7F28 /* DDControlsKit_Private */; + targetProxy = A3D4E25A19D3FE9C9DB0B69B150F68C1 /* PBXContainerItemProxy */; + }; + 89F67EA1807EF87C9203BEA09D08B472 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = SwiftEntryKit; + target = FEA6FF0588A91CCD972EDCD698B85647 /* SwiftEntryKit */; + targetProxy = 250991C42920E8194B5CE933E436384D /* PBXContainerItemProxy */; + }; + 907DCA0ACD130E500F0A4E45A900A34B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDAutoUIKit_Private; + target = 53463808DD395EFE0C9E0CDCB79A6C0A /* DDAutoUIKit_Private */; + targetProxy = 6C5192A18A8F27834947A4E7155C7BA8 /* PBXContainerItemProxy */; + }; + 907E82ADBBA8FE3064E048502E0384F5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxCocoa; + target = 7AD0C6DCDC9CEC8A3C7C10C7FEE07BE6 /* RxCocoa */; + targetProxy = 83F71CDE006F44D40686A9FA7F6CC437 /* PBXContainerItemProxy */; + }; + 91E5F41B8DB1AFA5831A0FDCED1D49B7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Kingfisher; + target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; + targetProxy = 30F9FCC56E41D56EDB6BDE8F34C066FF /* PBXContainerItemProxy */; + }; + 95899E2ECE93569A0FBD475D147DAAD8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapLocation-NO-IDFA"; + target = 4BD4E22D3419D68A85BDD6119CB37C6C /* AMapLocation-NO-IDFA */; + targetProxy = DA4D5A52BFA5C276F32FB0EEBB99E255 /* PBXContainerItemProxy */; + }; + 9C3CF6A5F444819724FEA737DAACD249 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDLogKit_Private; + target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; + targetProxy = DDDA3B56AE9D871398C65E91A7643A16 /* PBXContainerItemProxy */; + }; + A0452C6022B4840EB345A7EDC7A03870 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDToastKit_Private; + target = CFF5B7CDF57A32781D2AD4CC98E95B29 /* DDToastKit_Private */; + targetProxy = 63479221F78F1CBF45187F5B3B3EC784 /* PBXContainerItemProxy */; + }; + A0F616C7AACF7F1AE3B0085FF5DEC2A6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDLogKit_Private; + target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; + targetProxy = 5A9DCB08461AA2AC5E7CC398216CBE5A /* PBXContainerItemProxy */; + }; + A703268D56E2929A4217B21A770D5C73 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = ZLPhotoBrowser; + target = 2FAF03761A44702490259F857A848B42 /* ZLPhotoBrowser */; + targetProxy = 7ED7FE0E83387F0104F015A544CE67CE /* PBXContainerItemProxy */; + }; + A94F309E5968153C80B235382221CA3A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDCategoryKit_Private; + target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; + targetProxy = B3CB21D159A0B3C7DA0F07BC95853B68 /* PBXContainerItemProxy */; + }; + AB251E8AEF755EBAC70111D58F663144 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapFoundation-NO-IDFA"; + target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; + targetProxy = 4D3E3E385D28F65C03399EE4ACC7C17C /* PBXContainerItemProxy */; + }; + ACD3FAC9020986D8D5F65415C090EC32 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapFoundation-NO-IDFA"; + target = 9B182CB4E1716E9070813D3C59736001 /* AMapFoundation-NO-IDFA */; + targetProxy = E1AC07B30F4FAD0DB124E07FABC2249C /* PBXContainerItemProxy */; + }; + AF14F805E766FB48CC84FC8EDA68F60D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxSwift; + target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; + targetProxy = A18A8247F9A5DB69355FB03C11A28915 /* PBXContainerItemProxy */; + }; + B3BFED3F220D2AD59629ED5E93B3BDCC /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDCategoryKit_Private; + target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; + targetProxy = EC6D6B53B03886F78B8E760B5B6D2D98 /* PBXContainerItemProxy */; + }; + C071920D2F2887C1E9C5B3FDF3F2CEE9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDPersistenceKit_Private; + target = F8AE53003F66B148774CFC6EBDEB9425 /* DDPersistenceKit_Private */; + targetProxy = 2753D2384F40A7C81A54E37DC6F4DEC6 /* PBXContainerItemProxy */; + }; + C230D426F4FB9864BDC3B0DFF13113F5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDColorKit_Private; + target = BFED7668E8D0960F3873C9C1329EB63F /* DDColorKit_Private */; + targetProxy = 3689C4F5315903923CF7576E563BC8BD /* PBXContainerItemProxy */; + }; + C5B7DFFF9CC47666CAEBA0A9DEB76527 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDLogKit_Private; + target = 26BA8950EBF05410254D54F7EF76D5CE /* DDLogKit_Private */; + targetProxy = 38A93D337992BC70CBB3B8BE96E40538 /* PBXContainerItemProxy */; + }; + D0F014851D8E5EBB0C1E9A02E9CB6796 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = JCore; + target = D504B99928659EA67A1C3A9E981EB8FF /* JCore */; + targetProxy = 99AFB69115DF3CE320FB5AA005CAFAD1 /* PBXContainerItemProxy */; + }; + D41485C3C7FC43B7663172CAA5E8F41F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDWebImageKit_Private; + target = 477926D6FB1DCEFB352517A19636405D /* DDWebImageKit_Private */; + targetProxy = F4EA5A2286FD7F220F1CFFF4847433CC /* PBXContainerItemProxy */; + }; + DAD71FD8507916366EB8081410C9F742 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDMAMapKit_Private; + target = B41F58F2856AB275B4CF75F359937653 /* DDMAMapKit_Private */; + targetProxy = F93A2912B38B72B0608177DBD6056F03 /* PBXContainerItemProxy */; + }; + DBD068F4FCB242CBC85083DFEC221F03 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxRelay; + target = 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */; + targetProxy = C3EF2EF47400AFE173B32A113FDDA2FE /* PBXContainerItemProxy */; + }; + E10AF3B15333E10A4BE626A2E7EB9E53 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDProgressHUDKit_Private; + target = 387C7767E705FE68450F97CBA4348CC0 /* DDProgressHUDKit_Private */; + targetProxy = 8645E2E76ED017A759ED173841B5EBFE /* PBXContainerItemProxy */; + }; + E5EBDC5319C35CA8A25E739BD0366CE2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDAudioPlayerKit_Private; + target = E72BE4C94039A951B47CCC942F6B4B8F /* DDAudioPlayerKit_Private */; + targetProxy = 806F90B9EEA797CCC403DAAB56428802 /* PBXContainerItemProxy */; + }; + EB4A9DDB747A065200DC01E9EC8C6E1F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "DDBasicControlsKit_Private-DDBaseViewController"; + target = 5C23965029860967865B3429B5E29092 /* DDBasicControlsKit_Private-DDBaseViewController */; + targetProxy = 50CEDDC28C8B2064307E631D3191C15F /* PBXContainerItemProxy */; + }; + ECA3FCF5488490409089D7C373D7348F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapSearch-NO-IDFA"; + target = 4F1379598302C9160590B3650C10E1A5 /* AMapSearch-NO-IDFA */; + targetProxy = 41DC221333125F079618D99D4EC756D5 /* PBXContainerItemProxy */; + }; + ED8C5AFE2AA8B7B1C01D163407DA5DA4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MJRefresh; + target = 6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */; + targetProxy = DF808EECBE2B628C3AB4013A3552D77E /* PBXContainerItemProxy */; + }; + EE1946988FB46D6D9BAA964F413567B6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxRelay; + target = 4622BFEF3DC16E8BD15EEFC30D4D0084 /* RxRelay */; + targetProxy = 62761E1251588AD8D06BF49C80457F58 /* PBXContainerItemProxy */; + }; + F1B3A0618EE8F0E663588A39F265CB81 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "AMapNavi-NO-IDFA"; + target = E94C558142469C11984D67CA883BAB1F /* AMapNavi-NO-IDFA */; + targetProxy = F2DB9D45AB7D4797753ED45BCD1E8308 /* PBXContainerItemProxy */; + }; + F3E3C16596BE29B08D47B054386E884C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDCategoryKit_Private; + target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; + targetProxy = B52D8960CE86714CF052B647A6F8F194 /* PBXContainerItemProxy */; + }; + F5D38CDBB39FA063353FFFE25D2A9F9D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RxSwift; + target = EA9EA43B3B503823EE36C60D9C8A865F /* RxSwift */; + targetProxy = 98C0AFE5410520EF33DADF9119FEB1CF /* PBXContainerItemProxy */; + }; + FA5523DDF0C52A49F75D434F1276A9DF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Kingfisher; + target = E8022D22FAA6690B5E1C379C1BCE1491 /* Kingfisher */; + targetProxy = 3FFBE0149E37D515A4EE920B55239A10 /* PBXContainerItemProxy */; + }; + FB148040C48B2C12957A24A16A2D2E09 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Bugly; + target = 4A68CFD979D413A619DF631BB121D98F /* Bugly */; + targetProxy = D8CBA4CD06720627826BE3552535FD9D /* PBXContainerItemProxy */; + }; + FCC36C119757F4B0B940D92E721658AA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DDCategoryKit_Private; + target = 7B8412F08BD27981DB53CE2C25C19F0A /* DDCategoryKit_Private */; + targetProxy = D9C18689C254D24054BEEEB7117328FD /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ + 0046983722841B115A9B80935051497E /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 08038D4977DF6872536E3C3FE81F5E0C /* 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; + }; 00CFFB6AC18FFD8289A2D08ECB0D6317 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EBDCF9C9311B3503A80E8A638EC25A58 /* DDZFPlayerKit_Private.release.xcconfig */; + baseConfigurationReference = 7D213FD2F8DA516EF5C22E5B330B6756 /* DDZFPlayerKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10505,9 +10510,37 @@ }; name = Release; }; + 0296B4DCC3D3510A36CC009EB395BE8A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BE58D564083F547D167C46DE94437866 /* 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; + }; 02EAF8F8D4762C1B17A8CEB476228273 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9647BD171AFB23D3A34E71B4E3AA3198 /* DDBasicControlsKit_Private.release.xcconfig */; + baseConfigurationReference = C3E43700B862AB0F324553D1A1BBE29F /* DDBasicControlsKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10535,7 +10568,7 @@ }; 034BA87C2C84A3F815BABA073747D950 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BD0B5C824276F88E52D0060A73CDB57D /* IQKeyboardManagerSwift.release.xcconfig */; + baseConfigurationReference = F746703E83DF1CD522EFA62F771BA441 /* IQKeyboardManagerSwift.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10563,7 +10596,7 @@ }; 03D5621DFAF33B3E865DA1A7AA59856A /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 09A1D3229C8D052062027ABBB1539377 /* DDAudioPlayerKit_Private.release.xcconfig */; + baseConfigurationReference = 6A731A1029480E71095336F261F38A56 /* DDAudioPlayerKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10589,27 +10622,9 @@ }; name = PreRelease; }; - 04C6A4F703E4ABEBC6EED02DFB4375FD /* 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 = 5E403B9EEAD13AFBAB2871831C453524 /* JPushExtension.release.xcconfig */; + baseConfigurationReference = F130059A8A3B3BEB905BD9BE9DB282E6 /* JPushExtension.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10629,7 +10644,7 @@ }; 06902B9EA0B8701B1BBD382EF5B048E5 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9D0F6B63ED009DCB443935C2CE7C3EAB /* DDControlsKit_Private.release.xcconfig */; + baseConfigurationReference = B79D62E22D9848F7996A4C22AD03BA19 /* DDControlsKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10655,37 +10670,9 @@ }; name = PreRelease; }; - 06FB0019D303A6480910019AF2E6CE35 /* 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; - }; 0781C02B9B1ABAB69E606763A1B452A0 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C89ADCB72663A7461E23819200652DC9 /* AMapNavi-NO-IDFA.release.xcconfig */; + baseConfigurationReference = F35757BC1AC893C68843463D0111FD70 /* AMapNavi-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10704,7 +10691,7 @@ }; 0AECEEFF7929FBEFD97057F5F6DC8B2C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7EA821B861F99F932833744748A753B1 /* JCore.debug.xcconfig */; + baseConfigurationReference = 762897DE187CC155AE0155EB3526E9F5 /* JCore.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10722,7 +10709,7 @@ }; 0B07FC7C2CBBECC1AEAB861B30DB8E43 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C7AFB2C050969535553B023673BFA656 /* SwiftEntryKit.release.xcconfig */; + baseConfigurationReference = 290A8A27E575C3A9AF8317932B8C668E /* SwiftEntryKit.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -10749,7 +10736,7 @@ }; 0CB1723AE73B5963CE93AED98ED6D6ED /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AF572D9E966A6ADEAA1AE261F1B91D21 /* DDUIGestureRecognizer.release.xcconfig */; + baseConfigurationReference = 1844D35CAD9AEF2B74F6FF5A52210DE9 /* DDUIGestureRecognizer.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10775,9 +10762,36 @@ }; name = PreRelease; }; + 0D464A099CA5BA89B203C5C155A2C85D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4D43DE9089919C5D1CDF9BC60423966D /* 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; + }; 0F56E9EF4C4A8A2EFE063DB95981BAD1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D05B97EE823062BC337989E133CEECE6 /* Bugly.debug.xcconfig */; + baseConfigurationReference = 3BD5049C7E7CA0CAEC7AF90BFF1FBF37 /* Bugly.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10795,7 +10809,7 @@ }; 1170D4F6047D92FB103D8925261C4446 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 57066B483B3C78049F0880AFFCE791C4 /* ESTabBarController-swift.release.xcconfig */; + baseConfigurationReference = F22EE762164D1AA9AC91A3616BED1B86 /* ESTabBarController-swift.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -10822,7 +10836,7 @@ }; 1495AF8B549792BF7912F5A1E1119712 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC43FAA7E3C12560AA886DE857F93BA2 /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */; + baseConfigurationReference = 7156CB3F8329BB0793CFFB6544972637 /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10850,7 +10864,7 @@ }; 15B7F84E39C93EFEBD8AD10B0FE0B047 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C1F5F806AFCD503624E55B19A123B2BA /* AMapNavi-NO-IDFA.debug.xcconfig */; + baseConfigurationReference = CD5BACAB19DCE4D9237BCAC42E2683C8 /* AMapNavi-NO-IDFA.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10868,7 +10882,7 @@ }; 1726DC34BF3C4756B065E2A908DCC12C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7E6DD7EB75072604E5832BA5E6C83DDE /* DDPersistenceKit_Private.release.xcconfig */; + baseConfigurationReference = 7AA2E518EECC85C0E5AC4CD0C29FB4EF /* DDPersistenceKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10896,7 +10910,7 @@ }; 17E9F697225BE4693A9A0CAAE767CFEB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 20D1ED4F3728D5F8DA90CE2EFB37B3AE /* DDDateKit_Private.release.xcconfig */; + baseConfigurationReference = B88231265E76ADE26235DC161FCDDE58 /* DDDateKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10924,7 +10938,7 @@ }; 18450C9EEFA1230D2952C8327442D5AE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CA7DA7ABF6E0DD9E4C0BD8433C515A3D /* AMapTrack-NO-IDFA.release.xcconfig */; + baseConfigurationReference = 0B311EC7F5B47078DBAFF57B7FBC20B0 /* AMapTrack-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -10944,7 +10958,7 @@ }; 1A549D214D907E76BA47A41507492968 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D978E0E647D8E4FE925B1853F295328B /* DDAutoUIKit_Private.debug.xcconfig */; + baseConfigurationReference = BFF4ABD12C58CC8E55DEDFBB5B1B9ED8 /* DDAutoUIKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10971,7 +10985,7 @@ }; 1D6ECDD132EE5035CEB27FA70E194607 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 19F3DA811C0F7DCEA9A0881CACECA189 /* ZLPhotoBrowser.release.xcconfig */; + baseConfigurationReference = DB482E4D85EE363F0FA6A5BF8274328E /* ZLPhotoBrowser.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10999,7 +11013,7 @@ }; 1DF8897E06F8071D42BAE4465121279D /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1EA80EA9DCB270302DAC7F65AFE579B0 /* Alamofire.release.xcconfig */; + baseConfigurationReference = E4DA94F0D9E40CDAD90953BB8998CC21 /* Alamofire.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11027,7 +11041,7 @@ }; 225716D671C2AF3962051A80830E0D98 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6A552983BA923BE8FAC4BDA59212655B /* JXCategoryView.debug.xcconfig */; + baseConfigurationReference = C1CE8E4465B6CB946C3C52C6C6835E2A /* JXCategoryView.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11053,7 +11067,7 @@ }; 226221FEFECAF478E4AD3C69CC522966 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3033ED13E860307AC3657C99F0F019F /* AMapLocation-NO-IDFA.release.xcconfig */; + baseConfigurationReference = 8C5592B2EC56CA21F54F0016BC5A721F /* AMapLocation-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -11071,9 +11085,29 @@ }; name = Release; }; + 22B4267C3BEC1C4E72BD950C05CC8D4A /* PreRelease */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C3E43700B862AB0F324553D1A1BBE29F /* DDBasicControlsKit_Private.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + 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"; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = PreRelease; + }; 231DE093916EB01285DC4AECC16D44CF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 87CBEA68716D16EBB588D6CD61000FCB /* DDDateKit_Private.debug.xcconfig */; + baseConfigurationReference = DCE1FBA2658CEF1279E07E4C878BEEA8 /* DDDateKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11100,7 +11134,7 @@ }; 24D7D357EF5DACAB8C59F250AC83420F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1EC2252F82D266AE7F938DE967080413 /* DDLogKit_Private.release.xcconfig */; + baseConfigurationReference = A607ED2656C6103B871BD1882303608A /* DDLogKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11128,7 +11162,7 @@ }; 28351E0A3C97633F27A3A5C9C6F6ABF6 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C0C4F5D3B0E9E2DAC945CB3EE359B48E /* JXCategoryView.release.xcconfig */; + baseConfigurationReference = C221F9782A9BAE37674AAABFBDD2B7F8 /* JXCategoryView.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11155,7 +11189,7 @@ }; 2853FEDC9CC66B9840B31219EECD4E5A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8C4DC6F83AB9F81E340D5B148CA739BB /* DDColorKit_Private.release.xcconfig */; + baseConfigurationReference = CB2EFF782B3FB411DB2AF290FA7CE49F /* DDColorKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11183,7 +11217,7 @@ }; 29DB94002704203A0B4A69C3238100D9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BE39C38E34567D084D08F3F203E57E2E /* DDNetworkingOfAlamofireKit_Private.debug.xcconfig */; + baseConfigurationReference = 9E59429EDAF06FD126D49DD4D663FE6A /* DDNetworkingOfAlamofireKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11208,35 +11242,9 @@ }; name = Debug; }; - 2A24CDBA7317F18DCFDA38E7F0EA2DBB /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C3BFBF760F1C3A2D7641DA056C02D903 /* 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; - }; 2AD561BE6F3E5FF1C3362471B44944A5 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A409749AD215AAA1622AC3955B0754DC /* DDMAMapKit_Private.release.xcconfig */; + baseConfigurationReference = F74DB77F6B56A4E0C52E7A4608745F6E /* DDMAMapKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11264,7 +11272,7 @@ }; 2BE9F474CC004847B066222FD5037D6A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 92421079C7D42417250288A64C734CD4 /* DDTimerSwiftKit_Private.release.xcconfig */; + baseConfigurationReference = 55A73A83E02FB8CE59B41F07F08BED25 /* DDTimerSwiftKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11292,7 +11300,7 @@ }; 2C14C682F1AF1911E085FA9E288139D2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 53F3B2B135B8687A86273C6C8B7268CC /* RxCocoa.release.xcconfig */; + baseConfigurationReference = 64C8893757A2D4E62E4220D92513F337 /* RxCocoa.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11319,7 +11327,7 @@ }; 30E9D8E42AE5CD6D5246F2627DD27E9F /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6EAF9EBB0A0F6E1197989EBC8704D23F /* DDWebImageKit_Private.debug.xcconfig */; + baseConfigurationReference = 8CD15EBB949A28AE863CE13ABADAF704 /* DDWebImageKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11346,7 +11354,7 @@ }; 3281C76EA7D794732D228832C577826B /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8C4DC6F83AB9F81E340D5B148CA739BB /* DDColorKit_Private.release.xcconfig */; + baseConfigurationReference = CB2EFF782B3FB411DB2AF290FA7CE49F /* DDColorKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11374,7 +11382,7 @@ }; 3810F09D10322B304912A8FC9D90FE73 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9647BD171AFB23D3A34E71B4E3AA3198 /* DDBasicControlsKit_Private.release.xcconfig */; + baseConfigurationReference = C3E43700B862AB0F324553D1A1BBE29F /* DDBasicControlsKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11400,9 +11408,36 @@ }; name = Release; }; + 3D9439ED8B376139730269D6DA77E0D1 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2C490D20EDACA6A662B727C0166EA7D9 /* 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; + }; 3E82EF80F3ACC6610CD959FD17245D53 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D20EB1D60F5FA950B1D88F62FE24CBA3 /* DDLogKit_Private.debug.xcconfig */; + baseConfigurationReference = 003ED5128C713C6B2C0B8B4EF9C1EB59 /* DDLogKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11429,7 +11464,7 @@ }; 3EB0C0846EA6732314C5D69489AE15E2 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 88DF251A482A891A68E18044DA5C0215 /* AMapFoundation-NO-IDFA.release.xcconfig */; + baseConfigurationReference = 24D419A749A3EF2DB63614969FABCCBA /* AMapFoundation-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -11449,7 +11484,7 @@ }; 3F958C3B78D47F9549C9023C4E5B4004 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C0C4F5D3B0E9E2DAC945CB3EE359B48E /* JXCategoryView.release.xcconfig */; + baseConfigurationReference = C221F9782A9BAE37674AAABFBDD2B7F8 /* JXCategoryView.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11499,7 +11534,7 @@ }; 44CB277F467617FACCA6BF598A034A65 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D8B88765BE86F25BEB9D19D6AD4C9C90 /* BRPickerView.debug.xcconfig */; + baseConfigurationReference = D5F722418DA9A57C7FDCDF4F98860557 /* BRPickerView.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11550,7 +11585,7 @@ }; 4C61240F775280D105570AB6FBF0BD72 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 92421079C7D42417250288A64C734CD4 /* DDTimerSwiftKit_Private.release.xcconfig */; + baseConfigurationReference = 55A73A83E02FB8CE59B41F07F08BED25 /* DDTimerSwiftKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11578,7 +11613,7 @@ }; 4CFE159363E23D99B30DCFC1E84B6E21 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EAF6FE31F0268D1B31CCEE94DC8CE3FC /* DDToastKit_Private.debug.xcconfig */; + baseConfigurationReference = C7D4B86BB67C4C95F5566DC5F3A9AADB /* DDToastKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11605,7 +11640,7 @@ }; 4D53E26FAE1ED5EB8E462D391AADD577 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 49446041930752FD6376250702C4AF9D /* DDToastKit_Private.release.xcconfig */; + baseConfigurationReference = EF10505DB9EDCB5CF878187F5157FD7A /* DDToastKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11633,7 +11668,7 @@ }; 4E026E4F4DA1962A2D7BA31CDB0CA756 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 96FDFD9B7E6D10B43F81A9DDEF58C46C /* SwiftEntryKit.debug.xcconfig */; + baseConfigurationReference = ADC173C0A2B73E007BE49B890571E712 /* SwiftEntryKit.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11659,7 +11694,7 @@ }; 4E8A37E39B95F86B5A498DEF72505CB1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EC57DF96897E5A30C3C47648AC341138 /* MJRefresh.debug.xcconfig */; + baseConfigurationReference = DB3B79C4DB6A5DCFD066B93DA04D6F60 /* MJRefresh.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11683,9 +11718,47 @@ }; name = Debug; }; + 5373CB8594BC2C5E44AFA897D130D494 /* PreRelease */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F74DB77F6B56A4E0C52E7A4608745F6E /* 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; + }; + 53D5ED16CD980777B8275A35C66AA198 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 3DFB8D71098F786D73A6F9575F54791A /* 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; + }; 53DBDCA48029EDDC75E87A248B01458C /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F19F5369A2C30CBEB436D563F27A627D /* JCore.release.xcconfig */; + baseConfigurationReference = 1B5FA0581C54F7D5C0E1F78B9F28D245 /* JCore.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -11704,7 +11777,7 @@ }; 5425F23225AE92341F2558DA01812C57 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 752F50737BE63096173CE2D82D5F79E5 /* MJRefresh.release.xcconfig */; + baseConfigurationReference = 182C474DAD1BF7F563F0DB8E38461A77 /* MJRefresh.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11729,6 +11802,24 @@ }; name = Release; }; + 5588F92DCBE46B6326E80EAC645493A2 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 92D6CB3786C70E22E0FF1BF764EDDE31 /* 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; + }; 5776ED848C82B0310FAF78DF8E22D701 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 18BCA08F5CEEE178EA4B5E4C7521ECB7 /* Pods-OrderSchedulingNotificationService.release.xcconfig */; @@ -11756,7 +11847,7 @@ }; 577813FB86763A6ADFB7460A091E77EA /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4C54F9CD91183CE4ADEC1F83999D3950 /* JPush.release.xcconfig */; + baseConfigurationReference = 5ADCE33F34B093641FED0F7C8659508B /* JPush.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -11775,7 +11866,7 @@ }; 5859B1ED45373FA14A1E6451A262D675 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 57066B483B3C78049F0880AFFCE791C4 /* ESTabBarController-swift.release.xcconfig */; + baseConfigurationReference = F22EE762164D1AA9AC91A3616BED1B86 /* ESTabBarController-swift.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11800,48 +11891,9 @@ }; name = PreRelease; }; - 58C65315C6CB72591D33A361815DF2F2 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A409749AD215AAA1622AC3955B0754DC /* DDMAMapKit_Private.release.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; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 597D6F0A7E512B8C5DC8B5A2B6534948 /* 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; - }; 6140DDBB9B050ACCF404485A14F4FFE0 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C532DF0FD239F67E33BC7009890811BD /* BRPickerView.release.xcconfig */; + baseConfigurationReference = A15A48EE53406A3516FE6CF82C636924 /* BRPickerView.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -11868,7 +11920,7 @@ }; 63275981B15BE90F6912932D6156AC92 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 154133F8696D45C09E50268F96410941 /* IQKeyboardManagerSwift.debug.xcconfig */; + baseConfigurationReference = DC897248D2F7405E6639BF7DF62EDDEC /* IQKeyboardManagerSwift.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11893,36 +11945,9 @@ }; name = Debug; }; - 6337A94AABF3BEE9E37755498547A1F0 /* 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; - }; 64F8D025C0B4722D495C98EC8827C679 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1EA80EA9DCB270302DAC7F65AFE579B0 /* Alamofire.release.xcconfig */; + baseConfigurationReference = E4DA94F0D9E40CDAD90953BB8998CC21 /* Alamofire.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -11950,7 +11975,7 @@ }; 65B60F5572E5A88B96165BADCBB1BDA6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0A55B4C27BC6F39FDDC74AD8A0E87382 /* AMapSearch-NO-IDFA.debug.xcconfig */; + baseConfigurationReference = E8DB196B7ADA67C31C0E94D4D722AF25 /* AMapSearch-NO-IDFA.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -11992,7 +12017,7 @@ }; 6B9A53460BDAF5BE885221978932492C /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 19F3DA811C0F7DCEA9A0881CACECA189 /* ZLPhotoBrowser.release.xcconfig */; + baseConfigurationReference = DB482E4D85EE363F0FA6A5BF8274328E /* ZLPhotoBrowser.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12020,7 +12045,7 @@ }; 6C3CC8E0B427ECC1DB4A52D26B813CEF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46FAFFF77DD6AA42BD28E82106E3DD28 /* DDPersistenceKit_Private.debug.xcconfig */; + baseConfigurationReference = 1D3E800F1536BBD1AEC2B4D773CCF487 /* DDPersistenceKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12047,7 +12072,7 @@ }; 6C81FF1694F67970213CC687C43B91A3 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 60C12B20AA097F6B962ECE262990F404 /* AMapSearch-NO-IDFA.release.xcconfig */; + baseConfigurationReference = D00FD3347D13AF427B96A4550756CDCC /* AMapSearch-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12066,7 +12091,7 @@ }; 6E369200B22231B3ABCA75FDF3ABE62B /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 752F50737BE63096173CE2D82D5F79E5 /* MJRefresh.release.xcconfig */; + baseConfigurationReference = 182C474DAD1BF7F563F0DB8E38461A77 /* MJRefresh.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -12093,7 +12118,7 @@ }; 6FA6D0B57F7F0945CD6226AD94C296BB /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 219FF9A5CBF2C4CCFA4820510911BA99 /* AMapTrack-NO-IDFA.debug.xcconfig */; + baseConfigurationReference = 672A259CAC7E6E42EBCD9A5F91EE8875 /* AMapTrack-NO-IDFA.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12111,7 +12136,7 @@ }; 7004DBDA636C88E2F25FDB913BBCF872 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D88A57E0029FEF793BB477D6BD6761EC /* DDProgressHUDKit_Private.release.xcconfig */; + baseConfigurationReference = 626CC9F402C18E629AE5DA9C4479016E /* DDProgressHUDKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12139,7 +12164,7 @@ }; 7006E7DA87DBF9FB621E5E92F18FB641 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 53F3B2B135B8687A86273C6C8B7268CC /* RxCocoa.release.xcconfig */; + baseConfigurationReference = 64C8893757A2D4E62E4220D92513F337 /* RxCocoa.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -12166,7 +12191,7 @@ }; 7136F591221AD5501E817C1B77F484ED /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 77D6363B15E7FD81D43C1F894B278CC5 /* DDControlsKit_Private.debug.xcconfig */; + baseConfigurationReference = 39C4AE6A5477E66DB8EF75B3A0C31652 /* DDControlsKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12193,7 +12218,7 @@ }; 739DE83A94D5F3796DA470D04BDBA273 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C89ADCB72663A7461E23819200652DC9 /* AMapNavi-NO-IDFA.release.xcconfig */; + baseConfigurationReference = F35757BC1AC893C68843463D0111FD70 /* AMapNavi-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12213,7 +12238,7 @@ }; 77BAB67F30880412AB4954F7FF0DE8DB /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 88DF251A482A891A68E18044DA5C0215 /* AMapFoundation-NO-IDFA.release.xcconfig */; + baseConfigurationReference = 24D419A749A3EF2DB63614969FABCCBA /* AMapFoundation-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12230,9 +12255,9 @@ }; name = PreRelease; }; - 7D46C967EBD0CBE5B05E991A627F30EF /* PreRelease */ = { + 7A1181CFFD671E94B16DE47BE6334474 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C1F9F1C286C0F8A5553D967D22C70702 /* DDCategoryKit_Private.release.xcconfig */; + baseConfigurationReference = FE5C0C1AAE53A2102584FF8E43D5F9E6 /* SnapKit.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12240,27 +12265,26 @@ "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/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 = DDCategoryKit_Private; - PRODUCT_NAME = DDCategoryKit_Private; + 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; + name = Debug; }; 7D4FC5186D0C5815B2ABFC9323046C03 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 06297B3403F1501663AFC128A815A060 /* AMapLocation-NO-IDFA.debug.xcconfig */; + baseConfigurationReference = 28A98C9B5D697744DB95098A8FFF5B8B /* AMapLocation-NO-IDFA.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12278,7 +12302,7 @@ }; 7DE63CFFD890B984947FC4B929ED850A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F19F5369A2C30CBEB436D563F27A627D /* JCore.release.xcconfig */; + baseConfigurationReference = 1B5FA0581C54F7D5C0E1F78B9F28D245 /* JCore.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12296,47 +12320,64 @@ }; name = Release; }; - 7F4CCE23B0CC1539C1C7BAEC58EF478A /* PreRelease */ = { + 7E993FF68FDB1536978DD584E28A1E39 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9647BD171AFB23D3A34E71B4E3AA3198 /* DDBasicControlsKit_Private.release.xcconfig */; + baseConfigurationReference = 19DBB05FE14851A626C697BAD50A5BCE /* SnapKit.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; - 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/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; + }; + 81CFDED7912586F396B276E978835BD6 /* PreRelease */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BD88212010EF01BC7534AE2BA398D16C /* 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; - WRAPPER_EXTENSION = bundle; }; name = PreRelease; }; - 8514C6D4029258523C28890E268E4C9D /* 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; - }; 874D5ECFCBDE246920D02ADB76CDB268 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BCA2508381061E8227A93838DC1FE52C /* Bugly.release.xcconfig */; + baseConfigurationReference = 86E84E635C9634F8B4A86B85323CCEBF /* Bugly.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12355,7 +12396,7 @@ }; 8D95C529FCF4FDEA49C65D2E82670BCF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 99CD74167ED8CEFB7DC9CA5F9B66D0E4 /* SwiftyRSA.debug.xcconfig */; + baseConfigurationReference = 646623E37EE9BCD93A92BA48EA2C85F7 /* SwiftyRSA.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12448,7 +12489,7 @@ }; 904AF2F6BEE0469BB3786D9548E42CC7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3A75A95EB84953B276F45E0F5FAD4E37 /* SwiftyRSA.release.xcconfig */; + baseConfigurationReference = C9FD3B7299BEDC109194BB0B95A2FA1A /* SwiftyRSA.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12474,9 +12515,35 @@ }; name = Release; }; + 92BE760DEF6225A3506EB5D7DDEE8D5E /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 06523BF69F5B28DF722EF93AFCB7B3BB /* 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; + }; 934475E4DA2C0BABCCF26DBEB031FCF6 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1615AE46D5BA6D7B2DDF2EF81B402EAD /* DDAutoUIKit_Private.release.xcconfig */; + baseConfigurationReference = A4C0C20830AF12DC74F52352EF1BFAFD /* DDAutoUIKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12504,7 +12571,7 @@ }; 9372D9A03A0E88D0504BA7590C49DF48 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4F88101538EE2A77224B3C1F7C32934E /* DDUtilsSwiftKit_Private.debug.xcconfig */; + baseConfigurationReference = B25E04F3EA30D0D933886EE487BD4555 /* DDUtilsSwiftKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12531,7 +12598,7 @@ }; 95F977185959B1C025A76CB343AF5CA8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0F741998B15409C128197BB366CC306E /* DDBasicControlsKit_Private.debug.xcconfig */; + baseConfigurationReference = 3DFB8D71098F786D73A6F9575F54791A /* DDBasicControlsKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12558,7 +12625,7 @@ }; 97407110C2616E82AAABA592E25F0B1E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1780C08F8DCAEC4F2BD176907EF082A4 /* DDAudioPlayerKit_Private.debug.xcconfig */; + baseConfigurationReference = 5F1BB63D8B7BAEB5A5EEAECFC339D3D2 /* DDAudioPlayerKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12585,7 +12652,7 @@ }; 99F4C308A2075AEDDE5F26F284DA3E2C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AF572D9E966A6ADEAA1AE261F1B91D21 /* DDUIGestureRecognizer.release.xcconfig */; + baseConfigurationReference = 1844D35CAD9AEF2B74F6FF5A52210DE9 /* DDUIGestureRecognizer.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12611,37 +12678,9 @@ }; name = Release; }; - 9ABEB94405307E7EFE690AF8A0AB9F13 /* PreRelease */ = { - 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) "; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = PreRelease; - }; 9C23F3BFA136C876EABD07FBA9320B77 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 87A9B783169EBC87CFDC1AF5E4A5F5BB /* DDWebImageKit_Private.release.xcconfig */; + baseConfigurationReference = F4910F0BD18C60C343E23AE84CC65603 /* DDWebImageKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12731,7 +12770,7 @@ }; 9FC4AEA5BCE37566BA898173C24D35FB /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EBDCF9C9311B3503A80E8A638EC25A58 /* DDZFPlayerKit_Private.release.xcconfig */; + baseConfigurationReference = 7D213FD2F8DA516EF5C22E5B330B6756 /* DDZFPlayerKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12759,7 +12798,7 @@ }; A053864A4C7CCE4DF4E4A2087D9E4CC8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6A9B731C7C9133C11F69006BDCA26F50 /* JPush.debug.xcconfig */; + baseConfigurationReference = 3CD6AA262FA3C7C56326222F1F962ABD /* JPush.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12775,55 +12814,37 @@ }; name = Debug; }; - A2F3DCDC23D5AE2075CEAB88044C6ABB /* Release */ = { + A5DCC196BAD3C467C1FDB6D766591202 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DAC7038C6A95B0C20D9EBA2157B13FF2 /* RxSwift.release.xcconfig */; + baseConfigurationReference = 424AEC4F2749338D1A1829FA0453BD22 /* 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/RxSwift/RxSwift-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MODULEMAP_FILE = Headers/Public/RxSwift/RxSwift.modulemap; + 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 = RxSwift; - PRODUCT_NAME = RxSwift; + 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.1; + SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; name = Release; }; - A5D99C2BC5B223A616EA579374F4C8CE /* 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; - }; A6B72CF8955C56DF71299106046D684E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F5CA91EB50F50DF3E3FEF0793030CFEF /* RxCocoa.debug.xcconfig */; + baseConfigurationReference = FD04B0396B832393BDE001F63399C66D /* RxCocoa.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -12849,7 +12870,7 @@ }; A794012D20A5CD57211E1D4516C55EE5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 60C12B20AA097F6B962ECE262990F404 /* AMapSearch-NO-IDFA.release.xcconfig */; + baseConfigurationReference = D00FD3347D13AF427B96A4550756CDCC /* AMapSearch-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12869,7 +12890,7 @@ }; A91E6C1D84E7355205D2A116E4968450 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C532DF0FD239F67E33BC7009890811BD /* BRPickerView.release.xcconfig */; + baseConfigurationReference = A15A48EE53406A3516FE6CF82C636924 /* BRPickerView.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -12894,36 +12915,9 @@ }; name = Release; }; - AA35FF429D72A18F1DCA883DDEC5946D /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FA1586A3E00388E9C70823796DACC14A /* 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; - }; AC2BF088394456C214FB78D9ED463DAE /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CA5DAAA25AE8EDD19A8969327550AD00 /* DDUtilsSwiftKit_Private.release.xcconfig */; + baseConfigurationReference = 72BE789EE4CA52ED5A35DFDB909613BE /* DDUtilsSwiftKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12951,7 +12945,7 @@ }; AE9BE5BF7D5EA18EDF75839085C706F5 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 87A9B783169EBC87CFDC1AF5E4A5F5BB /* DDWebImageKit_Private.release.xcconfig */; + baseConfigurationReference = F4910F0BD18C60C343E23AE84CC65603 /* DDWebImageKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -12979,7 +12973,7 @@ }; B2155827CB60089BFE7E07CDD28D4162 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4C54F9CD91183CE4ADEC1F83999D3950 /* JPush.release.xcconfig */; + baseConfigurationReference = 5ADCE33F34B093641FED0F7C8659508B /* JPush.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -12997,64 +12991,9 @@ }; name = Release; }; - B2A66460B11CA899641F75D8DAB6B3A0 /* 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; - }; - B44883856B4716F55B000C5E1A94F7A1 /* Release */ = { - 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) RELEASE"; - SWIFT_VERSION = 5.1; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; B4FE51F4F207B2C4F54618B9A13E6CC8 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC43FAA7E3C12560AA886DE857F93BA2 /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */; + baseConfigurationReference = 7156CB3F8329BB0793CFFB6544972637 /* DDNetworkingOfAlamofireKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13080,9 +13019,35 @@ }; name = PreRelease; }; + B54D4CEF5428BBF66418DF8C1505F7AA /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F01E92229D893810C857F6F7CF082379 /* 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; + }; B6F97F207FCC488304C4B7A83E98E99C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A409749AD215AAA1622AC3955B0754DC /* DDMAMapKit_Private.release.xcconfig */; + baseConfigurationReference = F74DB77F6B56A4E0C52E7A4608745F6E /* DDMAMapKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13110,7 +13075,7 @@ }; B8100C82C69FDEFD77ADE441367788E7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CADC2F0323519D2B1EC5039CA5A6E625 /* DDMAMapKit_Private.debug.xcconfig */; + baseConfigurationReference = 92D6CB3786C70E22E0FF1BF764EDDE31 /* DDMAMapKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13137,7 +13102,7 @@ }; BB4FE9F0AC1A5ECF8D07C1690147AD45 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 49446041930752FD6376250702C4AF9D /* DDToastKit_Private.release.xcconfig */; + baseConfigurationReference = EF10505DB9EDCB5CF878187F5157FD7A /* DDToastKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13165,7 +13130,7 @@ }; BC3A49A5F1543E29E82A94504188C974 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9D0F6B63ED009DCB443935C2CE7C3EAB /* DDControlsKit_Private.release.xcconfig */; + baseConfigurationReference = B79D62E22D9848F7996A4C22AD03BA19 /* DDControlsKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13193,7 +13158,7 @@ }; BDB50D1512B27C99FEC5AFD017B9C2FD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1615AE46D5BA6D7B2DDF2EF81B402EAD /* DDAutoUIKit_Private.release.xcconfig */; + baseConfigurationReference = A4C0C20830AF12DC74F52352EF1BFAFD /* DDAutoUIKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13221,7 +13186,7 @@ }; BE22D79D33B14C35C020D24E71C6CFEE /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C08648DEED9804F089D41B684A7D1BCD /* DDFontKit_Private.release.xcconfig */; + baseConfigurationReference = 5940E321D283F8FD17217BCC63D4005D /* DDFontKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13273,7 +13238,7 @@ }; C2CF9D64B823FDF5559C4A461A345DA5 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 3A75A95EB84953B276F45E0F5FAD4E37 /* SwiftyRSA.release.xcconfig */; + baseConfigurationReference = C9FD3B7299BEDC109194BB0B95A2FA1A /* SwiftyRSA.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13301,7 +13266,7 @@ }; C4050B58B3671D1B57C9668880DF1E94 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BCA2508381061E8227A93838DC1FE52C /* Bugly.release.xcconfig */; + baseConfigurationReference = 86E84E635C9634F8B4A86B85323CCEBF /* Bugly.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -13321,7 +13286,7 @@ }; C4879EE709DDBAAA009F3A5FB2176461 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 90B9FF058E72ABE05F3B9B0DE1543FBD /* ZLPhotoBrowser.debug.xcconfig */; + baseConfigurationReference = 664C6499AF8F8C9EF762E80985B7EE41 /* ZLPhotoBrowser.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13348,7 +13313,7 @@ }; C723089A4A8EECB528038729687D4337 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 91D57E0822EDE97592360AF71F937FD3 /* AMapFoundation-NO-IDFA.debug.xcconfig */; + baseConfigurationReference = 5916768C215C18F79CC9FE8C20A326C3 /* AMapFoundation-NO-IDFA.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -13364,9 +13329,28 @@ }; name = Debug; }; + C75F3CFF0ECEEC74D38475F5A08AA293 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C3E43700B862AB0F324553D1A1BBE29F /* 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; + }; C7F778431CCFA2F935A0DB577516EBF7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5E403B9EEAD13AFBAB2871831C453524 /* JPushExtension.release.xcconfig */; + baseConfigurationReference = F130059A8A3B3BEB905BD9BE9DB282E6 /* JPushExtension.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -13387,7 +13371,7 @@ }; C9B5A7A9EE2F32B23DF16125FBECDF13 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D7606AAF9B3469C3A8E9BABB5B5D8298 /* DDProgressHUDKit_Private.debug.xcconfig */; + baseConfigurationReference = CE6F56AA2541B1C73D20227D285533B9 /* DDProgressHUDKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13414,7 +13398,7 @@ }; CA71D1250878D7A2F10FC80912091C9E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 871F4538634B7C6510B6C6D3D01C0194 /* ESTabBarController-swift.debug.xcconfig */; + baseConfigurationReference = 9FD34ED95BEB09198976104EECDD897F /* ESTabBarController-swift.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -13440,7 +13424,7 @@ }; CA8EE889378675C9A5C3F87CF3F81643 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 09A1D3229C8D052062027ABBB1539377 /* DDAudioPlayerKit_Private.release.xcconfig */; + baseConfigurationReference = 6A731A1029480E71095336F261F38A56 /* DDAudioPlayerKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13466,55 +13450,9 @@ }; name = Release; }; - CE71B62CECF863FCD01752A325065BB8 /* Debug */ = { + CE270FE969246342B224508C222CDF1D /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 664B80C9E1E223C3A5E06D7CE84141D8 /* JPushExtension.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - DEVELOPMENT_TEAM = W4SG324NS4; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - D08651D3AC817FF86B0DF77FB8DCBCD7 /* 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; - }; - D1A8E2DB71589342503ACD4F4E4EECCD /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FE368C984EA9F1C0E750A90989284556 /* Kingfisher.release.xcconfig */; + baseConfigurationReference = BE58D564083F547D167C46DE94437866 /* Kingfisher.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13533,16 +13471,62 @@ 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"; VALIDATE_PRODUCT = YES; }; + name = PreRelease; + }; + CE71B62CECF863FCD01752A325065BB8 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = FE915BDC07951BED22167C3EB7D0B52C /* JPushExtension.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + DEVELOPMENT_TEAM = W4SG324NS4; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + D0ED645ECE9FCFE3F70CF636E2A11CE4 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BD88212010EF01BC7534AE2BA398D16C /* 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; }; D4C6CC16ECDE97BFB3D9B16E26F2DFAB /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C7AFB2C050969535553B023673BFA656 /* SwiftEntryKit.release.xcconfig */; + baseConfigurationReference = 290A8A27E575C3A9AF8317932B8C668E /* SwiftEntryKit.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -13567,9 +13551,36 @@ }; name = PreRelease; }; + D71A6DBCC4C38CB282F948CAB174E656 /* PreRelease */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2C490D20EDACA6A662B727C0166EA7D9 /* 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; + }; D753782F97F4E74713668F63AC2264FC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BD0B5C824276F88E52D0060A73CDB57D /* IQKeyboardManagerSwift.release.xcconfig */; + baseConfigurationReference = F746703E83DF1CD522EFA62F771BA441 /* IQKeyboardManagerSwift.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13597,7 +13608,7 @@ }; D8C42B711DF611275F46D4A34ECE3773 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D88A57E0029FEF793BB477D6BD6761EC /* DDProgressHUDKit_Private.release.xcconfig */; + baseConfigurationReference = 626CC9F402C18E629AE5DA9C4479016E /* DDProgressHUDKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13623,9 +13634,28 @@ }; name = PreRelease; }; + D8ECC44F7F2715990DAC2DEF6A4A47A7 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F74DB77F6B56A4E0C52E7A4608745F6E /* DDMAMapKit_Private.release.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; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) RELEASE"; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; DC44562C893BBD9E6500DE8495051652 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4C43BD69FD9C6CD32883C828F36FC9E5 /* DDUIGestureRecognizer.debug.xcconfig */; + baseConfigurationReference = 1D084B2827EF44C0459A1108CFBE9757 /* DDUIGestureRecognizer.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13652,7 +13682,7 @@ }; DF2EED8A10FE5D2C9BC103161FA8FF7A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C08648DEED9804F089D41B684A7D1BCD /* DDFontKit_Private.release.xcconfig */; + baseConfigurationReference = 5940E321D283F8FD17217BCC63D4005D /* DDFontKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13680,7 +13710,7 @@ }; DFE3DB0D7A79153CE9B1B4EE24EDD541 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D43F9DFE294B601576D924D8D14689E0 /* Alamofire.debug.xcconfig */; + baseConfigurationReference = 4B0D3B7B2BCF78E03CBC19514D0A9270 /* Alamofire.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13707,7 +13737,7 @@ }; E0AC88ADD941277FF7B427F755BC7B15 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7E6DD7EB75072604E5832BA5E6C83DDE /* DDPersistenceKit_Private.release.xcconfig */; + baseConfigurationReference = 7AA2E518EECC85C0E5AC4CD0C29FB4EF /* DDPersistenceKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13735,7 +13765,7 @@ }; E1031BB4531D9A9132E269EA00AFF8B4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CA5DAAA25AE8EDD19A8969327550AD00 /* DDUtilsSwiftKit_Private.release.xcconfig */; + baseConfigurationReference = 72BE789EE4CA52ED5A35DFDB909613BE /* DDUtilsSwiftKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13763,7 +13793,7 @@ }; E21A5F2FEA6117A1960CA8D8DF5802CF /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1EC2252F82D266AE7F938DE967080413 /* DDLogKit_Private.release.xcconfig */; + baseConfigurationReference = A607ED2656C6103B871BD1882303608A /* DDLogKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13789,37 +13819,9 @@ }; name = PreRelease; }; - E7121F0789CA30AEFD90F66EBFAFEC44 /* 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; - }; E73E22AD2455596C012FDF52EDCEE9AD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4E4DBB2C70A01D3B2DA769ED641E4A77 /* DDTimerSwiftKit_Private.debug.xcconfig */; + baseConfigurationReference = 07BA75F921FF2FB8447132132B1EBA65 /* DDTimerSwiftKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13844,32 +13846,6 @@ }; name = Debug; }; - E9EE8CFBD46F5674667B8B6600820E64 /* 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; - }; EA77E2D16CF855DB969ADBF9307BDD89 /* PreRelease */ = { isa = XCBuildConfiguration; buildSettings = { @@ -13934,7 +13910,7 @@ }; EEDB89A479687B1B952A7288C971BFB2 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 20D1ED4F3728D5F8DA90CE2EFB37B3AE /* DDDateKit_Private.release.xcconfig */; + baseConfigurationReference = B88231265E76ADE26235DC161FCDDE58 /* DDDateKit_Private.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -13986,9 +13962,37 @@ }; name = Release; }; + F3A3EF0E77AC0C9E4D11FA7691050404 /* PreRelease */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 424AEC4F2749338D1A1829FA0453BD22 /* 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 = CA7DA7ABF6E0DD9E4C0BD8433C515A3D /* AMapTrack-NO-IDFA.release.xcconfig */; + baseConfigurationReference = 0B311EC7F5B47078DBAFF57B7FBC20B0 /* AMapTrack-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -14007,7 +14011,7 @@ }; F5CC28EC3299B709423FB6C60A226B24 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3033ED13E860307AC3657C99F0F019F /* AMapLocation-NO-IDFA.release.xcconfig */; + baseConfigurationReference = 8C5592B2EC56CA21F54F0016BC5A721F /* AMapLocation-NO-IDFA.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -14026,7 +14030,7 @@ }; F6C7ECFF2293D4993D9933A5DE819A41 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 09C0EE387BC54891D09ED7F95D00203C /* DDFontKit_Private.debug.xcconfig */; + baseConfigurationReference = 103AC706506457350FF15C77AFBCF976 /* DDFontKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -14053,7 +14057,7 @@ }; F7A68DC3E75DBA99B64E78F514059694 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 927A1F1AC870032B4A7CDEAC436FF1E9 /* DDColorKit_Private.debug.xcconfig */; + baseConfigurationReference = 75DAFA1AC695B509C2780FE8EC418CD1 /* DDColorKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -14078,9 +14082,9 @@ }; name = Debug; }; - F9D9E5B01A4F9A50AF870F65CAB6084B /* Debug */ = { + FA00D535F5336FFEC421A3B55D2E77A7 /* PreRelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AA19C8D8B918C79F66601E7BD259C04E /* Kingfisher.debug.xcconfig */; + baseConfigurationReference = 19DBB05FE14851A626C697BAD50A5BCE /* SnapKit.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -14088,26 +14092,27 @@ "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; + 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 = Kingfisher; - PRODUCT_NAME = Kingfisher; + 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 = Debug; + name = PreRelease; }; FB30073E2C0CCAE442B4761A540433B1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 868F987DB35D5AF7FC49A6482780B71E /* DDZFPlayerKit_Private.debug.xcconfig */; + baseConfigurationReference = 766AB4A861BED0C8C4E0AB8EAE8AD563 /* DDZFPlayerKit_Private.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -14132,33 +14137,6 @@ }; name = Debug; }; - FE1ABB1705EC9145AE264F6F0E6292F3 /* 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; - }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -14202,32 +14180,12 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 123DF9164133C4CEA2B1D6F615279277 /* Build configuration list for PBXNativeTarget "DDBasicControlsKit_Private-DDBaseViewController" */ = { + 162D806A875A5F4C2C0CC37ADEA32A28 /* Build configuration list for PBXNativeTarget "DDBasicControlsKit_Private-DDBaseViewController" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8514C6D4029258523C28890E268E4C9D /* Debug */, - 7F4CCE23B0CC1539C1C7BAEC58EF478A /* PreRelease */, - A5D99C2BC5B223A616EA579374F4C8CE /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 1285E08F80976CDDCBDC72F7EE8A5A91 /* Build configuration list for PBXNativeTarget "SnapKit" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - AA35FF429D72A18F1DCA883DDEC5946D /* Debug */, - 9ABEB94405307E7EFE690AF8A0AB9F13 /* PreRelease */, - E7121F0789CA30AEFD90F66EBFAFEC44 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 15936119862F3A65BB6E850B8C8C3C78 /* Build configuration list for PBXNativeTarget "Kingfisher" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - F9D9E5B01A4F9A50AF870F65CAB6084B /* Debug */, - 06FB0019D303A6480910019AF2E6CE35 /* PreRelease */, - D1A8E2DB71589342503ACD4F4E4EECCD /* Release */, + 53D5ED16CD980777B8275A35C66AA198 /* Debug */, + 22B4267C3BEC1C4E72BD950C05CC8D4A /* PreRelease */, + C75F3CFF0ECEEC74D38475F5A08AA293 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -14242,6 +14200,16 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 1D026A45718C0C20C8ED5C15CA218D6C /* Build configuration list for PBXNativeTarget "Kingfisher" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0D464A099CA5BA89B203C5C155A2C85D /* Debug */, + CE270FE969246342B224508C222CDF1D /* PreRelease */, + 0296B4DCC3D3510A36CC009EB395BE8A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 2502DBFD94504E58AACFE09B0E8730C7 /* Build configuration list for PBXAggregateTarget "JCore" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -14332,6 +14300,16 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 38EB0D5777A17CE7972869E448DAEB68 /* Build configuration list for PBXNativeTarget "DDCategoryKit_Private" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0046983722841B115A9B80935051497E /* Debug */, + F3A3EF0E77AC0C9E4D11FA7691050404 /* PreRelease */, + A5DCC196BAD3C467C1FDB6D766591202 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 3B447F142DEA14A3711012439CBCE2AC /* Build configuration list for PBXNativeTarget "DDUtilsSwiftKit_Private" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -14362,6 +14340,16 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 459C39D831B21662FD7B92FF4CB12EFF /* Build configuration list for PBXNativeTarget "RxRelay" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 92BE760DEF6225A3506EB5D7DDEE8D5E /* Debug */, + D71A6DBCC4C38CB282F948CAB174E656 /* PreRelease */, + 3D9439ED8B376139730269D6DA77E0D1 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -14372,6 +14360,16 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 4864B887C80983650BB8EB2D48C4028F /* Build configuration list for PBXNativeTarget "RxSwift" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B54D4CEF5428BBF66418DF8C1505F7AA /* Debug */, + 81CFDED7912586F396B276E978835BD6 /* PreRelease */, + D0ED645ECE9FCFE3F70CF636E2A11CE4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 49DDBBC328AA5B7CDE3A461CA361D9BD /* Build configuration list for PBXNativeTarget "DDFontKit_Private" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -14392,26 +14390,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 562E027EFC698463969F0B8EFB04C81B /* Build configuration list for PBXNativeTarget "DDMAMapKit_Private-DDMAMapKit_Private" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 04C6A4F703E4ABEBC6EED02DFB4375FD /* Debug */, - 597D6F0A7E512B8C5DC8B5A2B6534948 /* PreRelease */, - 58C65315C6CB72591D33A361815DF2F2 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 6749D8D2073D098876211DF78C11E6EB /* Build configuration list for PBXNativeTarget "DDCategoryKit_Private" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 6337A94AABF3BEE9E37755498547A1F0 /* Debug */, - 7D46C967EBD0CBE5B05E991A627F30EF /* PreRelease */, - B2A66460B11CA899641F75D8DAB6B3A0 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 6EFF2AAACB8F237CB585C1B5C0A8EAE8 /* Build configuration list for PBXNativeTarget "DDControlsKit_Private" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -14422,16 +14400,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7041F73EE4D221DB58020276424A1B6A /* Build configuration list for PBXNativeTarget "RxSwift" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2A24CDBA7317F18DCFDA38E7F0EA2DBB /* Debug */, - FE1ABB1705EC9145AE264F6F0E6292F3 /* PreRelease */, - A2F3DCDC23D5AE2075CEAB88044C6ABB /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 9112C4B5379A7A93828F210A5BCC34CC /* Build configuration list for PBXAggregateTarget "JPushExtension" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -14442,16 +14410,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 942AAD492F168723E0E550674363AAC9 /* Build configuration list for PBXNativeTarget "RxRelay" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - E9EE8CFBD46F5674667B8B6600820E64 /* Debug */, - D08651D3AC817FF86B0DF77FB8DCBCD7 /* PreRelease */, - B44883856B4716F55B000C5E1A94F7A1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 9548A22CCE439C8FB7025321E7EBC912 /* Build configuration list for PBXAggregateTarget "AMapSearch-NO-IDFA" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -14562,6 +14520,16 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + CB5C407FDF8A97D264FB9B95FF293B5E /* Build configuration list for PBXNativeTarget "SnapKit" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 7A1181CFFD671E94B16DE47BE6334474 /* Debug */, + FA00D535F5336FFEC421A3B55D2E77A7 /* PreRelease */, + 7E993FF68FDB1536978DD584E28A1E39 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; D4DF964BCCEC6C6DD17FC5511C5756AB /* Build configuration list for PBXNativeTarget "RxCocoa" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -14592,6 +14560,16 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + E924DFB5B284D17EB484320E97901020 /* Build configuration list for PBXNativeTarget "DDMAMapKit_Private-DDMAMapKit_Private" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 5588F92DCBE46B6326E80EAC645493A2 /* Debug */, + 5373CB8594BC2C5E44AFA897D130D494 /* PreRelease */, + D8ECC44F7F2715990DAC2DEF6A4A47A7 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; EFE63C32122B5B979FBB92406341D163 /* Build configuration list for PBXNativeTarget "DDPersistenceKit_Private" */ = { isa = XCConfigurationList; buildConfigurations = ( diff --git a/Pods/Target Support Files/DDUIGestureRecognizer/DDUIGestureRecognizer.debug.xcconfig b/Pods/Target Support Files/DDUIGestureRecognizer/DDUIGestureRecognizer.debug.xcconfig index aaee816..226fe63 100644 --- a/Pods/Target Support Files/DDUIGestureRecognizer/DDUIGestureRecognizer.debug.xcconfig +++ b/Pods/Target Support Files/DDUIGestureRecognizer/DDUIGestureRecognizer.debug.xcconfig @@ -5,7 +5,7 @@ OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -import-underlying-module -Xcc -fm PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../../PodRepository/DDUIGestureRecognizer +PODS_TARGET_SRCROOT = ${PODS_ROOT}/DDUIGestureRecognizer PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} SKIP_INSTALL = YES diff --git a/Pods/Target Support Files/DDUIGestureRecognizer/DDUIGestureRecognizer.release.xcconfig b/Pods/Target Support Files/DDUIGestureRecognizer/DDUIGestureRecognizer.release.xcconfig index aaee816..226fe63 100644 --- a/Pods/Target Support Files/DDUIGestureRecognizer/DDUIGestureRecognizer.release.xcconfig +++ b/Pods/Target Support Files/DDUIGestureRecognizer/DDUIGestureRecognizer.release.xcconfig @@ -5,7 +5,7 @@ OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS -import-underlying-module -Xcc -fm PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../../PodRepository/DDUIGestureRecognizer +PODS_TARGET_SRCROOT = ${PODS_ROOT}/DDUIGestureRecognizer PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} SKIP_INSTALL = YES